| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | *	Adaptec AAC series RAID controller driver | 
| Alan Cox | fa195af | 2008-10-27 15:16:36 +0000 | [diff] [blame] | 3 | *	(c) Copyright 2001 Red Hat Inc. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * | 
|  | 5 | * based on the old aacraid driver that is.. | 
|  | 6 | * Adaptec aacraid device driver for Linux. | 
|  | 7 | * | 
| Mark Haverkamp | 03d4433 | 2007-03-15 10:27:45 -0700 | [diff] [blame] | 8 | * Copyright (c) 2000-2007 Adaptec, Inc. (aacraid@adaptec.com) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * | 
|  | 10 | * This program is free software; you can redistribute it and/or modify | 
|  | 11 | * it under the terms of the GNU General Public License as published by | 
|  | 12 | * the Free Software Foundation; either version 2, or (at your option) | 
|  | 13 | * any later version. | 
|  | 14 | * | 
|  | 15 | * This program is distributed in the hope that it will be useful, | 
|  | 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|  | 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|  | 18 | * GNU General Public License for more details. | 
|  | 19 | * | 
|  | 20 | * You should have received a copy of the GNU General Public License | 
|  | 21 | * along with this program; see the file COPYING.  If not, write to | 
|  | 22 | * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | 
|  | 23 | * | 
|  | 24 | * Module Name: | 
|  | 25 | *  commsup.c | 
|  | 26 | * | 
|  | 27 | * Abstract: Contain all routines that are required for FSA host/adapter | 
| Mark Haverkamp | 7c00ffa | 2005-05-16 18:28:42 -0700 | [diff] [blame] | 28 | *    communication. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | * | 
|  | 30 | */ | 
|  | 31 |  | 
|  | 32 | #include <linux/kernel.h> | 
|  | 33 | #include <linux/init.h> | 
|  | 34 | #include <linux/types.h> | 
|  | 35 | #include <linux/sched.h> | 
|  | 36 | #include <linux/pci.h> | 
|  | 37 | #include <linux/spinlock.h> | 
|  | 38 | #include <linux/slab.h> | 
|  | 39 | #include <linux/completion.h> | 
|  | 40 | #include <linux/blkdev.h> | 
| Al Viro | 164006d | 2005-11-30 23:47:05 -0500 | [diff] [blame] | 41 | #include <linux/delay.h> | 
| Christoph Hellwig | fe27381 | 2006-02-14 18:45:06 +0100 | [diff] [blame] | 42 | #include <linux/kthread.h> | 
| Al Viro | 6a3670c | 2006-09-24 23:45:29 +0100 | [diff] [blame] | 43 | #include <linux/interrupt.h> | 
| Matthew Wilcox | 6188e10 | 2008-04-18 22:21:05 -0400 | [diff] [blame] | 44 | #include <linux/semaphore.h> | 
| Mark Haverkamp | 8c867b2 | 2006-08-03 08:03:30 -0700 | [diff] [blame] | 45 | #include <scsi/scsi.h> | 
| Mark Haverkamp | 7c00ffa | 2005-05-16 18:28:42 -0700 | [diff] [blame] | 46 | #include <scsi/scsi_host.h> | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 47 | #include <scsi/scsi_device.h> | 
| Mark Haverkamp | 8c867b2 | 2006-08-03 08:03:30 -0700 | [diff] [blame] | 48 | #include <scsi/scsi_cmnd.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 |  | 
|  | 50 | #include "aacraid.h" | 
|  | 51 |  | 
|  | 52 | /** | 
|  | 53 | *	fib_map_alloc		-	allocate the fib objects | 
|  | 54 | *	@dev: Adapter to allocate for | 
|  | 55 | * | 
|  | 56 | *	Allocate and map the shared PCI space for the FIB blocks used to | 
|  | 57 | *	talk to the Adaptec firmware. | 
|  | 58 | */ | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 59 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | static int fib_map_alloc(struct aac_dev *dev) | 
|  | 61 | { | 
| Mark Haverkamp | 7c00ffa | 2005-05-16 18:28:42 -0700 | [diff] [blame] | 62 | dprintk((KERN_INFO | 
|  | 63 | "allocate hardware fibs pci_alloc_consistent(%p, %d * (%d + %d), %p)\n", | 
|  | 64 | dev->pdev, dev->max_fib_size, dev->scsi_host_ptr->can_queue, | 
|  | 65 | AAC_NUM_MGT_FIB, &dev->hw_fib_pa)); | 
|  | 66 | if((dev->hw_fib_va = pci_alloc_consistent(dev->pdev, dev->max_fib_size | 
|  | 67 | * (dev->scsi_host_ptr->can_queue + AAC_NUM_MGT_FIB), | 
|  | 68 | &dev->hw_fib_pa))==NULL) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | return -ENOMEM; | 
|  | 70 | return 0; | 
|  | 71 | } | 
|  | 72 |  | 
|  | 73 | /** | 
| Mark Haverkamp | bfb35aa8 | 2006-02-01 09:30:55 -0800 | [diff] [blame] | 74 | *	aac_fib_map_free		-	free the fib objects | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | *	@dev: Adapter to free | 
|  | 76 | * | 
|  | 77 | *	Free the PCI mappings and the memory allocated for FIB blocks | 
|  | 78 | *	on this adapter. | 
|  | 79 | */ | 
|  | 80 |  | 
| Mark Haverkamp | bfb35aa8 | 2006-02-01 09:30:55 -0800 | [diff] [blame] | 81 | void aac_fib_map_free(struct aac_dev *dev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | { | 
| Salyzyn, Mark | 9ad5204 | 2007-07-17 11:15:08 -0400 | [diff] [blame] | 83 | pci_free_consistent(dev->pdev, | 
|  | 84 | dev->max_fib_size * (dev->scsi_host_ptr->can_queue + AAC_NUM_MGT_FIB), | 
|  | 85 | dev->hw_fib_va, dev->hw_fib_pa); | 
|  | 86 | dev->hw_fib_va = NULL; | 
|  | 87 | dev->hw_fib_pa = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | } | 
|  | 89 |  | 
|  | 90 | /** | 
| Mark Haverkamp | bfb35aa8 | 2006-02-01 09:30:55 -0800 | [diff] [blame] | 91 | *	aac_fib_setup	-	setup the fibs | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | *	@dev: Adapter to set up | 
|  | 93 | * | 
| Uwe Kleine-König | b595076 | 2010-11-01 15:38:34 -0400 | [diff] [blame] | 94 | *	Allocate the PCI space for the fibs, map it and then initialise the | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | *	fib area, the unmapped fib data and also the free list | 
|  | 96 | */ | 
|  | 97 |  | 
| Mark Haverkamp | bfb35aa8 | 2006-02-01 09:30:55 -0800 | [diff] [blame] | 98 | int aac_fib_setup(struct aac_dev * dev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | { | 
|  | 100 | struct fib *fibptr; | 
| Mark Haverkamp | a8166a5 | 2007-03-15 10:26:22 -0700 | [diff] [blame] | 101 | struct hw_fib *hw_fib; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | dma_addr_t hw_fib_pa; | 
|  | 103 | int i; | 
| Mark Haverkamp | 7c00ffa | 2005-05-16 18:28:42 -0700 | [diff] [blame] | 104 |  | 
|  | 105 | while (((i = fib_map_alloc(dev)) == -ENOMEM) | 
|  | 106 | && (dev->scsi_host_ptr->can_queue > (64 - AAC_NUM_MGT_FIB))) { | 
|  | 107 | dev->init->MaxIoCommands = cpu_to_le32((dev->scsi_host_ptr->can_queue + AAC_NUM_MGT_FIB) >> 1); | 
|  | 108 | dev->scsi_host_ptr->can_queue = le32_to_cpu(dev->init->MaxIoCommands) - AAC_NUM_MGT_FIB; | 
|  | 109 | } | 
|  | 110 | if (i<0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | return -ENOMEM; | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 112 |  | 
| Mark Haverkamp | a8166a5 | 2007-03-15 10:26:22 -0700 | [diff] [blame] | 113 | hw_fib = dev->hw_fib_va; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | hw_fib_pa = dev->hw_fib_pa; | 
| Mark Haverkamp | a8166a5 | 2007-03-15 10:26:22 -0700 | [diff] [blame] | 115 | memset(hw_fib, 0, dev->max_fib_size * (dev->scsi_host_ptr->can_queue + AAC_NUM_MGT_FIB)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | /* | 
|  | 117 | *	Initialise the fibs | 
|  | 118 | */ | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 119 | for (i = 0, fibptr = &dev->fibs[i]; | 
|  | 120 | i < (dev->scsi_host_ptr->can_queue + AAC_NUM_MGT_FIB); | 
|  | 121 | i++, fibptr++) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | { | 
|  | 123 | fibptr->dev = dev; | 
| Mark Haverkamp | a8166a5 | 2007-03-15 10:26:22 -0700 | [diff] [blame] | 124 | fibptr->hw_fib_va = hw_fib; | 
|  | 125 | fibptr->data = (void *) fibptr->hw_fib_va->data; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | fibptr->next = fibptr+1;	/* Forward chain the fibs */ | 
| Thomas Gleixner | 6de76cf | 2010-09-07 14:32:47 +0000 | [diff] [blame] | 127 | sema_init(&fibptr->event_wait, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | spin_lock_init(&fibptr->event_lock); | 
| Mark Haverkamp | a8166a5 | 2007-03-15 10:26:22 -0700 | [diff] [blame] | 129 | hw_fib->header.XferState = cpu_to_le32(0xffffffff); | 
|  | 130 | hw_fib->header.SenderSize = cpu_to_le16(dev->max_fib_size); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | fibptr->hw_fib_pa = hw_fib_pa; | 
| Mark Haverkamp | a8166a5 | 2007-03-15 10:26:22 -0700 | [diff] [blame] | 132 | hw_fib = (struct hw_fib *)((unsigned char *)hw_fib + dev->max_fib_size); | 
| Mark Haverkamp | 7c00ffa | 2005-05-16 18:28:42 -0700 | [diff] [blame] | 133 | hw_fib_pa = hw_fib_pa + dev->max_fib_size; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | } | 
|  | 135 | /* | 
|  | 136 | *	Add the fib chain to the free list | 
|  | 137 | */ | 
| Mark Haverkamp | 7c00ffa | 2005-05-16 18:28:42 -0700 | [diff] [blame] | 138 | dev->fibs[dev->scsi_host_ptr->can_queue + AAC_NUM_MGT_FIB - 1].next = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | /* | 
|  | 140 | *	Enable this to debug out of queue space | 
|  | 141 | */ | 
|  | 142 | dev->free_fib = &dev->fibs[0]; | 
|  | 143 | return 0; | 
|  | 144 | } | 
|  | 145 |  | 
|  | 146 | /** | 
| Mark Haverkamp | bfb35aa8 | 2006-02-01 09:30:55 -0800 | [diff] [blame] | 147 | *	aac_fib_alloc	-	allocate a fib | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | *	@dev: Adapter to allocate the fib for | 
|  | 149 | * | 
|  | 150 | *	Allocate a fib from the adapter fib pool. If the pool is empty we | 
| Mark Haverkamp | 7c00ffa | 2005-05-16 18:28:42 -0700 | [diff] [blame] | 151 | *	return NULL. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | */ | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 153 |  | 
| Mark Haverkamp | bfb35aa8 | 2006-02-01 09:30:55 -0800 | [diff] [blame] | 154 | struct fib *aac_fib_alloc(struct aac_dev *dev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | { | 
|  | 156 | struct fib * fibptr; | 
|  | 157 | unsigned long flags; | 
|  | 158 | spin_lock_irqsave(&dev->fib_lock, flags); | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 159 | fibptr = dev->free_fib; | 
| Mark Haverkamp | 7c00ffa | 2005-05-16 18:28:42 -0700 | [diff] [blame] | 160 | if(!fibptr){ | 
|  | 161 | spin_unlock_irqrestore(&dev->fib_lock, flags); | 
|  | 162 | return fibptr; | 
|  | 163 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | dev->free_fib = fibptr->next; | 
|  | 165 | spin_unlock_irqrestore(&dev->fib_lock, flags); | 
|  | 166 | /* | 
|  | 167 | *	Set the proper node type code and node byte size | 
|  | 168 | */ | 
|  | 169 | fibptr->type = FSAFS_NTC_FIB_CONTEXT; | 
|  | 170 | fibptr->size = sizeof(struct fib); | 
|  | 171 | /* | 
|  | 172 | *	Null out fields that depend on being zero at the start of | 
|  | 173 | *	each I/O | 
|  | 174 | */ | 
| Mark Haverkamp | a8166a5 | 2007-03-15 10:26:22 -0700 | [diff] [blame] | 175 | fibptr->hw_fib_va->header.XferState = 0; | 
| Salyzyn, Mark | b6ef70f | 2008-01-08 13:26:43 -0800 | [diff] [blame] | 176 | fibptr->flags = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | fibptr->callback = NULL; | 
|  | 178 | fibptr->callback_data = NULL; | 
|  | 179 |  | 
|  | 180 | return fibptr; | 
|  | 181 | } | 
|  | 182 |  | 
|  | 183 | /** | 
| Mark Haverkamp | bfb35aa8 | 2006-02-01 09:30:55 -0800 | [diff] [blame] | 184 | *	aac_fib_free	-	free a fib | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | *	@fibptr: fib to free up | 
|  | 186 | * | 
|  | 187 | *	Frees up a fib and places it on the appropriate queue | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | */ | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 189 |  | 
| Mark Haverkamp | bfb35aa8 | 2006-02-01 09:30:55 -0800 | [diff] [blame] | 190 | void aac_fib_free(struct fib *fibptr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | { | 
| Penchala Narasimha Reddy Chilakala, ERS-HCLTech | cacb6dc | 2009-12-21 18:39:27 +0530 | [diff] [blame] | 192 | unsigned long flags, flagsv; | 
|  | 193 |  | 
|  | 194 | spin_lock_irqsave(&fibptr->event_lock, flagsv); | 
|  | 195 | if (fibptr->done == 2) { | 
|  | 196 | spin_unlock_irqrestore(&fibptr->event_lock, flagsv); | 
|  | 197 | return; | 
|  | 198 | } | 
|  | 199 | spin_unlock_irqrestore(&fibptr->event_lock, flagsv); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 |  | 
|  | 201 | spin_lock_irqsave(&fibptr->dev->fib_lock, flags); | 
| Mark Haverkamp | 03d4433 | 2007-03-15 10:27:45 -0700 | [diff] [blame] | 202 | if (unlikely(fibptr->flags & FIB_CONTEXT_FLAG_TIMED_OUT)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | aac_config.fib_timeouts++; | 
| Mark Haverkamp | 03d4433 | 2007-03-15 10:27:45 -0700 | [diff] [blame] | 204 | if (fibptr->hw_fib_va->header.XferState != 0) { | 
|  | 205 | printk(KERN_WARNING "aac_fib_free, XferState != 0, fibptr = 0x%p, XferState = 0x%x\n", | 
|  | 206 | (void*)fibptr, | 
|  | 207 | le32_to_cpu(fibptr->hw_fib_va->header.XferState)); | 
|  | 208 | } | 
|  | 209 | fibptr->next = fibptr->dev->free_fib; | 
|  | 210 | fibptr->dev->free_fib = fibptr; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | spin_unlock_irqrestore(&fibptr->dev->fib_lock, flags); | 
|  | 212 | } | 
|  | 213 |  | 
|  | 214 | /** | 
| Mark Haverkamp | bfb35aa8 | 2006-02-01 09:30:55 -0800 | [diff] [blame] | 215 | *	aac_fib_init	-	initialise a fib | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | *	@fibptr: The fib to initialize | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 217 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | *	Set up the generic fib fields ready for use | 
|  | 219 | */ | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 220 |  | 
| Mark Haverkamp | bfb35aa8 | 2006-02-01 09:30:55 -0800 | [diff] [blame] | 221 | void aac_fib_init(struct fib *fibptr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | { | 
| Mark Haverkamp | a8166a5 | 2007-03-15 10:26:22 -0700 | [diff] [blame] | 223 | struct hw_fib *hw_fib = fibptr->hw_fib_va; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 |  | 
|  | 225 | hw_fib->header.StructType = FIB_MAGIC; | 
| Mark Haverkamp | 7c00ffa | 2005-05-16 18:28:42 -0700 | [diff] [blame] | 226 | hw_fib->header.Size = cpu_to_le16(fibptr->dev->max_fib_size); | 
|  | 227 | hw_fib->header.XferState = cpu_to_le32(HostOwned | FibInitialized | FibEmpty | FastResponseCapable); | 
| Mark Haverkamp | 8e0c5eb | 2005-10-24 10:52:22 -0700 | [diff] [blame] | 228 | hw_fib->header.SenderFibAddress = 0; /* Filled in later if needed */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | hw_fib->header.ReceiverFibAddress = cpu_to_le32(fibptr->hw_fib_pa); | 
| Mark Haverkamp | 7c00ffa | 2005-05-16 18:28:42 -0700 | [diff] [blame] | 230 | hw_fib->header.SenderSize = cpu_to_le16(fibptr->dev->max_fib_size); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | } | 
|  | 232 |  | 
|  | 233 | /** | 
|  | 234 | *	fib_deallocate		-	deallocate a fib | 
|  | 235 | *	@fibptr: fib to deallocate | 
|  | 236 | * | 
|  | 237 | *	Will deallocate and return to the free pool the FIB pointed to by the | 
|  | 238 | *	caller. | 
|  | 239 | */ | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 240 |  | 
| Adrian Bunk | 4833869 | 2005-04-25 19:45:58 -0700 | [diff] [blame] | 241 | static void fib_dealloc(struct fib * fibptr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | { | 
| Mark Haverkamp | a8166a5 | 2007-03-15 10:26:22 -0700 | [diff] [blame] | 243 | struct hw_fib *hw_fib = fibptr->hw_fib_va; | 
| Eric Sesterhenn | 125e187 | 2006-06-23 02:06:06 -0700 | [diff] [blame] | 244 | BUG_ON(hw_fib->header.StructType != FIB_MAGIC); | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 245 | hw_fib->header.XferState = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | } | 
|  | 247 |  | 
|  | 248 | /* | 
|  | 249 | *	Commuication primitives define and support the queuing method we use to | 
|  | 250 | *	support host to adapter commuication. All queue accesses happen through | 
|  | 251 | *	these routines and are the only routines which have a knowledge of the | 
|  | 252 | *	 how these queues are implemented. | 
|  | 253 | */ | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 254 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | /** | 
|  | 256 | *	aac_get_entry		-	get a queue entry | 
|  | 257 | *	@dev: Adapter | 
|  | 258 | *	@qid: Queue Number | 
|  | 259 | *	@entry: Entry return | 
|  | 260 | *	@index: Index return | 
|  | 261 | *	@nonotify: notification control | 
|  | 262 | * | 
|  | 263 | *	With a priority the routine returns a queue entry if the queue has free entries. If the queue | 
|  | 264 | *	is full(no free entries) than no entry is returned and the function returns 0 otherwise 1 is | 
|  | 265 | *	returned. | 
|  | 266 | */ | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 267 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | static int aac_get_entry (struct aac_dev * dev, u32 qid, struct aac_entry **entry, u32 * index, unsigned long *nonotify) | 
|  | 269 | { | 
|  | 270 | struct aac_queue * q; | 
| Mark Haverkamp | bed30de | 2005-08-03 15:38:51 -0700 | [diff] [blame] | 271 | unsigned long idx; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 |  | 
|  | 273 | /* | 
|  | 274 | *	All of the queues wrap when they reach the end, so we check | 
|  | 275 | *	to see if they have reached the end and if they have we just | 
|  | 276 | *	set the index back to zero. This is a wrap. You could or off | 
|  | 277 | *	the high bits in all updates but this is a bit faster I think. | 
|  | 278 | */ | 
|  | 279 |  | 
|  | 280 | q = &dev->queues->queue[qid]; | 
| Mark Haverkamp | bed30de | 2005-08-03 15:38:51 -0700 | [diff] [blame] | 281 |  | 
|  | 282 | idx = *index = le32_to_cpu(*(q->headers.producer)); | 
|  | 283 | /* Interrupt Moderation, only interrupt for first two entries */ | 
|  | 284 | if (idx != le32_to_cpu(*(q->headers.consumer))) { | 
|  | 285 | if (--idx == 0) { | 
| Mark Haverkamp | 1640a2c | 2005-09-20 12:57:11 -0700 | [diff] [blame] | 286 | if (qid == AdapNormCmdQueue) | 
| Mark Haverkamp | bed30de | 2005-08-03 15:38:51 -0700 | [diff] [blame] | 287 | idx = ADAP_NORM_CMD_ENTRIES; | 
| Mark Haverkamp | 1640a2c | 2005-09-20 12:57:11 -0700 | [diff] [blame] | 288 | else | 
| Mark Haverkamp | bed30de | 2005-08-03 15:38:51 -0700 | [diff] [blame] | 289 | idx = ADAP_NORM_RESP_ENTRIES; | 
|  | 290 | } | 
|  | 291 | if (idx != le32_to_cpu(*(q->headers.consumer))) | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 292 | *nonotify = 1; | 
| Mark Haverkamp | bed30de | 2005-08-03 15:38:51 -0700 | [diff] [blame] | 293 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 |  | 
| Mark Haverkamp | 1640a2c | 2005-09-20 12:57:11 -0700 | [diff] [blame] | 295 | if (qid == AdapNormCmdQueue) { | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 296 | if (*index >= ADAP_NORM_CMD_ENTRIES) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | *index = 0; /* Wrap to front of the Producer Queue. */ | 
| Mark Haverkamp | 1640a2c | 2005-09-20 12:57:11 -0700 | [diff] [blame] | 298 | } else { | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 299 | if (*index >= ADAP_NORM_RESP_ENTRIES) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | *index = 0; /* Wrap to front of the Producer Queue. */ | 
|  | 301 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 |  | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 303 | /* Queue is full */ | 
|  | 304 | if ((*index + 1) == le32_to_cpu(*(q->headers.consumer))) { | 
| Mark Haverkamp | 7c00ffa | 2005-05-16 18:28:42 -0700 | [diff] [blame] | 305 | printk(KERN_WARNING "Queue %d full, %u outstanding.\n", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | qid, q->numpending); | 
|  | 307 | return 0; | 
|  | 308 | } else { | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 309 | *entry = q->base + *index; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | return 1; | 
|  | 311 | } | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 312 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 |  | 
|  | 314 | /** | 
|  | 315 | *	aac_queue_get		-	get the next free QE | 
|  | 316 | *	@dev: Adapter | 
|  | 317 | *	@index: Returned index | 
|  | 318 | *	@priority: Priority of fib | 
|  | 319 | *	@fib: Fib to associate with the queue entry | 
|  | 320 | *	@wait: Wait if queue full | 
|  | 321 | *	@fibptr: Driver fib object to go with fib | 
|  | 322 | *	@nonotify: Don't notify the adapter | 
|  | 323 | * | 
|  | 324 | *	Gets the next free QE off the requested priorty adapter command | 
|  | 325 | *	queue and associates the Fib with the QE. The QE represented by | 
|  | 326 | *	index is ready to insert on the queue when this routine returns | 
|  | 327 | *	success. | 
|  | 328 | */ | 
|  | 329 |  | 
| Mark Haverkamp | 2871332 | 2007-01-23 14:59:20 -0800 | [diff] [blame] | 330 | int aac_queue_get(struct aac_dev * dev, u32 * index, u32 qid, struct hw_fib * hw_fib, int wait, struct fib * fibptr, unsigned long *nonotify) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | { | 
|  | 332 | struct aac_entry * entry = NULL; | 
|  | 333 | int map = 0; | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 334 |  | 
| Mark Haverkamp | 1640a2c | 2005-09-20 12:57:11 -0700 | [diff] [blame] | 335 | if (qid == AdapNormCmdQueue) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | /*  if no entries wait for some if caller wants to */ | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 337 | while (!aac_get_entry(dev, qid, &entry, index, nonotify)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | printk(KERN_ERR "GetEntries failed\n"); | 
|  | 339 | } | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 340 | /* | 
|  | 341 | *	Setup queue entry with a command, status and fib mapped | 
|  | 342 | */ | 
|  | 343 | entry->size = cpu_to_le32(le16_to_cpu(hw_fib->header.Size)); | 
|  | 344 | map = 1; | 
| Mark Haverkamp | 1640a2c | 2005-09-20 12:57:11 -0700 | [diff] [blame] | 345 | } else { | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 346 | while (!aac_get_entry(dev, qid, &entry, index, nonotify)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | /* if no entries wait for some if caller wants to */ | 
|  | 348 | } | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 349 | /* | 
|  | 350 | *	Setup queue entry with command, status and fib mapped | 
|  | 351 | */ | 
|  | 352 | entry->size = cpu_to_le32(le16_to_cpu(hw_fib->header.Size)); | 
|  | 353 | entry->addr = hw_fib->header.SenderFibAddress; | 
|  | 354 | /* Restore adapters pointer to the FIB */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | hw_fib->header.ReceiverFibAddress = hw_fib->header.SenderFibAddress;	/* Let the adapter now where to find its data */ | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 356 | map = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | } | 
|  | 358 | /* | 
|  | 359 | *	If MapFib is true than we need to map the Fib and put pointers | 
|  | 360 | *	in the queue entry. | 
|  | 361 | */ | 
|  | 362 | if (map) | 
|  | 363 | entry->addr = cpu_to_le32(fibptr->hw_fib_pa); | 
|  | 364 | return 0; | 
|  | 365 | } | 
|  | 366 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | /* | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 368 | *	Define the highest level of host to adapter communication routines. | 
|  | 369 | *	These routines will support host to adapter FS commuication. These | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | *	routines have no knowledge of the commuication method used. This level | 
|  | 371 | *	sends and receives FIBs. This level has no knowledge of how these FIBs | 
|  | 372 | *	get passed back and forth. | 
|  | 373 | */ | 
|  | 374 |  | 
|  | 375 | /** | 
| Mark Haverkamp | bfb35aa8 | 2006-02-01 09:30:55 -0800 | [diff] [blame] | 376 | *	aac_fib_send	-	send a fib to the adapter | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | *	@command: Command to send | 
|  | 378 | *	@fibptr: The fib | 
|  | 379 | *	@size: Size of fib data area | 
|  | 380 | *	@priority: Priority of Fib | 
|  | 381 | *	@wait: Async/sync select | 
|  | 382 | *	@reply: True if a reply is wanted | 
|  | 383 | *	@callback: Called with reply | 
|  | 384 | *	@callback_data: Passed to callback | 
|  | 385 | * | 
|  | 386 | *	Sends the requested FIB to the adapter and optionally will wait for a | 
|  | 387 | *	response FIB. If the caller does not wish to wait for a response than | 
|  | 388 | *	an event to wait on must be supplied. This event will be set when a | 
|  | 389 | *	response FIB is received from the adapter. | 
|  | 390 | */ | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 391 |  | 
| Mark Haverkamp | bfb35aa8 | 2006-02-01 09:30:55 -0800 | [diff] [blame] | 392 | int aac_fib_send(u16 command, struct fib *fibptr, unsigned long size, | 
|  | 393 | int priority, int wait, int reply, fib_callback callback, | 
|  | 394 | void *callback_data) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | struct aac_dev * dev = fibptr->dev; | 
| Mark Haverkamp | a8166a5 | 2007-03-15 10:26:22 -0700 | [diff] [blame] | 397 | struct hw_fib * hw_fib = fibptr->hw_fib_va; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | unsigned long flags = 0; | 
| Mark Haverkamp | 1640a2c | 2005-09-20 12:57:11 -0700 | [diff] [blame] | 399 | unsigned long qflags; | 
| Penchala Narasimha Reddy Chilakala, ERS-HCLTech | cacb6dc | 2009-12-21 18:39:27 +0530 | [diff] [blame] | 400 | unsigned long mflags = 0; | 
|  | 401 |  | 
| Mark Haverkamp | 1640a2c | 2005-09-20 12:57:11 -0700 | [diff] [blame] | 402 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | if (!(hw_fib->header.XferState & cpu_to_le32(HostOwned))) | 
|  | 404 | return -EBUSY; | 
|  | 405 | /* | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 406 | *	There are 5 cases with the wait and reponse requested flags. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | *	The only invalid cases are if the caller requests to wait and | 
|  | 408 | *	does not request a response and if the caller does not want a | 
|  | 409 | *	response and the Fib is not allocated from pool. If a response | 
|  | 410 | *	is not requesed the Fib will just be deallocaed by the DPC | 
|  | 411 | *	routine when the response comes back from the adapter. No | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 412 | *	further processing will be done besides deleting the Fib. We | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | *	will have a debug mode where the adapter can notify the host | 
|  | 414 | *	it had a problem and the host can log that fact. | 
|  | 415 | */ | 
| Salyzyn, Mark | b6ef70f | 2008-01-08 13:26:43 -0800 | [diff] [blame] | 416 | fibptr->flags = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | if (wait && !reply) { | 
|  | 418 | return -EINVAL; | 
|  | 419 | } else if (!wait && reply) { | 
|  | 420 | hw_fib->header.XferState |= cpu_to_le32(Async | ResponseExpected); | 
|  | 421 | FIB_COUNTER_INCREMENT(aac_config.AsyncSent); | 
|  | 422 | } else if (!wait && !reply) { | 
|  | 423 | hw_fib->header.XferState |= cpu_to_le32(NoResponseExpected); | 
|  | 424 | FIB_COUNTER_INCREMENT(aac_config.NoResponseSent); | 
|  | 425 | } else if (wait && reply) { | 
|  | 426 | hw_fib->header.XferState |= cpu_to_le32(ResponseExpected); | 
|  | 427 | FIB_COUNTER_INCREMENT(aac_config.NormalSent); | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 428 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | /* | 
|  | 430 | *	Map the fib into 32bits by using the fib number | 
|  | 431 | */ | 
|  | 432 |  | 
| Mark Haverkamp | 8e0c5eb | 2005-10-24 10:52:22 -0700 | [diff] [blame] | 433 | hw_fib->header.SenderFibAddress = cpu_to_le32(((u32)(fibptr - dev->fibs)) << 2); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | hw_fib->header.SenderData = (u32)(fibptr - dev->fibs); | 
|  | 435 | /* | 
|  | 436 | *	Set FIB state to indicate where it came from and if we want a | 
|  | 437 | *	response from the adapter. Also load the command from the | 
|  | 438 | *	caller. | 
|  | 439 | * | 
|  | 440 | *	Map the hw fib pointer as a 32bit value | 
|  | 441 | */ | 
|  | 442 | hw_fib->header.Command = cpu_to_le16(command); | 
|  | 443 | hw_fib->header.XferState |= cpu_to_le32(SentFromHost); | 
| Mark Haverkamp | a8166a5 | 2007-03-15 10:26:22 -0700 | [diff] [blame] | 444 | fibptr->hw_fib_va->header.Flags = 0;	/* 0 the flags field - internal only*/ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | /* | 
|  | 446 | *	Set the size of the Fib we want to send to the adapter | 
|  | 447 | */ | 
|  | 448 | hw_fib->header.Size = cpu_to_le16(sizeof(struct aac_fibhdr) + size); | 
|  | 449 | if (le16_to_cpu(hw_fib->header.Size) > le16_to_cpu(hw_fib->header.SenderSize)) { | 
|  | 450 | return -EMSGSIZE; | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 451 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | /* | 
|  | 453 | *	Get a queue entry connect the FIB to it and send an notify | 
|  | 454 | *	the adapter a command is ready. | 
|  | 455 | */ | 
| Mark Haverkamp | 1640a2c | 2005-09-20 12:57:11 -0700 | [diff] [blame] | 456 | hw_fib->header.XferState |= cpu_to_le32(NormalPriority); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | /* | 
|  | 459 | *	Fill in the Callback and CallbackContext if we are not | 
|  | 460 | *	going to wait. | 
|  | 461 | */ | 
|  | 462 | if (!wait) { | 
|  | 463 | fibptr->callback = callback; | 
|  | 464 | fibptr->callback_data = callback_data; | 
| Salyzyn, Mark | b6ef70f | 2008-01-08 13:26:43 -0800 | [diff] [blame] | 465 | fibptr->flags = FIB_CONTEXT_FLAG; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 |  | 
|  | 468 | fibptr->done = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 |  | 
| Mark Haverkamp | 1640a2c | 2005-09-20 12:57:11 -0700 | [diff] [blame] | 470 | FIB_COUNTER_INCREMENT(aac_config.FibsSent); | 
|  | 471 |  | 
| Mark Haverkamp | 1640a2c | 2005-09-20 12:57:11 -0700 | [diff] [blame] | 472 | dprintk((KERN_DEBUG "Fib contents:.\n")); | 
| Mark Haverkamp | 8e0c5eb | 2005-10-24 10:52:22 -0700 | [diff] [blame] | 473 | dprintk((KERN_DEBUG "  Command =               %d.\n", le32_to_cpu(hw_fib->header.Command))); | 
|  | 474 | dprintk((KERN_DEBUG "  SubCommand =            %d.\n", le32_to_cpu(((struct aac_query_mount *)fib_data(fibptr))->command))); | 
|  | 475 | dprintk((KERN_DEBUG "  XferState  =            %x.\n", le32_to_cpu(hw_fib->header.XferState))); | 
| Mark Haverkamp | a8166a5 | 2007-03-15 10:26:22 -0700 | [diff] [blame] | 476 | dprintk((KERN_DEBUG "  hw_fib va being sent=%p\n",fibptr->hw_fib_va)); | 
| Mark Haverkamp | 1640a2c | 2005-09-20 12:57:11 -0700 | [diff] [blame] | 477 | dprintk((KERN_DEBUG "  hw_fib pa being sent=%lx\n",(ulong)fibptr->hw_fib_pa)); | 
|  | 478 | dprintk((KERN_DEBUG "  fib being sent=%p\n",fibptr)); | 
|  | 479 |  | 
| Mark Haverkamp | c8f7b07 | 2006-08-03 08:02:24 -0700 | [diff] [blame] | 480 | if (!dev->queues) | 
| Mark Haverkamp | 6510135 | 2006-09-19 08:59:23 -0700 | [diff] [blame] | 481 | return -EBUSY; | 
| Mark Haverkamp | 1640a2c | 2005-09-20 12:57:11 -0700 | [diff] [blame] | 482 |  | 
| Penchala Narasimha Reddy Chilakala, ERS-HCLTech | cacb6dc | 2009-12-21 18:39:27 +0530 | [diff] [blame] | 483 | if (wait) { | 
|  | 484 |  | 
|  | 485 | spin_lock_irqsave(&dev->manage_lock, mflags); | 
|  | 486 | if (dev->management_fib_count >= AAC_NUM_MGT_FIB) { | 
|  | 487 | printk(KERN_INFO "No management Fibs Available:%d\n", | 
|  | 488 | dev->management_fib_count); | 
|  | 489 | spin_unlock_irqrestore(&dev->manage_lock, mflags); | 
|  | 490 | return -EBUSY; | 
|  | 491 | } | 
|  | 492 | dev->management_fib_count++; | 
|  | 493 | spin_unlock_irqrestore(&dev->manage_lock, mflags); | 
| Mark Haverkamp | 1640a2c | 2005-09-20 12:57:11 -0700 | [diff] [blame] | 494 | spin_lock_irqsave(&fibptr->event_lock, flags); | 
| Penchala Narasimha Reddy Chilakala, ERS-HCLTech | cacb6dc | 2009-12-21 18:39:27 +0530 | [diff] [blame] | 495 | } | 
|  | 496 |  | 
|  | 497 | if (aac_adapter_deliver(fibptr) != 0) { | 
|  | 498 | printk(KERN_ERR "aac_fib_send: returned -EBUSY\n"); | 
|  | 499 | if (wait) { | 
|  | 500 | spin_unlock_irqrestore(&fibptr->event_lock, flags); | 
|  | 501 | spin_lock_irqsave(&dev->manage_lock, mflags); | 
|  | 502 | dev->management_fib_count--; | 
|  | 503 | spin_unlock_irqrestore(&dev->manage_lock, mflags); | 
|  | 504 | } | 
|  | 505 | return -EBUSY; | 
|  | 506 | } | 
|  | 507 |  | 
| Mark Haverkamp | 8e0c5eb | 2005-10-24 10:52:22 -0700 | [diff] [blame] | 508 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | /* | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 510 | *	If the caller wanted us to wait for response wait now. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | */ | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 512 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | if (wait) { | 
|  | 514 | spin_unlock_irqrestore(&fibptr->event_lock, flags); | 
| Mark Haverkamp | 9203344 | 2005-09-20 12:56:50 -0700 | [diff] [blame] | 515 | /* Only set for first known interruptable command */ | 
|  | 516 | if (wait < 0) { | 
|  | 517 | /* | 
|  | 518 | * *VERY* Dangerous to time out a command, the | 
|  | 519 | * assumption is made that we have no hope of | 
|  | 520 | * functioning because an interrupt routing or other | 
|  | 521 | * hardware failure has occurred. | 
|  | 522 | */ | 
|  | 523 | unsigned long count = 36000000L; /* 3 minutes */ | 
| Mark Haverkamp | 9203344 | 2005-09-20 12:56:50 -0700 | [diff] [blame] | 524 | while (down_trylock(&fibptr->event_wait)) { | 
| Mark Haverkamp | 33524b7 | 2006-11-21 10:40:08 -0800 | [diff] [blame] | 525 | int blink; | 
| Mark Haverkamp | 9203344 | 2005-09-20 12:56:50 -0700 | [diff] [blame] | 526 | if (--count == 0) { | 
| Mark Haverkamp | 2871332 | 2007-01-23 14:59:20 -0800 | [diff] [blame] | 527 | struct aac_queue * q = &dev->queues->queue[AdapNormCmdQueue]; | 
| Mark Haverkamp | 9203344 | 2005-09-20 12:56:50 -0700 | [diff] [blame] | 528 | spin_lock_irqsave(q->lock, qflags); | 
|  | 529 | q->numpending--; | 
| Mark Haverkamp | 9203344 | 2005-09-20 12:56:50 -0700 | [diff] [blame] | 530 | spin_unlock_irqrestore(q->lock, qflags); | 
|  | 531 | if (wait == -1) { | 
| Mark Haverkamp | bfb35aa8 | 2006-02-01 09:30:55 -0800 | [diff] [blame] | 532 | printk(KERN_ERR "aacraid: aac_fib_send: first asynchronous command timed out.\n" | 
| Mark Haverkamp | 9203344 | 2005-09-20 12:56:50 -0700 | [diff] [blame] | 533 | "Usually a result of a PCI interrupt routing problem;\n" | 
|  | 534 | "update mother board BIOS or consider utilizing one of\n" | 
|  | 535 | "the SAFE mode kernel options (acpi, apic etc)\n"); | 
|  | 536 | } | 
|  | 537 | return -ETIMEDOUT; | 
|  | 538 | } | 
| Mark Haverkamp | 33524b7 | 2006-11-21 10:40:08 -0800 | [diff] [blame] | 539 | if ((blink = aac_adapter_check_health(dev)) > 0) { | 
|  | 540 | if (wait == -1) { | 
|  | 541 | printk(KERN_ERR "aacraid: aac_fib_send: adapter blinkLED 0x%x.\n" | 
|  | 542 | "Usually a result of a serious unrecoverable hardware problem\n", | 
|  | 543 | blink); | 
|  | 544 | } | 
|  | 545 | return -EFAULT; | 
|  | 546 | } | 
| Mark Haverkamp | 9203344 | 2005-09-20 12:56:50 -0700 | [diff] [blame] | 547 | udelay(5); | 
|  | 548 | } | 
| Mark Salyzyn | 0462590 | 2008-04-23 08:16:06 -0400 | [diff] [blame] | 549 | } else if (down_interruptible(&fibptr->event_wait)) { | 
| Penchala Narasimha Reddy Chilakala, ERS-HCLTech | cacb6dc | 2009-12-21 18:39:27 +0530 | [diff] [blame] | 550 | /* Do nothing ... satisfy | 
|  | 551 | * down_interruptible must_check */ | 
| Mark Salyzyn | e6990c6 | 2008-04-14 14:20:16 -0400 | [diff] [blame] | 552 | } | 
| Penchala Narasimha Reddy Chilakala, ERS-HCLTech | cacb6dc | 2009-12-21 18:39:27 +0530 | [diff] [blame] | 553 |  | 
| Mark Haverkamp | 33bb3b2 | 2007-03-15 10:27:21 -0700 | [diff] [blame] | 554 | spin_lock_irqsave(&fibptr->event_lock, flags); | 
| Penchala Narasimha Reddy Chilakala, ERS-HCLTech | cacb6dc | 2009-12-21 18:39:27 +0530 | [diff] [blame] | 555 | if (fibptr->done == 0) { | 
| Mark Haverkamp | 33bb3b2 | 2007-03-15 10:27:21 -0700 | [diff] [blame] | 556 | fibptr->done = 2; /* Tell interrupt we aborted */ | 
| Mark Haverkamp | c8f7b07 | 2006-08-03 08:02:24 -0700 | [diff] [blame] | 557 | spin_unlock_irqrestore(&fibptr->event_lock, flags); | 
| Penchala Narasimha Reddy Chilakala, ERS-HCLTech | cacb6dc | 2009-12-21 18:39:27 +0530 | [diff] [blame] | 558 | return -ERESTARTSYS; | 
| Mark Haverkamp | c8f7b07 | 2006-08-03 08:02:24 -0700 | [diff] [blame] | 559 | } | 
| Mark Haverkamp | 33bb3b2 | 2007-03-15 10:27:21 -0700 | [diff] [blame] | 560 | spin_unlock_irqrestore(&fibptr->event_lock, flags); | 
| Eric Sesterhenn | 125e187 | 2006-06-23 02:06:06 -0700 | [diff] [blame] | 561 | BUG_ON(fibptr->done == 0); | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 562 |  | 
| Salyzyn, Mark | 912d4e8 | 2007-03-26 09:21:14 -0400 | [diff] [blame] | 563 | if(unlikely(fibptr->flags & FIB_CONTEXT_FLAG_TIMED_OUT)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | return -ETIMEDOUT; | 
| Salyzyn, Mark | 912d4e8 | 2007-03-26 09:21:14 -0400 | [diff] [blame] | 565 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | } | 
|  | 567 | /* | 
|  | 568 | *	If the user does not want a response than return success otherwise | 
|  | 569 | *	return pending | 
|  | 570 | */ | 
|  | 571 | if (reply) | 
|  | 572 | return -EINPROGRESS; | 
|  | 573 | else | 
|  | 574 | return 0; | 
|  | 575 | } | 
|  | 576 |  | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 577 | /** | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | *	aac_consumer_get	-	get the top of the queue | 
|  | 579 | *	@dev: Adapter | 
|  | 580 | *	@q: Queue | 
|  | 581 | *	@entry: Return entry | 
|  | 582 | * | 
|  | 583 | *	Will return a pointer to the entry on the top of the queue requested that | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 584 | *	we are a consumer of, and return the address of the queue entry. It does | 
|  | 585 | *	not change the state of the queue. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | */ | 
|  | 587 |  | 
|  | 588 | int aac_consumer_get(struct aac_dev * dev, struct aac_queue * q, struct aac_entry **entry) | 
|  | 589 | { | 
|  | 590 | u32 index; | 
|  | 591 | int status; | 
|  | 592 | if (le32_to_cpu(*q->headers.producer) == le32_to_cpu(*q->headers.consumer)) { | 
|  | 593 | status = 0; | 
|  | 594 | } else { | 
|  | 595 | /* | 
|  | 596 | *	The consumer index must be wrapped if we have reached | 
|  | 597 | *	the end of the queue, else we just use the entry | 
|  | 598 | *	pointed to by the header index | 
|  | 599 | */ | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 600 | if (le32_to_cpu(*q->headers.consumer) >= q->entries) | 
|  | 601 | index = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | else | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 603 | index = le32_to_cpu(*q->headers.consumer); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | *entry = q->base + index; | 
|  | 605 | status = 1; | 
|  | 606 | } | 
|  | 607 | return(status); | 
|  | 608 | } | 
|  | 609 |  | 
|  | 610 | /** | 
|  | 611 | *	aac_consumer_free	-	free consumer entry | 
|  | 612 | *	@dev: Adapter | 
|  | 613 | *	@q: Queue | 
|  | 614 | *	@qid: Queue ident | 
|  | 615 | * | 
|  | 616 | *	Frees up the current top of the queue we are a consumer of. If the | 
|  | 617 | *	queue was full notify the producer that the queue is no longer full. | 
|  | 618 | */ | 
|  | 619 |  | 
|  | 620 | void aac_consumer_free(struct aac_dev * dev, struct aac_queue *q, u32 qid) | 
|  | 621 | { | 
|  | 622 | int wasfull = 0; | 
|  | 623 | u32 notify; | 
|  | 624 |  | 
|  | 625 | if ((le32_to_cpu(*q->headers.producer)+1) == le32_to_cpu(*q->headers.consumer)) | 
|  | 626 | wasfull = 1; | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 627 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | if (le32_to_cpu(*q->headers.consumer) >= q->entries) | 
|  | 629 | *q->headers.consumer = cpu_to_le32(1); | 
|  | 630 | else | 
| Marcin Slusarz | 36b8dd1 | 2008-03-28 14:48:35 -0700 | [diff] [blame] | 631 | le32_add_cpu(q->headers.consumer, 1); | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 632 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | if (wasfull) { | 
|  | 634 | switch (qid) { | 
|  | 635 |  | 
|  | 636 | case HostNormCmdQueue: | 
|  | 637 | notify = HostNormCmdNotFull; | 
|  | 638 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | case HostNormRespQueue: | 
|  | 640 | notify = HostNormRespNotFull; | 
|  | 641 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | default: | 
|  | 643 | BUG(); | 
|  | 644 | return; | 
|  | 645 | } | 
|  | 646 | aac_adapter_notify(dev, notify); | 
|  | 647 | } | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 648 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 |  | 
|  | 650 | /** | 
| Mark Haverkamp | bfb35aa8 | 2006-02-01 09:30:55 -0800 | [diff] [blame] | 651 | *	aac_fib_adapter_complete	-	complete adapter issued fib | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | *	@fibptr: fib to complete | 
|  | 653 | *	@size: size of fib | 
|  | 654 | * | 
|  | 655 | *	Will do all necessary work to complete a FIB that was sent from | 
|  | 656 | *	the adapter. | 
|  | 657 | */ | 
|  | 658 |  | 
| Mark Haverkamp | bfb35aa8 | 2006-02-01 09:30:55 -0800 | [diff] [blame] | 659 | int aac_fib_adapter_complete(struct fib *fibptr, unsigned short size) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | { | 
| Mark Haverkamp | a8166a5 | 2007-03-15 10:26:22 -0700 | [diff] [blame] | 661 | struct hw_fib * hw_fib = fibptr->hw_fib_va; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | struct aac_dev * dev = fibptr->dev; | 
| Mark Haverkamp | 1640a2c | 2005-09-20 12:57:11 -0700 | [diff] [blame] | 663 | struct aac_queue * q; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | unsigned long nointr = 0; | 
| Mark Haverkamp | 1640a2c | 2005-09-20 12:57:11 -0700 | [diff] [blame] | 665 | unsigned long qflags; | 
|  | 666 |  | 
|  | 667 | if (hw_fib->header.XferState == 0) { | 
| Mark Haverkamp | 2871332 | 2007-01-23 14:59:20 -0800 | [diff] [blame] | 668 | if (dev->comm_interface == AAC_COMM_MESSAGE) | 
| Mark Haverkamp | 8e0c5eb | 2005-10-24 10:52:22 -0700 | [diff] [blame] | 669 | kfree (hw_fib); | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 670 | return 0; | 
| Mark Haverkamp | 1640a2c | 2005-09-20 12:57:11 -0700 | [diff] [blame] | 671 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | /* | 
|  | 673 | *	If we plan to do anything check the structure type first. | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 674 | */ | 
|  | 675 | if (hw_fib->header.StructType != FIB_MAGIC) { | 
| Mark Haverkamp | 2871332 | 2007-01-23 14:59:20 -0800 | [diff] [blame] | 676 | if (dev->comm_interface == AAC_COMM_MESSAGE) | 
| Mark Haverkamp | 8e0c5eb | 2005-10-24 10:52:22 -0700 | [diff] [blame] | 677 | kfree (hw_fib); | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 678 | return -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | } | 
|  | 680 | /* | 
|  | 681 | *	This block handles the case where the adapter had sent us a | 
|  | 682 | *	command and we have finished processing the command. We | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 683 | *	call completeFib when we are done processing the command | 
|  | 684 | *	and want to send a response back to the adapter. This will | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | *	send the completed cdb to the adapter. | 
|  | 686 | */ | 
|  | 687 | if (hw_fib->header.XferState & cpu_to_le32(SentFromAdapter)) { | 
| Mark Haverkamp | 2871332 | 2007-01-23 14:59:20 -0800 | [diff] [blame] | 688 | if (dev->comm_interface == AAC_COMM_MESSAGE) { | 
| Mark Haverkamp | 8e0c5eb | 2005-10-24 10:52:22 -0700 | [diff] [blame] | 689 | kfree (hw_fib); | 
|  | 690 | } else { | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 691 | u32 index; | 
|  | 692 | hw_fib->header.XferState |= cpu_to_le32(HostProcessed); | 
| Mark Haverkamp | 8e0c5eb | 2005-10-24 10:52:22 -0700 | [diff] [blame] | 693 | if (size) { | 
|  | 694 | size += sizeof(struct aac_fibhdr); | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 695 | if (size > le16_to_cpu(hw_fib->header.SenderSize)) | 
| Mark Haverkamp | 8e0c5eb | 2005-10-24 10:52:22 -0700 | [diff] [blame] | 696 | return -EMSGSIZE; | 
|  | 697 | hw_fib->header.Size = cpu_to_le16(size); | 
|  | 698 | } | 
|  | 699 | q = &dev->queues->queue[AdapNormRespQueue]; | 
|  | 700 | spin_lock_irqsave(q->lock, qflags); | 
|  | 701 | aac_queue_get(dev, &index, AdapNormRespQueue, hw_fib, 1, NULL, &nointr); | 
|  | 702 | *(q->headers.producer) = cpu_to_le32(index + 1); | 
|  | 703 | spin_unlock_irqrestore(q->lock, qflags); | 
|  | 704 | if (!(nointr & (int)aac_config.irq_mod)) | 
|  | 705 | aac_adapter_notify(dev, AdapNormRespQueue); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | } | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 707 | } else { | 
|  | 708 | printk(KERN_WARNING "aac_fib_adapter_complete: " | 
|  | 709 | "Unknown xferstate detected.\n"); | 
|  | 710 | BUG(); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | return 0; | 
|  | 713 | } | 
|  | 714 |  | 
|  | 715 | /** | 
| Mark Haverkamp | bfb35aa8 | 2006-02-01 09:30:55 -0800 | [diff] [blame] | 716 | *	aac_fib_complete	-	fib completion handler | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | *	@fib: FIB to complete | 
|  | 718 | * | 
|  | 719 | *	Will do all necessary work to complete a FIB. | 
|  | 720 | */ | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 721 |  | 
| Mark Haverkamp | bfb35aa8 | 2006-02-01 09:30:55 -0800 | [diff] [blame] | 722 | int aac_fib_complete(struct fib *fibptr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | { | 
| Penchala Narasimha Reddy Chilakala, ERS-HCLTech | cacb6dc | 2009-12-21 18:39:27 +0530 | [diff] [blame] | 724 | unsigned long flags; | 
| Mark Haverkamp | a8166a5 | 2007-03-15 10:26:22 -0700 | [diff] [blame] | 725 | struct hw_fib * hw_fib = fibptr->hw_fib_va; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 |  | 
|  | 727 | /* | 
|  | 728 | *	Check for a fib which has already been completed | 
|  | 729 | */ | 
|  | 730 |  | 
|  | 731 | if (hw_fib->header.XferState == 0) | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 732 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | /* | 
|  | 734 | *	If we plan to do anything check the structure type first. | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 735 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 |  | 
|  | 737 | if (hw_fib->header.StructType != FIB_MAGIC) | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 738 | return -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | /* | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 740 | *	This block completes a cdb which orginated on the host and we | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | *	just need to deallocate the cdb or reinit it. At this point the | 
|  | 742 | *	command is complete that we had sent to the adapter and this | 
|  | 743 | *	cdb could be reused. | 
|  | 744 | */ | 
| Penchala Narasimha Reddy Chilakala, ERS-HCLTech | cacb6dc | 2009-12-21 18:39:27 +0530 | [diff] [blame] | 745 | spin_lock_irqsave(&fibptr->event_lock, flags); | 
|  | 746 | if (fibptr->done == 2) { | 
|  | 747 | spin_unlock_irqrestore(&fibptr->event_lock, flags); | 
|  | 748 | return 0; | 
|  | 749 | } | 
|  | 750 | spin_unlock_irqrestore(&fibptr->event_lock, flags); | 
|  | 751 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | if((hw_fib->header.XferState & cpu_to_le32(SentFromHost)) && | 
|  | 753 | (hw_fib->header.XferState & cpu_to_le32(AdapterProcessed))) | 
|  | 754 | { | 
|  | 755 | fib_dealloc(fibptr); | 
|  | 756 | } | 
|  | 757 | else if(hw_fib->header.XferState & cpu_to_le32(SentFromHost)) | 
|  | 758 | { | 
|  | 759 | /* | 
|  | 760 | *	This handles the case when the host has aborted the I/O | 
|  | 761 | *	to the adapter because the adapter is not responding | 
|  | 762 | */ | 
|  | 763 | fib_dealloc(fibptr); | 
|  | 764 | } else if(hw_fib->header.XferState & cpu_to_le32(HostOwned)) { | 
|  | 765 | fib_dealloc(fibptr); | 
|  | 766 | } else { | 
|  | 767 | BUG(); | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 768 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | return 0; | 
|  | 770 | } | 
|  | 771 |  | 
|  | 772 | /** | 
|  | 773 | *	aac_printf	-	handle printf from firmware | 
|  | 774 | *	@dev: Adapter | 
|  | 775 | *	@val: Message info | 
|  | 776 | * | 
|  | 777 | *	Print a message passed to us by the controller firmware on the | 
|  | 778 | *	Adaptec board | 
|  | 779 | */ | 
|  | 780 |  | 
|  | 781 | void aac_printf(struct aac_dev *dev, u32 val) | 
|  | 782 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | char *cp = dev->printfbuf; | 
| Mark Haverkamp | 7c00ffa | 2005-05-16 18:28:42 -0700 | [diff] [blame] | 784 | if (dev->printf_enabled) | 
|  | 785 | { | 
|  | 786 | int length = val & 0xffff; | 
|  | 787 | int level = (val >> 16) & 0xffff; | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 788 |  | 
| Mark Haverkamp | 7c00ffa | 2005-05-16 18:28:42 -0700 | [diff] [blame] | 789 | /* | 
|  | 790 | *	The size of the printfbuf is set in port.c | 
|  | 791 | *	There is no variable or define for it | 
|  | 792 | */ | 
|  | 793 | if (length > 255) | 
|  | 794 | length = 255; | 
|  | 795 | if (cp[length] != 0) | 
|  | 796 | cp[length] = 0; | 
|  | 797 | if (level == LOG_AAC_HIGH_ERROR) | 
| Mark Haverkamp | 1241f35 | 2006-03-27 09:44:23 -0800 | [diff] [blame] | 798 | printk(KERN_WARNING "%s:%s", dev->name, cp); | 
| Mark Haverkamp | 7c00ffa | 2005-05-16 18:28:42 -0700 | [diff] [blame] | 799 | else | 
| Mark Haverkamp | 1241f35 | 2006-03-27 09:44:23 -0800 | [diff] [blame] | 800 | printk(KERN_INFO "%s:%s", dev->name, cp); | 
| Mark Haverkamp | 7c00ffa | 2005-05-16 18:28:42 -0700 | [diff] [blame] | 801 | } | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 802 | memset(cp, 0, 256); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | } | 
|  | 804 |  | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 805 |  | 
|  | 806 | /** | 
|  | 807 | *	aac_handle_aif		-	Handle a message from the firmware | 
|  | 808 | *	@dev: Which adapter this fib is from | 
|  | 809 | *	@fibptr: Pointer to fibptr from adapter | 
|  | 810 | * | 
|  | 811 | *	This routine handles a driver notify fib from the adapter and | 
|  | 812 | *	dispatches it to the appropriate routine for handling. | 
|  | 813 | */ | 
|  | 814 |  | 
| Mark Haverkamp | 31876f3 | 2006-03-27 09:43:55 -0800 | [diff] [blame] | 815 | #define AIF_SNIFF_TIMEOUT	(30*HZ) | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 816 | static void aac_handle_aif(struct aac_dev * dev, struct fib * fibptr) | 
|  | 817 | { | 
| Mark Haverkamp | a8166a5 | 2007-03-15 10:26:22 -0700 | [diff] [blame] | 818 | struct hw_fib * hw_fib = fibptr->hw_fib_va; | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 819 | struct aac_aifcmd * aifcmd = (struct aac_aifcmd *)hw_fib->data; | 
| Salyzyn, Mark | 0995ad3 | 2008-01-11 11:56:07 -0800 | [diff] [blame] | 820 | u32 channel, id, lun, container; | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 821 | struct scsi_device *device; | 
|  | 822 | enum { | 
|  | 823 | NOTHING, | 
|  | 824 | DELETE, | 
|  | 825 | ADD, | 
|  | 826 | CHANGE | 
| Salyzyn, Mark | 0995ad3 | 2008-01-11 11:56:07 -0800 | [diff] [blame] | 827 | } device_config_needed = NOTHING; | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 828 |  | 
|  | 829 | /* Sniff for container changes */ | 
|  | 830 |  | 
| Mark Haverkamp | c8f7b07 | 2006-08-03 08:02:24 -0700 | [diff] [blame] | 831 | if (!dev || !dev->fsa_dev) | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 832 | return; | 
| Salyzyn, Mark | 0995ad3 | 2008-01-11 11:56:07 -0800 | [diff] [blame] | 833 | container = channel = id = lun = (u32)-1; | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 834 |  | 
|  | 835 | /* | 
|  | 836 | *	We have set this up to try and minimize the number of | 
|  | 837 | * re-configures that take place. As a result of this when | 
|  | 838 | * certain AIF's come in we will set a flag waiting for another | 
|  | 839 | * type of AIF before setting the re-config flag. | 
|  | 840 | */ | 
|  | 841 | switch (le32_to_cpu(aifcmd->command)) { | 
|  | 842 | case AifCmdDriverNotify: | 
| Christoph Hellwig | f3307f7 | 2007-11-08 17:27:47 +0000 | [diff] [blame] | 843 | switch (le32_to_cpu(((__le32 *)aifcmd->data)[0])) { | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 844 | /* | 
|  | 845 | *	Morph or Expand complete | 
|  | 846 | */ | 
|  | 847 | case AifDenMorphComplete: | 
|  | 848 | case AifDenVolumeExtendComplete: | 
| Christoph Hellwig | f3307f7 | 2007-11-08 17:27:47 +0000 | [diff] [blame] | 849 | container = le32_to_cpu(((__le32 *)aifcmd->data)[1]); | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 850 | if (container >= dev->maximum_num_containers) | 
|  | 851 | break; | 
|  | 852 |  | 
|  | 853 | /* | 
| Christoph Hellwig | f64a181 | 2005-10-31 18:32:08 +0100 | [diff] [blame] | 854 | *	Find the scsi_device associated with the SCSI | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 855 | * address. Make sure we have the right array, and if | 
|  | 856 | * so set the flag to initiate a new re-config once we | 
|  | 857 | * see an AifEnConfigChange AIF come through. | 
|  | 858 | */ | 
|  | 859 |  | 
|  | 860 | if ((dev != NULL) && (dev->scsi_host_ptr != NULL)) { | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 861 | device = scsi_device_lookup(dev->scsi_host_ptr, | 
|  | 862 | CONTAINER_TO_CHANNEL(container), | 
|  | 863 | CONTAINER_TO_ID(container), | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 864 | CONTAINER_TO_LUN(container)); | 
|  | 865 | if (device) { | 
|  | 866 | dev->fsa_dev[container].config_needed = CHANGE; | 
|  | 867 | dev->fsa_dev[container].config_waiting_on = AifEnConfigChange; | 
| Mark Haverkamp | 31876f3 | 2006-03-27 09:43:55 -0800 | [diff] [blame] | 868 | dev->fsa_dev[container].config_waiting_stamp = jiffies; | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 869 | scsi_device_put(device); | 
|  | 870 | } | 
|  | 871 | } | 
|  | 872 | } | 
|  | 873 |  | 
|  | 874 | /* | 
|  | 875 | *	If we are waiting on something and this happens to be | 
|  | 876 | * that thing then set the re-configure flag. | 
|  | 877 | */ | 
|  | 878 | if (container != (u32)-1) { | 
|  | 879 | if (container >= dev->maximum_num_containers) | 
|  | 880 | break; | 
| Mark Haverkamp | 31876f3 | 2006-03-27 09:43:55 -0800 | [diff] [blame] | 881 | if ((dev->fsa_dev[container].config_waiting_on == | 
| Christoph Hellwig | f3307f7 | 2007-11-08 17:27:47 +0000 | [diff] [blame] | 882 | le32_to_cpu(*(__le32 *)aifcmd->data)) && | 
| Mark Haverkamp | 31876f3 | 2006-03-27 09:43:55 -0800 | [diff] [blame] | 883 | time_before(jiffies, dev->fsa_dev[container].config_waiting_stamp + AIF_SNIFF_TIMEOUT)) | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 884 | dev->fsa_dev[container].config_waiting_on = 0; | 
|  | 885 | } else for (container = 0; | 
|  | 886 | container < dev->maximum_num_containers; ++container) { | 
| Mark Haverkamp | 31876f3 | 2006-03-27 09:43:55 -0800 | [diff] [blame] | 887 | if ((dev->fsa_dev[container].config_waiting_on == | 
| Christoph Hellwig | f3307f7 | 2007-11-08 17:27:47 +0000 | [diff] [blame] | 888 | le32_to_cpu(*(__le32 *)aifcmd->data)) && | 
| Mark Haverkamp | 31876f3 | 2006-03-27 09:43:55 -0800 | [diff] [blame] | 889 | time_before(jiffies, dev->fsa_dev[container].config_waiting_stamp + AIF_SNIFF_TIMEOUT)) | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 890 | dev->fsa_dev[container].config_waiting_on = 0; | 
|  | 891 | } | 
|  | 892 | break; | 
|  | 893 |  | 
|  | 894 | case AifCmdEventNotify: | 
| Christoph Hellwig | f3307f7 | 2007-11-08 17:27:47 +0000 | [diff] [blame] | 895 | switch (le32_to_cpu(((__le32 *)aifcmd->data)[0])) { | 
| Salyzyn, Mark | 95e852e | 2008-01-08 12:01:07 -0800 | [diff] [blame] | 896 | case AifEnBatteryEvent: | 
|  | 897 | dev->cache_protected = | 
|  | 898 | (((__le32 *)aifcmd->data)[1] == cpu_to_le32(3)); | 
|  | 899 | break; | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 900 | /* | 
|  | 901 | *	Add an Array. | 
|  | 902 | */ | 
|  | 903 | case AifEnAddContainer: | 
| Christoph Hellwig | f3307f7 | 2007-11-08 17:27:47 +0000 | [diff] [blame] | 904 | container = le32_to_cpu(((__le32 *)aifcmd->data)[1]); | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 905 | if (container >= dev->maximum_num_containers) | 
|  | 906 | break; | 
|  | 907 | dev->fsa_dev[container].config_needed = ADD; | 
|  | 908 | dev->fsa_dev[container].config_waiting_on = | 
|  | 909 | AifEnConfigChange; | 
| Mark Haverkamp | 31876f3 | 2006-03-27 09:43:55 -0800 | [diff] [blame] | 910 | dev->fsa_dev[container].config_waiting_stamp = jiffies; | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 911 | break; | 
|  | 912 |  | 
|  | 913 | /* | 
|  | 914 | *	Delete an Array. | 
|  | 915 | */ | 
|  | 916 | case AifEnDeleteContainer: | 
| Christoph Hellwig | f3307f7 | 2007-11-08 17:27:47 +0000 | [diff] [blame] | 917 | container = le32_to_cpu(((__le32 *)aifcmd->data)[1]); | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 918 | if (container >= dev->maximum_num_containers) | 
|  | 919 | break; | 
|  | 920 | dev->fsa_dev[container].config_needed = DELETE; | 
|  | 921 | dev->fsa_dev[container].config_waiting_on = | 
|  | 922 | AifEnConfigChange; | 
| Mark Haverkamp | 31876f3 | 2006-03-27 09:43:55 -0800 | [diff] [blame] | 923 | dev->fsa_dev[container].config_waiting_stamp = jiffies; | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 924 | break; | 
|  | 925 |  | 
|  | 926 | /* | 
|  | 927 | *	Container change detected. If we currently are not | 
|  | 928 | * waiting on something else, setup to wait on a Config Change. | 
|  | 929 | */ | 
|  | 930 | case AifEnContainerChange: | 
| Christoph Hellwig | f3307f7 | 2007-11-08 17:27:47 +0000 | [diff] [blame] | 931 | container = le32_to_cpu(((__le32 *)aifcmd->data)[1]); | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 932 | if (container >= dev->maximum_num_containers) | 
|  | 933 | break; | 
| Mark Haverkamp | 31876f3 | 2006-03-27 09:43:55 -0800 | [diff] [blame] | 934 | if (dev->fsa_dev[container].config_waiting_on && | 
|  | 935 | time_before(jiffies, dev->fsa_dev[container].config_waiting_stamp + AIF_SNIFF_TIMEOUT)) | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 936 | break; | 
|  | 937 | dev->fsa_dev[container].config_needed = CHANGE; | 
|  | 938 | dev->fsa_dev[container].config_waiting_on = | 
|  | 939 | AifEnConfigChange; | 
| Mark Haverkamp | 31876f3 | 2006-03-27 09:43:55 -0800 | [diff] [blame] | 940 | dev->fsa_dev[container].config_waiting_stamp = jiffies; | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 941 | break; | 
|  | 942 |  | 
|  | 943 | case AifEnConfigChange: | 
|  | 944 | break; | 
|  | 945 |  | 
| Salyzyn, Mark | cb1042f | 2008-01-17 09:25:07 -0800 | [diff] [blame] | 946 | case AifEnAddJBOD: | 
|  | 947 | case AifEnDeleteJBOD: | 
|  | 948 | container = le32_to_cpu(((__le32 *)aifcmd->data)[1]); | 
| Mark Salyzyn | a4576b5 | 2008-04-30 15:47:35 -0400 | [diff] [blame] | 949 | if ((container >> 28)) { | 
|  | 950 | container = (u32)-1; | 
| Salyzyn, Mark | cb1042f | 2008-01-17 09:25:07 -0800 | [diff] [blame] | 951 | break; | 
| Mark Salyzyn | a4576b5 | 2008-04-30 15:47:35 -0400 | [diff] [blame] | 952 | } | 
| Salyzyn, Mark | cb1042f | 2008-01-17 09:25:07 -0800 | [diff] [blame] | 953 | channel = (container >> 24) & 0xF; | 
| Mark Salyzyn | a4576b5 | 2008-04-30 15:47:35 -0400 | [diff] [blame] | 954 | if (channel >= dev->maximum_num_channels) { | 
|  | 955 | container = (u32)-1; | 
| Salyzyn, Mark | cb1042f | 2008-01-17 09:25:07 -0800 | [diff] [blame] | 956 | break; | 
| Mark Salyzyn | a4576b5 | 2008-04-30 15:47:35 -0400 | [diff] [blame] | 957 | } | 
| Salyzyn, Mark | cb1042f | 2008-01-17 09:25:07 -0800 | [diff] [blame] | 958 | id = container & 0xFFFF; | 
| Mark Salyzyn | a4576b5 | 2008-04-30 15:47:35 -0400 | [diff] [blame] | 959 | if (id >= dev->maximum_num_physicals) { | 
|  | 960 | container = (u32)-1; | 
| Salyzyn, Mark | cb1042f | 2008-01-17 09:25:07 -0800 | [diff] [blame] | 961 | break; | 
| Mark Salyzyn | a4576b5 | 2008-04-30 15:47:35 -0400 | [diff] [blame] | 962 | } | 
| Salyzyn, Mark | cb1042f | 2008-01-17 09:25:07 -0800 | [diff] [blame] | 963 | lun = (container >> 16) & 0xFF; | 
| Mark Salyzyn | a4576b5 | 2008-04-30 15:47:35 -0400 | [diff] [blame] | 964 | container = (u32)-1; | 
| Salyzyn, Mark | cb1042f | 2008-01-17 09:25:07 -0800 | [diff] [blame] | 965 | channel = aac_phys_to_logical(channel); | 
|  | 966 | device_config_needed = | 
|  | 967 | (((__le32 *)aifcmd->data)[0] == | 
|  | 968 | cpu_to_le32(AifEnAddJBOD)) ? ADD : DELETE; | 
| Rajashekhara, Mahesh | 5ca0559 | 2010-05-10 04:05:50 -0700 | [diff] [blame] | 969 | if (device_config_needed == ADD) { | 
|  | 970 | device = scsi_device_lookup(dev->scsi_host_ptr, | 
|  | 971 | channel, | 
|  | 972 | id, | 
|  | 973 | lun); | 
|  | 974 | if (device) { | 
|  | 975 | scsi_remove_device(device); | 
|  | 976 | scsi_device_put(device); | 
|  | 977 | } | 
|  | 978 | } | 
| Salyzyn, Mark | cb1042f | 2008-01-17 09:25:07 -0800 | [diff] [blame] | 979 | break; | 
|  | 980 |  | 
| Salyzyn, Mark | 0995ad3 | 2008-01-11 11:56:07 -0800 | [diff] [blame] | 981 | case AifEnEnclosureManagement: | 
| Salyzyn, Mark | cb1042f | 2008-01-17 09:25:07 -0800 | [diff] [blame] | 982 | /* | 
|  | 983 | * If in JBOD mode, automatic exposure of new | 
|  | 984 | * physical target to be suppressed until configured. | 
|  | 985 | */ | 
|  | 986 | if (dev->jbod) | 
|  | 987 | break; | 
| Salyzyn, Mark | 0995ad3 | 2008-01-11 11:56:07 -0800 | [diff] [blame] | 988 | switch (le32_to_cpu(((__le32 *)aifcmd->data)[3])) { | 
|  | 989 | case EM_DRIVE_INSERTION: | 
|  | 990 | case EM_DRIVE_REMOVAL: | 
|  | 991 | container = le32_to_cpu( | 
|  | 992 | ((__le32 *)aifcmd->data)[2]); | 
| Mark Salyzyn | a4576b5 | 2008-04-30 15:47:35 -0400 | [diff] [blame] | 993 | if ((container >> 28)) { | 
|  | 994 | container = (u32)-1; | 
| Salyzyn, Mark | 0995ad3 | 2008-01-11 11:56:07 -0800 | [diff] [blame] | 995 | break; | 
| Mark Salyzyn | a4576b5 | 2008-04-30 15:47:35 -0400 | [diff] [blame] | 996 | } | 
| Salyzyn, Mark | 0995ad3 | 2008-01-11 11:56:07 -0800 | [diff] [blame] | 997 | channel = (container >> 24) & 0xF; | 
| Mark Salyzyn | a4576b5 | 2008-04-30 15:47:35 -0400 | [diff] [blame] | 998 | if (channel >= dev->maximum_num_channels) { | 
|  | 999 | container = (u32)-1; | 
| Salyzyn, Mark | 0995ad3 | 2008-01-11 11:56:07 -0800 | [diff] [blame] | 1000 | break; | 
| Mark Salyzyn | a4576b5 | 2008-04-30 15:47:35 -0400 | [diff] [blame] | 1001 | } | 
| Salyzyn, Mark | 0995ad3 | 2008-01-11 11:56:07 -0800 | [diff] [blame] | 1002 | id = container & 0xFFFF; | 
|  | 1003 | lun = (container >> 16) & 0xFF; | 
| Mark Salyzyn | a4576b5 | 2008-04-30 15:47:35 -0400 | [diff] [blame] | 1004 | container = (u32)-1; | 
| Salyzyn, Mark | 0995ad3 | 2008-01-11 11:56:07 -0800 | [diff] [blame] | 1005 | if (id >= dev->maximum_num_physicals) { | 
|  | 1006 | /* legacy dev_t ? */ | 
|  | 1007 | if ((0x2000 <= id) || lun || channel || | 
|  | 1008 | ((channel = (id >> 7) & 0x3F) >= | 
|  | 1009 | dev->maximum_num_channels)) | 
|  | 1010 | break; | 
|  | 1011 | lun = (id >> 4) & 7; | 
|  | 1012 | id &= 0xF; | 
|  | 1013 | } | 
|  | 1014 | channel = aac_phys_to_logical(channel); | 
|  | 1015 | device_config_needed = | 
|  | 1016 | (((__le32 *)aifcmd->data)[3] | 
|  | 1017 | == cpu_to_le32(EM_DRIVE_INSERTION)) ? | 
|  | 1018 | ADD : DELETE; | 
|  | 1019 | break; | 
|  | 1020 | } | 
|  | 1021 | break; | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 1022 | } | 
|  | 1023 |  | 
|  | 1024 | /* | 
|  | 1025 | *	If we are waiting on something and this happens to be | 
|  | 1026 | * that thing then set the re-configure flag. | 
|  | 1027 | */ | 
|  | 1028 | if (container != (u32)-1) { | 
|  | 1029 | if (container >= dev->maximum_num_containers) | 
|  | 1030 | break; | 
| Mark Haverkamp | 31876f3 | 2006-03-27 09:43:55 -0800 | [diff] [blame] | 1031 | if ((dev->fsa_dev[container].config_waiting_on == | 
| Christoph Hellwig | f3307f7 | 2007-11-08 17:27:47 +0000 | [diff] [blame] | 1032 | le32_to_cpu(*(__le32 *)aifcmd->data)) && | 
| Mark Haverkamp | 31876f3 | 2006-03-27 09:43:55 -0800 | [diff] [blame] | 1033 | time_before(jiffies, dev->fsa_dev[container].config_waiting_stamp + AIF_SNIFF_TIMEOUT)) | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 1034 | dev->fsa_dev[container].config_waiting_on = 0; | 
|  | 1035 | } else for (container = 0; | 
|  | 1036 | container < dev->maximum_num_containers; ++container) { | 
| Mark Haverkamp | 31876f3 | 2006-03-27 09:43:55 -0800 | [diff] [blame] | 1037 | if ((dev->fsa_dev[container].config_waiting_on == | 
| Christoph Hellwig | f3307f7 | 2007-11-08 17:27:47 +0000 | [diff] [blame] | 1038 | le32_to_cpu(*(__le32 *)aifcmd->data)) && | 
| Mark Haverkamp | 31876f3 | 2006-03-27 09:43:55 -0800 | [diff] [blame] | 1039 | time_before(jiffies, dev->fsa_dev[container].config_waiting_stamp + AIF_SNIFF_TIMEOUT)) | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 1040 | dev->fsa_dev[container].config_waiting_on = 0; | 
|  | 1041 | } | 
|  | 1042 | break; | 
|  | 1043 |  | 
|  | 1044 | case AifCmdJobProgress: | 
|  | 1045 | /* | 
|  | 1046 | *	These are job progress AIF's. When a Clear is being | 
|  | 1047 | * done on a container it is initially created then hidden from | 
|  | 1048 | * the OS. When the clear completes we don't get a config | 
|  | 1049 | * change so we monitor the job status complete on a clear then | 
|  | 1050 | * wait for a container change. | 
|  | 1051 | */ | 
|  | 1052 |  | 
| Christoph Hellwig | f3307f7 | 2007-11-08 17:27:47 +0000 | [diff] [blame] | 1053 | if (((__le32 *)aifcmd->data)[1] == cpu_to_le32(AifJobCtrZero) && | 
|  | 1054 | (((__le32 *)aifcmd->data)[6] == ((__le32 *)aifcmd->data)[5] || | 
|  | 1055 | ((__le32 *)aifcmd->data)[4] == cpu_to_le32(AifJobStsSuccess))) { | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 1056 | for (container = 0; | 
|  | 1057 | container < dev->maximum_num_containers; | 
|  | 1058 | ++container) { | 
|  | 1059 | /* | 
|  | 1060 | * Stomp on all config sequencing for all | 
|  | 1061 | * containers? | 
|  | 1062 | */ | 
|  | 1063 | dev->fsa_dev[container].config_waiting_on = | 
|  | 1064 | AifEnContainerChange; | 
|  | 1065 | dev->fsa_dev[container].config_needed = ADD; | 
| Mark Haverkamp | 31876f3 | 2006-03-27 09:43:55 -0800 | [diff] [blame] | 1066 | dev->fsa_dev[container].config_waiting_stamp = | 
|  | 1067 | jiffies; | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 1068 | } | 
|  | 1069 | } | 
| Christoph Hellwig | f3307f7 | 2007-11-08 17:27:47 +0000 | [diff] [blame] | 1070 | if (((__le32 *)aifcmd->data)[1] == cpu_to_le32(AifJobCtrZero) && | 
|  | 1071 | ((__le32 *)aifcmd->data)[6] == 0 && | 
|  | 1072 | ((__le32 *)aifcmd->data)[4] == cpu_to_le32(AifJobStsRunning)) { | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 1073 | for (container = 0; | 
|  | 1074 | container < dev->maximum_num_containers; | 
|  | 1075 | ++container) { | 
|  | 1076 | /* | 
|  | 1077 | * Stomp on all config sequencing for all | 
|  | 1078 | * containers? | 
|  | 1079 | */ | 
|  | 1080 | dev->fsa_dev[container].config_waiting_on = | 
|  | 1081 | AifEnContainerChange; | 
|  | 1082 | dev->fsa_dev[container].config_needed = DELETE; | 
| Mark Haverkamp | 31876f3 | 2006-03-27 09:43:55 -0800 | [diff] [blame] | 1083 | dev->fsa_dev[container].config_waiting_stamp = | 
|  | 1084 | jiffies; | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 1085 | } | 
|  | 1086 | } | 
|  | 1087 | break; | 
|  | 1088 | } | 
|  | 1089 |  | 
| Mark Salyzyn | a4576b5 | 2008-04-30 15:47:35 -0400 | [diff] [blame] | 1090 | container = 0; | 
|  | 1091 | retry_next: | 
| Salyzyn, Mark | 0995ad3 | 2008-01-11 11:56:07 -0800 | [diff] [blame] | 1092 | if (device_config_needed == NOTHING) | 
| Mark Salyzyn | a4576b5 | 2008-04-30 15:47:35 -0400 | [diff] [blame] | 1093 | for (; container < dev->maximum_num_containers; ++container) { | 
| Mark Haverkamp | 31876f3 | 2006-03-27 09:43:55 -0800 | [diff] [blame] | 1094 | if ((dev->fsa_dev[container].config_waiting_on == 0) && | 
|  | 1095 | (dev->fsa_dev[container].config_needed != NOTHING) && | 
|  | 1096 | time_before(jiffies, dev->fsa_dev[container].config_waiting_stamp + AIF_SNIFF_TIMEOUT)) { | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 1097 | device_config_needed = | 
|  | 1098 | dev->fsa_dev[container].config_needed; | 
|  | 1099 | dev->fsa_dev[container].config_needed = NOTHING; | 
| Salyzyn, Mark | 0995ad3 | 2008-01-11 11:56:07 -0800 | [diff] [blame] | 1100 | channel = CONTAINER_TO_CHANNEL(container); | 
|  | 1101 | id = CONTAINER_TO_ID(container); | 
|  | 1102 | lun = CONTAINER_TO_LUN(container); | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 1103 | break; | 
|  | 1104 | } | 
|  | 1105 | } | 
|  | 1106 | if (device_config_needed == NOTHING) | 
|  | 1107 | return; | 
|  | 1108 |  | 
|  | 1109 | /* | 
|  | 1110 | *	If we decided that a re-configuration needs to be done, | 
|  | 1111 | * schedule it here on the way out the door, please close the door | 
|  | 1112 | * behind you. | 
|  | 1113 | */ | 
|  | 1114 |  | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 1115 | /* | 
| Christoph Hellwig | f64a181 | 2005-10-31 18:32:08 +0100 | [diff] [blame] | 1116 | *	Find the scsi_device associated with the SCSI address, | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 1117 | * and mark it as changed, invalidating the cache. This deals | 
|  | 1118 | * with changes to existing device IDs. | 
|  | 1119 | */ | 
|  | 1120 |  | 
|  | 1121 | if (!dev || !dev->scsi_host_ptr) | 
|  | 1122 | return; | 
|  | 1123 | /* | 
| Mark Haverkamp | bfb35aa8 | 2006-02-01 09:30:55 -0800 | [diff] [blame] | 1124 | * force reload of disk info via aac_probe_container | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 1125 | */ | 
| Salyzyn, Mark | 0995ad3 | 2008-01-11 11:56:07 -0800 | [diff] [blame] | 1126 | if ((channel == CONTAINER_CHANNEL) && | 
|  | 1127 | (device_config_needed != NOTHING)) { | 
|  | 1128 | if (dev->fsa_dev[container].valid == 1) | 
|  | 1129 | dev->fsa_dev[container].valid = 2; | 
| Mark Haverkamp | bfb35aa8 | 2006-02-01 09:30:55 -0800 | [diff] [blame] | 1130 | aac_probe_container(dev, container); | 
| Salyzyn, Mark | 0995ad3 | 2008-01-11 11:56:07 -0800 | [diff] [blame] | 1131 | } | 
|  | 1132 | device = scsi_device_lookup(dev->scsi_host_ptr, channel, id, lun); | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 1133 | if (device) { | 
|  | 1134 | switch (device_config_needed) { | 
|  | 1135 | case DELETE: | 
| Rajashekhara, Mahesh | 9cccde9 | 2010-05-10 04:29:25 -0700 | [diff] [blame] | 1136 | #if (defined(AAC_DEBUG_INSTRUMENT_AIF_DELETE)) | 
|  | 1137 | scsi_remove_device(device); | 
|  | 1138 | #else | 
| Salyzyn, Mark | 0995ad3 | 2008-01-11 11:56:07 -0800 | [diff] [blame] | 1139 | if (scsi_device_online(device)) { | 
|  | 1140 | scsi_device_set_state(device, SDEV_OFFLINE); | 
|  | 1141 | sdev_printk(KERN_INFO, device, | 
|  | 1142 | "Device offlined - %s\n", | 
|  | 1143 | (channel == CONTAINER_CHANNEL) ? | 
|  | 1144 | "array deleted" : | 
|  | 1145 | "enclosure services event"); | 
|  | 1146 | } | 
| Rajashekhara, Mahesh | 9cccde9 | 2010-05-10 04:29:25 -0700 | [diff] [blame] | 1147 | #endif | 
| Salyzyn, Mark | 0995ad3 | 2008-01-11 11:56:07 -0800 | [diff] [blame] | 1148 | break; | 
|  | 1149 | case ADD: | 
|  | 1150 | if (!scsi_device_online(device)) { | 
|  | 1151 | sdev_printk(KERN_INFO, device, | 
|  | 1152 | "Device online - %s\n", | 
|  | 1153 | (channel == CONTAINER_CHANNEL) ? | 
|  | 1154 | "array created" : | 
|  | 1155 | "enclosure services event"); | 
|  | 1156 | scsi_device_set_state(device, SDEV_RUNNING); | 
|  | 1157 | } | 
|  | 1158 | /* FALLTHRU */ | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 1159 | case CHANGE: | 
| Salyzyn, Mark | 0995ad3 | 2008-01-11 11:56:07 -0800 | [diff] [blame] | 1160 | if ((channel == CONTAINER_CHANNEL) | 
|  | 1161 | && (!dev->fsa_dev[container].valid)) { | 
| Rajashekhara, Mahesh | 9cccde9 | 2010-05-10 04:29:25 -0700 | [diff] [blame] | 1162 | #if (defined(AAC_DEBUG_INSTRUMENT_AIF_DELETE)) | 
|  | 1163 | scsi_remove_device(device); | 
|  | 1164 | #else | 
| Salyzyn, Mark | 0995ad3 | 2008-01-11 11:56:07 -0800 | [diff] [blame] | 1165 | if (!scsi_device_online(device)) | 
|  | 1166 | break; | 
|  | 1167 | scsi_device_set_state(device, SDEV_OFFLINE); | 
|  | 1168 | sdev_printk(KERN_INFO, device, | 
|  | 1169 | "Device offlined - %s\n", | 
|  | 1170 | "array failed"); | 
| Rajashekhara, Mahesh | 9cccde9 | 2010-05-10 04:29:25 -0700 | [diff] [blame] | 1171 | #endif | 
| Salyzyn, Mark | 0995ad3 | 2008-01-11 11:56:07 -0800 | [diff] [blame] | 1172 | break; | 
|  | 1173 | } | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 1174 | scsi_rescan_device(&device->sdev_gendev); | 
|  | 1175 |  | 
|  | 1176 | default: | 
|  | 1177 | break; | 
|  | 1178 | } | 
|  | 1179 | scsi_device_put(device); | 
| Salyzyn, Mark | 0995ad3 | 2008-01-11 11:56:07 -0800 | [diff] [blame] | 1180 | device_config_needed = NOTHING; | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 1181 | } | 
| Salyzyn, Mark | 0995ad3 | 2008-01-11 11:56:07 -0800 | [diff] [blame] | 1182 | if (device_config_needed == ADD) | 
|  | 1183 | scsi_add_device(dev->scsi_host_ptr, channel, id, lun); | 
| Mark Salyzyn | a4576b5 | 2008-04-30 15:47:35 -0400 | [diff] [blame] | 1184 | if (channel == CONTAINER_CHANNEL) { | 
|  | 1185 | container++; | 
|  | 1186 | device_config_needed = NOTHING; | 
|  | 1187 | goto retry_next; | 
|  | 1188 | } | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 1189 | } | 
|  | 1190 |  | 
| Salyzyn, Mark | 29c9768 | 2007-06-12 09:33:54 -0400 | [diff] [blame] | 1191 | static int _aac_reset_adapter(struct aac_dev *aac, int forced) | 
| Mark Haverkamp | 8c867b2 | 2006-08-03 08:03:30 -0700 | [diff] [blame] | 1192 | { | 
|  | 1193 | int index, quirks; | 
| Mark Haverkamp | 8c867b2 | 2006-08-03 08:03:30 -0700 | [diff] [blame] | 1194 | int retval; | 
|  | 1195 | struct Scsi_Host *host; | 
|  | 1196 | struct scsi_device *dev; | 
|  | 1197 | struct scsi_cmnd *command; | 
|  | 1198 | struct scsi_cmnd *command_list; | 
| Salyzyn, Mark | 29c9768 | 2007-06-12 09:33:54 -0400 | [diff] [blame] | 1199 | int jafo = 0; | 
| Mark Haverkamp | 8c867b2 | 2006-08-03 08:03:30 -0700 | [diff] [blame] | 1200 |  | 
|  | 1201 | /* | 
|  | 1202 | * Assumptions: | 
| Salyzyn, Mark | 29c9768 | 2007-06-12 09:33:54 -0400 | [diff] [blame] | 1203 | *	- host is locked, unless called by the aacraid thread. | 
|  | 1204 | *	  (a matter of convenience, due to legacy issues surrounding | 
|  | 1205 | *	  eh_host_adapter_reset). | 
| Mark Haverkamp | 8c867b2 | 2006-08-03 08:03:30 -0700 | [diff] [blame] | 1206 | *	- in_reset is asserted, so no new i/o is getting to the | 
|  | 1207 | *	  card. | 
| Salyzyn, Mark | 29c9768 | 2007-06-12 09:33:54 -0400 | [diff] [blame] | 1208 | *	- The card is dead, or will be very shortly ;-/ so no new | 
|  | 1209 | *	  commands are completing in the interrupt service. | 
| Mark Haverkamp | 8c867b2 | 2006-08-03 08:03:30 -0700 | [diff] [blame] | 1210 | */ | 
|  | 1211 | host = aac->scsi_host_ptr; | 
|  | 1212 | scsi_block_requests(host); | 
|  | 1213 | aac_adapter_disable_int(aac); | 
| Salyzyn, Mark | 29c9768 | 2007-06-12 09:33:54 -0400 | [diff] [blame] | 1214 | if (aac->thread->pid != current->pid) { | 
|  | 1215 | spin_unlock_irq(host->host_lock); | 
|  | 1216 | kthread_stop(aac->thread); | 
|  | 1217 | jafo = 1; | 
|  | 1218 | } | 
| Mark Haverkamp | 8c867b2 | 2006-08-03 08:03:30 -0700 | [diff] [blame] | 1219 |  | 
|  | 1220 | /* | 
|  | 1221 | *	If a positive health, means in a known DEAD PANIC | 
|  | 1222 | * state and the adapter could be reset to `try again'. | 
|  | 1223 | */ | 
| Salyzyn, Mark | 29c9768 | 2007-06-12 09:33:54 -0400 | [diff] [blame] | 1224 | retval = aac_adapter_restart(aac, forced ? 0 : aac_adapter_check_health(aac)); | 
| Mark Haverkamp | 8c867b2 | 2006-08-03 08:03:30 -0700 | [diff] [blame] | 1225 |  | 
|  | 1226 | if (retval) | 
|  | 1227 | goto out; | 
| Mark Haverkamp | 8c867b2 | 2006-08-03 08:03:30 -0700 | [diff] [blame] | 1228 |  | 
| Mark Haverkamp | d18b448 | 2006-11-21 10:40:31 -0800 | [diff] [blame] | 1229 | /* | 
|  | 1230 | *	Loop through the fibs, close the synchronous FIBS | 
|  | 1231 | */ | 
| Mark Haverkamp | 33bb3b2 | 2007-03-15 10:27:21 -0700 | [diff] [blame] | 1232 | for (retval = 1, index = 0; index < (aac->scsi_host_ptr->can_queue + AAC_NUM_MGT_FIB); index++) { | 
| Mark Haverkamp | d18b448 | 2006-11-21 10:40:31 -0800 | [diff] [blame] | 1233 | struct fib *fib = &aac->fibs[index]; | 
| Mark Haverkamp | a8166a5 | 2007-03-15 10:26:22 -0700 | [diff] [blame] | 1234 | if (!(fib->hw_fib_va->header.XferState & cpu_to_le32(NoResponseExpected | Async)) && | 
|  | 1235 | (fib->hw_fib_va->header.XferState & cpu_to_le32(ResponseExpected))) { | 
| Mark Haverkamp | d18b448 | 2006-11-21 10:40:31 -0800 | [diff] [blame] | 1236 | unsigned long flagv; | 
|  | 1237 | spin_lock_irqsave(&fib->event_lock, flagv); | 
|  | 1238 | up(&fib->event_wait); | 
|  | 1239 | spin_unlock_irqrestore(&fib->event_lock, flagv); | 
|  | 1240 | schedule(); | 
| Mark Haverkamp | 33bb3b2 | 2007-03-15 10:27:21 -0700 | [diff] [blame] | 1241 | retval = 0; | 
| Mark Haverkamp | d18b448 | 2006-11-21 10:40:31 -0800 | [diff] [blame] | 1242 | } | 
|  | 1243 | } | 
| Mark Haverkamp | 33bb3b2 | 2007-03-15 10:27:21 -0700 | [diff] [blame] | 1244 | /* Give some extra time for ioctls to complete. */ | 
|  | 1245 | if (retval == 0) | 
|  | 1246 | ssleep(2); | 
| Mark Haverkamp | 8c867b2 | 2006-08-03 08:03:30 -0700 | [diff] [blame] | 1247 | index = aac->cardtype; | 
|  | 1248 |  | 
|  | 1249 | /* | 
|  | 1250 | * Re-initialize the adapter, first free resources, then carefully | 
|  | 1251 | * apply the initialization sequence to come back again. Only risk | 
|  | 1252 | * is a change in Firmware dropping cache, it is assumed the caller | 
|  | 1253 | * will ensure that i/o is queisced and the card is flushed in that | 
|  | 1254 | * case. | 
|  | 1255 | */ | 
|  | 1256 | aac_fib_map_free(aac); | 
| Mark Haverkamp | 8c867b2 | 2006-08-03 08:03:30 -0700 | [diff] [blame] | 1257 | pci_free_consistent(aac->pdev, aac->comm_size, aac->comm_addr, aac->comm_phys); | 
|  | 1258 | aac->comm_addr = NULL; | 
|  | 1259 | aac->comm_phys = 0; | 
|  | 1260 | kfree(aac->queues); | 
|  | 1261 | aac->queues = NULL; | 
|  | 1262 | free_irq(aac->pdev->irq, aac); | 
|  | 1263 | kfree(aac->fsa_dev); | 
|  | 1264 | aac->fsa_dev = NULL; | 
| Salyzyn, Mark | 94cf6ba | 2007-12-13 16:14:18 -0800 | [diff] [blame] | 1265 | quirks = aac_get_driver_ident(index)->quirks; | 
|  | 1266 | if (quirks & AAC_QUIRK_31BIT) { | 
| Yang Hongyang | 929a22a | 2009-04-06 19:01:16 -0700 | [diff] [blame] | 1267 | if (((retval = pci_set_dma_mask(aac->pdev, DMA_BIT_MASK(31)))) || | 
|  | 1268 | ((retval = pci_set_consistent_dma_mask(aac->pdev, DMA_BIT_MASK(31))))) | 
| Mark Haverkamp | 8c867b2 | 2006-08-03 08:03:30 -0700 | [diff] [blame] | 1269 | goto out; | 
|  | 1270 | } else { | 
| Yang Hongyang | 284901a | 2009-04-06 19:01:15 -0700 | [diff] [blame] | 1271 | if (((retval = pci_set_dma_mask(aac->pdev, DMA_BIT_MASK(32)))) || | 
|  | 1272 | ((retval = pci_set_consistent_dma_mask(aac->pdev, DMA_BIT_MASK(32))))) | 
| Mark Haverkamp | 8c867b2 | 2006-08-03 08:03:30 -0700 | [diff] [blame] | 1273 | goto out; | 
|  | 1274 | } | 
|  | 1275 | if ((retval = (*(aac_get_driver_ident(index)->init))(aac))) | 
|  | 1276 | goto out; | 
| Salyzyn, Mark | 94cf6ba | 2007-12-13 16:14:18 -0800 | [diff] [blame] | 1277 | if (quirks & AAC_QUIRK_31BIT) | 
| Yang Hongyang | 284901a | 2009-04-06 19:01:15 -0700 | [diff] [blame] | 1278 | if ((retval = pci_set_dma_mask(aac->pdev, DMA_BIT_MASK(32)))) | 
| Mark Haverkamp | 8c867b2 | 2006-08-03 08:03:30 -0700 | [diff] [blame] | 1279 | goto out; | 
| Salyzyn, Mark | 29c9768 | 2007-06-12 09:33:54 -0400 | [diff] [blame] | 1280 | if (jafo) { | 
|  | 1281 | aac->thread = kthread_run(aac_command_thread, aac, aac->name); | 
|  | 1282 | if (IS_ERR(aac->thread)) { | 
|  | 1283 | retval = PTR_ERR(aac->thread); | 
|  | 1284 | goto out; | 
|  | 1285 | } | 
| Mark Haverkamp | 8c867b2 | 2006-08-03 08:03:30 -0700 | [diff] [blame] | 1286 | } | 
|  | 1287 | (void)aac_get_adapter_info(aac); | 
| Mark Haverkamp | 8c867b2 | 2006-08-03 08:03:30 -0700 | [diff] [blame] | 1288 | if ((quirks & AAC_QUIRK_34SG) && (host->sg_tablesize > 34)) { | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 1289 | host->sg_tablesize = 34; | 
|  | 1290 | host->max_sectors = (host->sg_tablesize * 8) + 112; | 
|  | 1291 | } | 
|  | 1292 | if ((quirks & AAC_QUIRK_17SG) && (host->sg_tablesize > 17)) { | 
|  | 1293 | host->sg_tablesize = 17; | 
|  | 1294 | host->max_sectors = (host->sg_tablesize * 8) + 112; | 
|  | 1295 | } | 
| Mark Haverkamp | 8c867b2 | 2006-08-03 08:03:30 -0700 | [diff] [blame] | 1296 | aac_get_config_status(aac, 1); | 
|  | 1297 | aac_get_containers(aac); | 
|  | 1298 | /* | 
|  | 1299 | * This is where the assumption that the Adapter is quiesced | 
|  | 1300 | * is important. | 
|  | 1301 | */ | 
|  | 1302 | command_list = NULL; | 
|  | 1303 | __shost_for_each_device(dev, host) { | 
|  | 1304 | unsigned long flags; | 
|  | 1305 | spin_lock_irqsave(&dev->list_lock, flags); | 
|  | 1306 | list_for_each_entry(command, &dev->cmd_list, list) | 
|  | 1307 | if (command->SCp.phase == AAC_OWNER_FIRMWARE) { | 
|  | 1308 | command->SCp.buffer = (struct scatterlist *)command_list; | 
|  | 1309 | command_list = command; | 
|  | 1310 | } | 
|  | 1311 | spin_unlock_irqrestore(&dev->list_lock, flags); | 
|  | 1312 | } | 
|  | 1313 | while ((command = command_list)) { | 
|  | 1314 | command_list = (struct scsi_cmnd *)command->SCp.buffer; | 
|  | 1315 | command->SCp.buffer = NULL; | 
|  | 1316 | command->result = DID_OK << 16 | 
|  | 1317 | | COMMAND_COMPLETE << 8 | 
|  | 1318 | | SAM_STAT_TASK_SET_FULL; | 
|  | 1319 | command->SCp.phase = AAC_OWNER_ERROR_HANDLER; | 
|  | 1320 | command->scsi_done(command); | 
|  | 1321 | } | 
|  | 1322 | retval = 0; | 
|  | 1323 |  | 
|  | 1324 | out: | 
|  | 1325 | aac->in_reset = 0; | 
|  | 1326 | scsi_unblock_requests(host); | 
| Salyzyn, Mark | 29c9768 | 2007-06-12 09:33:54 -0400 | [diff] [blame] | 1327 | if (jafo) { | 
|  | 1328 | spin_lock_irq(host->host_lock); | 
|  | 1329 | } | 
|  | 1330 | return retval; | 
|  | 1331 | } | 
|  | 1332 |  | 
|  | 1333 | int aac_reset_adapter(struct aac_dev * aac, int forced) | 
|  | 1334 | { | 
|  | 1335 | unsigned long flagv = 0; | 
|  | 1336 | int retval; | 
|  | 1337 | struct Scsi_Host * host; | 
|  | 1338 |  | 
|  | 1339 | if (spin_trylock_irqsave(&aac->fib_lock, flagv) == 0) | 
|  | 1340 | return -EBUSY; | 
|  | 1341 |  | 
|  | 1342 | if (aac->in_reset) { | 
|  | 1343 | spin_unlock_irqrestore(&aac->fib_lock, flagv); | 
|  | 1344 | return -EBUSY; | 
|  | 1345 | } | 
|  | 1346 | aac->in_reset = 1; | 
|  | 1347 | spin_unlock_irqrestore(&aac->fib_lock, flagv); | 
|  | 1348 |  | 
|  | 1349 | /* | 
|  | 1350 | * Wait for all commands to complete to this specific | 
|  | 1351 | * target (block maximum 60 seconds). Although not necessary, | 
|  | 1352 | * it does make us a good storage citizen. | 
|  | 1353 | */ | 
|  | 1354 | host = aac->scsi_host_ptr; | 
|  | 1355 | scsi_block_requests(host); | 
|  | 1356 | if (forced < 2) for (retval = 60; retval; --retval) { | 
|  | 1357 | struct scsi_device * dev; | 
|  | 1358 | struct scsi_cmnd * command; | 
|  | 1359 | int active = 0; | 
|  | 1360 |  | 
|  | 1361 | __shost_for_each_device(dev, host) { | 
|  | 1362 | spin_lock_irqsave(&dev->list_lock, flagv); | 
|  | 1363 | list_for_each_entry(command, &dev->cmd_list, list) { | 
|  | 1364 | if (command->SCp.phase == AAC_OWNER_FIRMWARE) { | 
|  | 1365 | active++; | 
|  | 1366 | break; | 
|  | 1367 | } | 
|  | 1368 | } | 
|  | 1369 | spin_unlock_irqrestore(&dev->list_lock, flagv); | 
|  | 1370 | if (active) | 
|  | 1371 | break; | 
|  | 1372 |  | 
|  | 1373 | } | 
|  | 1374 | /* | 
|  | 1375 | * We can exit If all the commands are complete | 
|  | 1376 | */ | 
|  | 1377 | if (active == 0) | 
|  | 1378 | break; | 
|  | 1379 | ssleep(1); | 
|  | 1380 | } | 
|  | 1381 |  | 
|  | 1382 | /* Quiesce build, flush cache, write through mode */ | 
| Salyzyn, Mark | f858317 | 2007-10-30 15:50:49 -0400 | [diff] [blame] | 1383 | if (forced < 2) | 
|  | 1384 | aac_send_shutdown(aac); | 
| Salyzyn, Mark | 29c9768 | 2007-06-12 09:33:54 -0400 | [diff] [blame] | 1385 | spin_lock_irqsave(host->host_lock, flagv); | 
| Salyzyn, Mark | f858317 | 2007-10-30 15:50:49 -0400 | [diff] [blame] | 1386 | retval = _aac_reset_adapter(aac, forced ? forced : ((aac_check_reset != 0) && (aac_check_reset != 1))); | 
| Salyzyn, Mark | 29c9768 | 2007-06-12 09:33:54 -0400 | [diff] [blame] | 1387 | spin_unlock_irqrestore(host->host_lock, flagv); | 
|  | 1388 |  | 
| Salyzyn, Mark | f858317 | 2007-10-30 15:50:49 -0400 | [diff] [blame] | 1389 | if ((forced < 2) && (retval == -ENODEV)) { | 
| Salyzyn, Mark | 29c9768 | 2007-06-12 09:33:54 -0400 | [diff] [blame] | 1390 | /* Unwind aac_send_shutdown() IOP_RESET unsupported/disabled */ | 
|  | 1391 | struct fib * fibctx = aac_fib_alloc(aac); | 
|  | 1392 | if (fibctx) { | 
|  | 1393 | struct aac_pause *cmd; | 
|  | 1394 | int status; | 
|  | 1395 |  | 
|  | 1396 | aac_fib_init(fibctx); | 
|  | 1397 |  | 
|  | 1398 | cmd = (struct aac_pause *) fib_data(fibctx); | 
|  | 1399 |  | 
|  | 1400 | cmd->command = cpu_to_le32(VM_ContainerConfig); | 
|  | 1401 | cmd->type = cpu_to_le32(CT_PAUSE_IO); | 
|  | 1402 | cmd->timeout = cpu_to_le32(1); | 
|  | 1403 | cmd->min = cpu_to_le32(1); | 
|  | 1404 | cmd->noRescan = cpu_to_le32(1); | 
|  | 1405 | cmd->count = cpu_to_le32(0); | 
|  | 1406 |  | 
|  | 1407 | status = aac_fib_send(ContainerCommand, | 
|  | 1408 | fibctx, | 
|  | 1409 | sizeof(struct aac_pause), | 
|  | 1410 | FsaNormal, | 
|  | 1411 | -2 /* Timeout silently */, 1, | 
|  | 1412 | NULL, NULL); | 
|  | 1413 |  | 
|  | 1414 | if (status >= 0) | 
|  | 1415 | aac_fib_complete(fibctx); | 
| Penchala Narasimha Reddy Chilakala, ERS-HCLTech | cacb6dc | 2009-12-21 18:39:27 +0530 | [diff] [blame] | 1416 | /* FIB should be freed only after getting | 
|  | 1417 | * the response from the F/W */ | 
|  | 1418 | if (status != -ERESTARTSYS) | 
|  | 1419 | aac_fib_free(fibctx); | 
| Salyzyn, Mark | 29c9768 | 2007-06-12 09:33:54 -0400 | [diff] [blame] | 1420 | } | 
|  | 1421 | } | 
|  | 1422 |  | 
| Mark Haverkamp | 8c867b2 | 2006-08-03 08:03:30 -0700 | [diff] [blame] | 1423 | return retval; | 
|  | 1424 | } | 
|  | 1425 |  | 
|  | 1426 | int aac_check_health(struct aac_dev * aac) | 
|  | 1427 | { | 
|  | 1428 | int BlinkLED; | 
|  | 1429 | unsigned long time_now, flagv = 0; | 
|  | 1430 | struct list_head * entry; | 
|  | 1431 | struct Scsi_Host * host; | 
|  | 1432 |  | 
|  | 1433 | /* Extending the scope of fib_lock slightly to protect aac->in_reset */ | 
|  | 1434 | if (spin_trylock_irqsave(&aac->fib_lock, flagv) == 0) | 
|  | 1435 | return 0; | 
|  | 1436 |  | 
|  | 1437 | if (aac->in_reset || !(BlinkLED = aac_adapter_check_health(aac))) { | 
|  | 1438 | spin_unlock_irqrestore(&aac->fib_lock, flagv); | 
|  | 1439 | return 0; /* OK */ | 
|  | 1440 | } | 
|  | 1441 |  | 
|  | 1442 | aac->in_reset = 1; | 
|  | 1443 |  | 
|  | 1444 | /* Fake up an AIF: | 
|  | 1445 | *	aac_aifcmd.command = AifCmdEventNotify = 1 | 
|  | 1446 | *	aac_aifcmd.seqnum = 0xFFFFFFFF | 
|  | 1447 | *	aac_aifcmd.data[0] = AifEnExpEvent = 23 | 
|  | 1448 | *	aac_aifcmd.data[1] = AifExeFirmwarePanic = 3 | 
|  | 1449 | *	aac.aifcmd.data[2] = AifHighPriority = 3 | 
|  | 1450 | *	aac.aifcmd.data[3] = BlinkLED | 
|  | 1451 | */ | 
|  | 1452 |  | 
|  | 1453 | time_now = jiffies/HZ; | 
|  | 1454 | entry = aac->fib_list.next; | 
|  | 1455 |  | 
|  | 1456 | /* | 
|  | 1457 | * For each Context that is on the | 
|  | 1458 | * fibctxList, make a copy of the | 
|  | 1459 | * fib, and then set the event to wake up the | 
|  | 1460 | * thread that is waiting for it. | 
|  | 1461 | */ | 
|  | 1462 | while (entry != &aac->fib_list) { | 
|  | 1463 | /* | 
|  | 1464 | * Extract the fibctx | 
|  | 1465 | */ | 
|  | 1466 | struct aac_fib_context *fibctx = list_entry(entry, struct aac_fib_context, next); | 
|  | 1467 | struct hw_fib * hw_fib; | 
|  | 1468 | struct fib * fib; | 
|  | 1469 | /* | 
|  | 1470 | * Check if the queue is getting | 
|  | 1471 | * backlogged | 
|  | 1472 | */ | 
|  | 1473 | if (fibctx->count > 20) { | 
|  | 1474 | /* | 
|  | 1475 | * It's *not* jiffies folks, | 
|  | 1476 | * but jiffies / HZ, so do not | 
|  | 1477 | * panic ... | 
|  | 1478 | */ | 
|  | 1479 | u32 time_last = fibctx->jiffies; | 
|  | 1480 | /* | 
|  | 1481 | * Has it been > 2 minutes | 
|  | 1482 | * since the last read off | 
|  | 1483 | * the queue? | 
|  | 1484 | */ | 
|  | 1485 | if ((time_now - time_last) > aif_timeout) { | 
|  | 1486 | entry = entry->next; | 
|  | 1487 | aac_close_fib_context(aac, fibctx); | 
|  | 1488 | continue; | 
|  | 1489 | } | 
|  | 1490 | } | 
|  | 1491 | /* | 
|  | 1492 | * Warning: no sleep allowed while | 
|  | 1493 | * holding spinlock | 
|  | 1494 | */ | 
| Salyzyn, Mark | 4dbc22d | 2007-04-16 11:21:50 -0400 | [diff] [blame] | 1495 | hw_fib = kzalloc(sizeof(struct hw_fib), GFP_ATOMIC); | 
|  | 1496 | fib = kzalloc(sizeof(struct fib), GFP_ATOMIC); | 
| Mark Haverkamp | 8c867b2 | 2006-08-03 08:03:30 -0700 | [diff] [blame] | 1497 | if (fib && hw_fib) { | 
|  | 1498 | struct aac_aifcmd * aif; | 
|  | 1499 |  | 
| Mark Haverkamp | a8166a5 | 2007-03-15 10:26:22 -0700 | [diff] [blame] | 1500 | fib->hw_fib_va = hw_fib; | 
| Mark Haverkamp | 8c867b2 | 2006-08-03 08:03:30 -0700 | [diff] [blame] | 1501 | fib->dev = aac; | 
|  | 1502 | aac_fib_init(fib); | 
|  | 1503 | fib->type = FSAFS_NTC_FIB_CONTEXT; | 
|  | 1504 | fib->size = sizeof (struct fib); | 
|  | 1505 | fib->data = hw_fib->data; | 
|  | 1506 | aif = (struct aac_aifcmd *)hw_fib->data; | 
|  | 1507 | aif->command = cpu_to_le32(AifCmdEventNotify); | 
| Salyzyn, Mark | a3940da | 2008-01-08 12:48:25 -0800 | [diff] [blame] | 1508 | aif->seqnum = cpu_to_le32(0xFFFFFFFF); | 
|  | 1509 | ((__le32 *)aif->data)[0] = cpu_to_le32(AifEnExpEvent); | 
|  | 1510 | ((__le32 *)aif->data)[1] = cpu_to_le32(AifExeFirmwarePanic); | 
|  | 1511 | ((__le32 *)aif->data)[2] = cpu_to_le32(AifHighPriority); | 
|  | 1512 | ((__le32 *)aif->data)[3] = cpu_to_le32(BlinkLED); | 
| Mark Haverkamp | 8c867b2 | 2006-08-03 08:03:30 -0700 | [diff] [blame] | 1513 |  | 
|  | 1514 | /* | 
|  | 1515 | * Put the FIB onto the | 
|  | 1516 | * fibctx's fibs | 
|  | 1517 | */ | 
|  | 1518 | list_add_tail(&fib->fiblink, &fibctx->fib_list); | 
|  | 1519 | fibctx->count++; | 
|  | 1520 | /* | 
|  | 1521 | * Set the event to wake up the | 
|  | 1522 | * thread that will waiting. | 
|  | 1523 | */ | 
|  | 1524 | up(&fibctx->wait_sem); | 
|  | 1525 | } else { | 
|  | 1526 | printk(KERN_WARNING "aifd: didn't allocate NewFib.\n"); | 
|  | 1527 | kfree(fib); | 
|  | 1528 | kfree(hw_fib); | 
|  | 1529 | } | 
|  | 1530 | entry = entry->next; | 
|  | 1531 | } | 
|  | 1532 |  | 
|  | 1533 | spin_unlock_irqrestore(&aac->fib_lock, flagv); | 
|  | 1534 |  | 
|  | 1535 | if (BlinkLED < 0) { | 
|  | 1536 | printk(KERN_ERR "%s: Host adapter dead %d\n", aac->name, BlinkLED); | 
|  | 1537 | goto out; | 
|  | 1538 | } | 
|  | 1539 |  | 
|  | 1540 | printk(KERN_ERR "%s: Host adapter BLINK LED 0x%x\n", aac->name, BlinkLED); | 
|  | 1541 |  | 
| Salyzyn, Mark | 2f7ecc5 | 2008-02-08 08:36:23 -0800 | [diff] [blame] | 1542 | if (!aac_check_reset || ((aac_check_reset == 1) && | 
| Salyzyn, Mark | a3940da | 2008-01-08 12:48:25 -0800 | [diff] [blame] | 1543 | (aac->supplement_adapter_info.SupportedOptions2 & | 
|  | 1544 | AAC_OPTION_IGNORE_RESET))) | 
| Salyzyn, Mark | 29c9768 | 2007-06-12 09:33:54 -0400 | [diff] [blame] | 1545 | goto out; | 
| Mark Haverkamp | 8c867b2 | 2006-08-03 08:03:30 -0700 | [diff] [blame] | 1546 | host = aac->scsi_host_ptr; | 
| Salyzyn, Mark | 29c9768 | 2007-06-12 09:33:54 -0400 | [diff] [blame] | 1547 | if (aac->thread->pid != current->pid) | 
|  | 1548 | spin_lock_irqsave(host->host_lock, flagv); | 
| Salyzyn, Mark | f858317 | 2007-10-30 15:50:49 -0400 | [diff] [blame] | 1549 | BlinkLED = _aac_reset_adapter(aac, aac_check_reset != 1); | 
| Salyzyn, Mark | 29c9768 | 2007-06-12 09:33:54 -0400 | [diff] [blame] | 1550 | if (aac->thread->pid != current->pid) | 
|  | 1551 | spin_unlock_irqrestore(host->host_lock, flagv); | 
| Mark Haverkamp | 8c867b2 | 2006-08-03 08:03:30 -0700 | [diff] [blame] | 1552 | return BlinkLED; | 
|  | 1553 |  | 
|  | 1554 | out: | 
|  | 1555 | aac->in_reset = 0; | 
|  | 1556 | return BlinkLED; | 
|  | 1557 | } | 
|  | 1558 |  | 
|  | 1559 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1560 | /** | 
|  | 1561 | *	aac_command_thread	-	command processing thread | 
|  | 1562 | *	@dev: Adapter to monitor | 
|  | 1563 | * | 
|  | 1564 | *	Waits on the commandready event in it's queue. When the event gets set | 
|  | 1565 | *	it will pull FIBs off it's queue. It will continue to pull FIBs off | 
|  | 1566 | *	until the queue is empty. When the queue is empty it will wait for | 
|  | 1567 | *	more FIBs. | 
|  | 1568 | */ | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 1569 |  | 
| Christoph Hellwig | fe27381 | 2006-02-14 18:45:06 +0100 | [diff] [blame] | 1570 | int aac_command_thread(void *data) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1571 | { | 
| Christoph Hellwig | fe27381 | 2006-02-14 18:45:06 +0100 | [diff] [blame] | 1572 | struct aac_dev *dev = data; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1573 | struct hw_fib *hw_fib, *hw_newfib; | 
|  | 1574 | struct fib *fib, *newfib; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1575 | struct aac_fib_context *fibctx; | 
|  | 1576 | unsigned long flags; | 
|  | 1577 | DECLARE_WAITQUEUE(wait, current); | 
| Salyzyn, Mark | 29c9768 | 2007-06-12 09:33:54 -0400 | [diff] [blame] | 1578 | unsigned long next_jiffies = jiffies + HZ; | 
|  | 1579 | unsigned long next_check_jiffies = next_jiffies; | 
|  | 1580 | long difference = HZ; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1581 |  | 
|  | 1582 | /* | 
|  | 1583 | *	We can only have one thread per adapter for AIF's. | 
|  | 1584 | */ | 
|  | 1585 | if (dev->aif_thread) | 
|  | 1586 | return -EINVAL; | 
| Christoph Hellwig | fe27381 | 2006-02-14 18:45:06 +0100 | [diff] [blame] | 1587 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1588 | /* | 
|  | 1589 | *	Let the DPC know it has a place to send the AIF's to. | 
|  | 1590 | */ | 
|  | 1591 | dev->aif_thread = 1; | 
| Mark Haverkamp | 2f130980 | 2005-09-26 13:02:15 -0700 | [diff] [blame] | 1592 | add_wait_queue(&dev->queues->queue[HostNormCmdQueue].cmdready, &wait); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1593 | set_current_state(TASK_INTERRUPTIBLE); | 
| Mark Haverkamp | 2f130980 | 2005-09-26 13:02:15 -0700 | [diff] [blame] | 1594 | dprintk ((KERN_INFO "aac_command_thread start\n")); | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 1595 | while (1) { | 
| Mark Haverkamp | 2f130980 | 2005-09-26 13:02:15 -0700 | [diff] [blame] | 1596 | spin_lock_irqsave(dev->queues->queue[HostNormCmdQueue].lock, flags); | 
|  | 1597 | while(!list_empty(&(dev->queues->queue[HostNormCmdQueue].cmdq))) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1598 | struct list_head *entry; | 
|  | 1599 | struct aac_aifcmd * aifcmd; | 
|  | 1600 |  | 
|  | 1601 | set_current_state(TASK_RUNNING); | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 1602 |  | 
| Mark Haverkamp | 2f130980 | 2005-09-26 13:02:15 -0700 | [diff] [blame] | 1603 | entry = dev->queues->queue[HostNormCmdQueue].cmdq.next; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1604 | list_del(entry); | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 1605 |  | 
| Mark Haverkamp | 2f130980 | 2005-09-26 13:02:15 -0700 | [diff] [blame] | 1606 | spin_unlock_irqrestore(dev->queues->queue[HostNormCmdQueue].lock, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1607 | fib = list_entry(entry, struct fib, fiblink); | 
|  | 1608 | /* | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 1609 | *	We will process the FIB here or pass it to a | 
|  | 1610 | *	worker thread that is TBD. We Really can't | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1611 | *	do anything at this point since we don't have | 
|  | 1612 | *	anything defined for this thread to do. | 
|  | 1613 | */ | 
| Mark Haverkamp | a8166a5 | 2007-03-15 10:26:22 -0700 | [diff] [blame] | 1614 | hw_fib = fib->hw_fib_va; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1615 | memset(fib, 0, sizeof(struct fib)); | 
|  | 1616 | fib->type = FSAFS_NTC_FIB_CONTEXT; | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 1617 | fib->size = sizeof(struct fib); | 
| Mark Haverkamp | a8166a5 | 2007-03-15 10:26:22 -0700 | [diff] [blame] | 1618 | fib->hw_fib_va = hw_fib; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1619 | fib->data = hw_fib->data; | 
|  | 1620 | fib->dev = dev; | 
|  | 1621 | /* | 
|  | 1622 | *	We only handle AifRequest fibs from the adapter. | 
|  | 1623 | */ | 
|  | 1624 | aifcmd = (struct aac_aifcmd *) hw_fib->data; | 
|  | 1625 | if (aifcmd->command == cpu_to_le32(AifCmdDriverNotify)) { | 
|  | 1626 | /* Handle Driver Notify Events */ | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 1627 | aac_handle_aif(dev, fib); | 
| Mark Haverkamp | 56b5871 | 2005-04-27 06:05:51 -0700 | [diff] [blame] | 1628 | *(__le32 *)hw_fib->data = cpu_to_le32(ST_OK); | 
| Mark Haverkamp | bfb35aa8 | 2006-02-01 09:30:55 -0800 | [diff] [blame] | 1629 | aac_fib_adapter_complete(fib, (u16)sizeof(u32)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1630 | } else { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1631 | /* The u32 here is important and intended. We are using | 
|  | 1632 | 32bit wrapping time to fit the adapter field */ | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 1633 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1634 | u32 time_now, time_last; | 
|  | 1635 | unsigned long flagv; | 
| Mark Haverkamp | 2f130980 | 2005-09-26 13:02:15 -0700 | [diff] [blame] | 1636 | unsigned num; | 
|  | 1637 | struct hw_fib ** hw_fib_pool, ** hw_fib_p; | 
|  | 1638 | struct fib ** fib_pool, ** fib_p; | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 1639 |  | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 1640 | /* Sniff events */ | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 1641 | if ((aifcmd->command == | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 1642 | cpu_to_le32(AifCmdEventNotify)) || | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 1643 | (aifcmd->command == | 
| Mark Haverkamp | 131256c | 2005-09-26 13:04:56 -0700 | [diff] [blame] | 1644 | cpu_to_le32(AifCmdJobProgress))) { | 
|  | 1645 | aac_handle_aif(dev, fib); | 
|  | 1646 | } | 
| Salyzyn, Mark | 29c9768 | 2007-06-12 09:33:54 -0400 | [diff] [blame] | 1647 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1648 | time_now = jiffies/HZ; | 
|  | 1649 |  | 
| Mark Haverkamp | 2f130980 | 2005-09-26 13:02:15 -0700 | [diff] [blame] | 1650 | /* | 
|  | 1651 | * Warning: no sleep allowed while | 
|  | 1652 | * holding spinlock. We take the estimate | 
|  | 1653 | * and pre-allocate a set of fibs outside the | 
|  | 1654 | * lock. | 
|  | 1655 | */ | 
|  | 1656 | num = le32_to_cpu(dev->init->AdapterFibsSize) | 
|  | 1657 | / sizeof(struct hw_fib); /* some extra */ | 
|  | 1658 | spin_lock_irqsave(&dev->fib_lock, flagv); | 
|  | 1659 | entry = dev->fib_list.next; | 
|  | 1660 | while (entry != &dev->fib_list) { | 
|  | 1661 | entry = entry->next; | 
|  | 1662 | ++num; | 
|  | 1663 | } | 
|  | 1664 | spin_unlock_irqrestore(&dev->fib_lock, flagv); | 
|  | 1665 | hw_fib_pool = NULL; | 
|  | 1666 | fib_pool = NULL; | 
|  | 1667 | if (num | 
|  | 1668 | && ((hw_fib_pool = kmalloc(sizeof(struct hw_fib *) * num, GFP_KERNEL))) | 
|  | 1669 | && ((fib_pool = kmalloc(sizeof(struct fib *) * num, GFP_KERNEL)))) { | 
|  | 1670 | hw_fib_p = hw_fib_pool; | 
|  | 1671 | fib_p = fib_pool; | 
|  | 1672 | while (hw_fib_p < &hw_fib_pool[num]) { | 
|  | 1673 | if (!(*(hw_fib_p++) = kmalloc(sizeof(struct hw_fib), GFP_KERNEL))) { | 
|  | 1674 | --hw_fib_p; | 
|  | 1675 | break; | 
|  | 1676 | } | 
|  | 1677 | if (!(*(fib_p++) = kmalloc(sizeof(struct fib), GFP_KERNEL))) { | 
|  | 1678 | kfree(*(--hw_fib_p)); | 
|  | 1679 | break; | 
|  | 1680 | } | 
|  | 1681 | } | 
|  | 1682 | if ((num = hw_fib_p - hw_fib_pool) == 0) { | 
|  | 1683 | kfree(fib_pool); | 
|  | 1684 | fib_pool = NULL; | 
|  | 1685 | kfree(hw_fib_pool); | 
|  | 1686 | hw_fib_pool = NULL; | 
|  | 1687 | } | 
| Jesper Juhl | c9475cb | 2005-11-07 01:01:26 -0800 | [diff] [blame] | 1688 | } else { | 
| Mark Haverkamp | 2f130980 | 2005-09-26 13:02:15 -0700 | [diff] [blame] | 1689 | kfree(hw_fib_pool); | 
|  | 1690 | hw_fib_pool = NULL; | 
|  | 1691 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1692 | spin_lock_irqsave(&dev->fib_lock, flagv); | 
|  | 1693 | entry = dev->fib_list.next; | 
|  | 1694 | /* | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 1695 | * For each Context that is on the | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1696 | * fibctxList, make a copy of the | 
|  | 1697 | * fib, and then set the event to wake up the | 
|  | 1698 | * thread that is waiting for it. | 
|  | 1699 | */ | 
| Mark Haverkamp | 2f130980 | 2005-09-26 13:02:15 -0700 | [diff] [blame] | 1700 | hw_fib_p = hw_fib_pool; | 
|  | 1701 | fib_p = fib_pool; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1702 | while (entry != &dev->fib_list) { | 
|  | 1703 | /* | 
|  | 1704 | * Extract the fibctx | 
|  | 1705 | */ | 
|  | 1706 | fibctx = list_entry(entry, struct aac_fib_context, next); | 
|  | 1707 | /* | 
|  | 1708 | * Check if the queue is getting | 
|  | 1709 | * backlogged | 
|  | 1710 | */ | 
|  | 1711 | if (fibctx->count > 20) | 
|  | 1712 | { | 
|  | 1713 | /* | 
|  | 1714 | * It's *not* jiffies folks, | 
|  | 1715 | * but jiffies / HZ so do not | 
|  | 1716 | * panic ... | 
|  | 1717 | */ | 
|  | 1718 | time_last = fibctx->jiffies; | 
|  | 1719 | /* | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 1720 | * Has it been > 2 minutes | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1721 | * since the last read off | 
|  | 1722 | * the queue? | 
|  | 1723 | */ | 
| Mark Haverkamp | 404d9a9 | 2006-05-10 09:12:48 -0700 | [diff] [blame] | 1724 | if ((time_now - time_last) > aif_timeout) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1725 | entry = entry->next; | 
|  | 1726 | aac_close_fib_context(dev, fibctx); | 
|  | 1727 | continue; | 
|  | 1728 | } | 
|  | 1729 | } | 
|  | 1730 | /* | 
|  | 1731 | * Warning: no sleep allowed while | 
|  | 1732 | * holding spinlock | 
|  | 1733 | */ | 
| Mark Haverkamp | 2f130980 | 2005-09-26 13:02:15 -0700 | [diff] [blame] | 1734 | if (hw_fib_p < &hw_fib_pool[num]) { | 
|  | 1735 | hw_newfib = *hw_fib_p; | 
|  | 1736 | *(hw_fib_p++) = NULL; | 
|  | 1737 | newfib = *fib_p; | 
|  | 1738 | *(fib_p++) = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1739 | /* | 
|  | 1740 | * Make the copy of the FIB | 
|  | 1741 | */ | 
|  | 1742 | memcpy(hw_newfib, hw_fib, sizeof(struct hw_fib)); | 
|  | 1743 | memcpy(newfib, fib, sizeof(struct fib)); | 
| Mark Haverkamp | a8166a5 | 2007-03-15 10:26:22 -0700 | [diff] [blame] | 1744 | newfib->hw_fib_va = hw_newfib; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1745 | /* | 
|  | 1746 | * Put the FIB onto the | 
|  | 1747 | * fibctx's fibs | 
|  | 1748 | */ | 
|  | 1749 | list_add_tail(&newfib->fiblink, &fibctx->fib_list); | 
|  | 1750 | fibctx->count++; | 
| Salyzyn, Mark | 8ce3eca | 2008-01-16 07:39:06 -0800 | [diff] [blame] | 1751 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1752 | * Set the event to wake up the | 
| Mark Haverkamp | 2f130980 | 2005-09-26 13:02:15 -0700 | [diff] [blame] | 1753 | * thread that is waiting. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1754 | */ | 
|  | 1755 | up(&fibctx->wait_sem); | 
|  | 1756 | } else { | 
|  | 1757 | printk(KERN_WARNING "aifd: didn't allocate NewFib.\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1758 | } | 
|  | 1759 | entry = entry->next; | 
|  | 1760 | } | 
|  | 1761 | /* | 
|  | 1762 | *	Set the status of this FIB | 
|  | 1763 | */ | 
| Mark Haverkamp | 56b5871 | 2005-04-27 06:05:51 -0700 | [diff] [blame] | 1764 | *(__le32 *)hw_fib->data = cpu_to_le32(ST_OK); | 
| Mark Haverkamp | bfb35aa8 | 2006-02-01 09:30:55 -0800 | [diff] [blame] | 1765 | aac_fib_adapter_complete(fib, sizeof(u32)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1766 | spin_unlock_irqrestore(&dev->fib_lock, flagv); | 
| Mark Haverkamp | 2f130980 | 2005-09-26 13:02:15 -0700 | [diff] [blame] | 1767 | /* Free up the remaining resources */ | 
|  | 1768 | hw_fib_p = hw_fib_pool; | 
|  | 1769 | fib_p = fib_pool; | 
|  | 1770 | while (hw_fib_p < &hw_fib_pool[num]) { | 
| Jesper Juhl | c9475cb | 2005-11-07 01:01:26 -0800 | [diff] [blame] | 1771 | kfree(*hw_fib_p); | 
|  | 1772 | kfree(*fib_p); | 
| Mark Haverkamp | 2f130980 | 2005-09-26 13:02:15 -0700 | [diff] [blame] | 1773 | ++fib_p; | 
|  | 1774 | ++hw_fib_p; | 
|  | 1775 | } | 
| Jesper Juhl | c9475cb | 2005-11-07 01:01:26 -0800 | [diff] [blame] | 1776 | kfree(hw_fib_pool); | 
|  | 1777 | kfree(fib_pool); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1778 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1779 | kfree(fib); | 
| Mark Haverkamp | 2f130980 | 2005-09-26 13:02:15 -0700 | [diff] [blame] | 1780 | spin_lock_irqsave(dev->queues->queue[HostNormCmdQueue].lock, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1781 | } | 
|  | 1782 | /* | 
|  | 1783 | *	There are no more AIF's | 
|  | 1784 | */ | 
| Mark Haverkamp | 2f130980 | 2005-09-26 13:02:15 -0700 | [diff] [blame] | 1785 | spin_unlock_irqrestore(dev->queues->queue[HostNormCmdQueue].lock, flags); | 
| Salyzyn, Mark | 29c9768 | 2007-06-12 09:33:54 -0400 | [diff] [blame] | 1786 |  | 
|  | 1787 | /* | 
|  | 1788 | *	Background activity | 
|  | 1789 | */ | 
|  | 1790 | if ((time_before(next_check_jiffies,next_jiffies)) | 
|  | 1791 | && ((difference = next_check_jiffies - jiffies) <= 0)) { | 
|  | 1792 | next_check_jiffies = next_jiffies; | 
|  | 1793 | if (aac_check_health(dev) == 0) { | 
|  | 1794 | difference = ((long)(unsigned)check_interval) | 
|  | 1795 | * HZ; | 
|  | 1796 | next_check_jiffies = jiffies + difference; | 
|  | 1797 | } else if (!dev->queues) | 
|  | 1798 | break; | 
|  | 1799 | } | 
|  | 1800 | if (!time_before(next_check_jiffies,next_jiffies) | 
|  | 1801 | && ((difference = next_jiffies - jiffies) <= 0)) { | 
|  | 1802 | struct timeval now; | 
|  | 1803 | int ret; | 
|  | 1804 |  | 
|  | 1805 | /* Don't even try to talk to adapter if its sick */ | 
|  | 1806 | ret = aac_check_health(dev); | 
|  | 1807 | if (!ret && !dev->queues) | 
|  | 1808 | break; | 
|  | 1809 | next_check_jiffies = jiffies | 
|  | 1810 | + ((long)(unsigned)check_interval) | 
|  | 1811 | * HZ; | 
|  | 1812 | do_gettimeofday(&now); | 
|  | 1813 |  | 
|  | 1814 | /* Synchronize our watches */ | 
|  | 1815 | if (((1000000 - (1000000 / HZ)) > now.tv_usec) | 
|  | 1816 | && (now.tv_usec > (1000000 / HZ))) | 
|  | 1817 | difference = (((1000000 - now.tv_usec) * HZ) | 
|  | 1818 | + 500000) / 1000000; | 
|  | 1819 | else if (ret == 0) { | 
|  | 1820 | struct fib *fibptr; | 
|  | 1821 |  | 
|  | 1822 | if ((fibptr = aac_fib_alloc(dev))) { | 
| Penchala Narasimha Reddy Chilakala, ERS-HCLTech | cacb6dc | 2009-12-21 18:39:27 +0530 | [diff] [blame] | 1823 | int status; | 
| Christoph Hellwig | f3307f7 | 2007-11-08 17:27:47 +0000 | [diff] [blame] | 1824 | __le32 *info; | 
| Salyzyn, Mark | 29c9768 | 2007-06-12 09:33:54 -0400 | [diff] [blame] | 1825 |  | 
|  | 1826 | aac_fib_init(fibptr); | 
|  | 1827 |  | 
| Christoph Hellwig | f3307f7 | 2007-11-08 17:27:47 +0000 | [diff] [blame] | 1828 | info = (__le32 *) fib_data(fibptr); | 
| Salyzyn, Mark | 29c9768 | 2007-06-12 09:33:54 -0400 | [diff] [blame] | 1829 | if (now.tv_usec > 500000) | 
|  | 1830 | ++now.tv_sec; | 
|  | 1831 |  | 
|  | 1832 | *info = cpu_to_le32(now.tv_sec); | 
|  | 1833 |  | 
| Penchala Narasimha Reddy Chilakala, ERS-HCLTech | cacb6dc | 2009-12-21 18:39:27 +0530 | [diff] [blame] | 1834 | status = aac_fib_send(SendHostTime, | 
| Salyzyn, Mark | 29c9768 | 2007-06-12 09:33:54 -0400 | [diff] [blame] | 1835 | fibptr, | 
|  | 1836 | sizeof(*info), | 
|  | 1837 | FsaNormal, | 
|  | 1838 | 1, 1, | 
|  | 1839 | NULL, | 
|  | 1840 | NULL); | 
| Penchala Narasimha Reddy Chilakala, ERS-HCLTech | cacb6dc | 2009-12-21 18:39:27 +0530 | [diff] [blame] | 1841 | /* Do not set XferState to zero unless | 
|  | 1842 | * receives a response from F/W */ | 
|  | 1843 | if (status >= 0) | 
|  | 1844 | aac_fib_complete(fibptr); | 
|  | 1845 | /* FIB should be freed only after | 
|  | 1846 | * getting the response from the F/W */ | 
|  | 1847 | if (status != -ERESTARTSYS) | 
|  | 1848 | aac_fib_free(fibptr); | 
| Salyzyn, Mark | 29c9768 | 2007-06-12 09:33:54 -0400 | [diff] [blame] | 1849 | } | 
|  | 1850 | difference = (long)(unsigned)update_interval*HZ; | 
|  | 1851 | } else { | 
|  | 1852 | /* retry shortly */ | 
|  | 1853 | difference = 10 * HZ; | 
|  | 1854 | } | 
|  | 1855 | next_jiffies = jiffies + difference; | 
|  | 1856 | if (time_before(next_check_jiffies,next_jiffies)) | 
|  | 1857 | difference = next_check_jiffies - jiffies; | 
|  | 1858 | } | 
|  | 1859 | if (difference <= 0) | 
|  | 1860 | difference = 1; | 
|  | 1861 | set_current_state(TASK_INTERRUPTIBLE); | 
|  | 1862 | schedule_timeout(difference); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1863 |  | 
| Christoph Hellwig | fe27381 | 2006-02-14 18:45:06 +0100 | [diff] [blame] | 1864 | if (kthread_should_stop()) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1865 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1866 | } | 
| Mark Haverkamp | 2f130980 | 2005-09-26 13:02:15 -0700 | [diff] [blame] | 1867 | if (dev->queues) | 
|  | 1868 | remove_wait_queue(&dev->queues->queue[HostNormCmdQueue].cmdready, &wait); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1869 | dev->aif_thread = 0; | 
| Mark Haverkamp | 2f130980 | 2005-09-26 13:02:15 -0700 | [diff] [blame] | 1870 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1871 | } |