1 /*****************************************************************************/
2 /* ips.c -- driver for the Adaptec / IBM ServeRAID controller */
4 /* Written By: Keith Mitchell, IBM Corporation */
5 /* Jack Hammer, Adaptec, Inc. */
6 /* David Jeffery, Adaptec, Inc. */
8 /* Copyright (C) 2000 IBM Corporation */
9 /* Copyright (C) 2002,2003 Adaptec, Inc. */
11 /* This program is free software; you can redistribute it and/or modify */
12 /* it under the terms of the GNU General Public License as published by */
13 /* the Free Software Foundation; either version 2 of the License, or */
14 /* (at your option) any later version. */
16 /* This program is distributed in the hope that it will be useful, */
17 /* but WITHOUT ANY WARRANTY; without even the implied warranty of */
18 /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
19 /* GNU General Public License for more details. */
22 /* THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR */
23 /* CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT */
24 /* LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, */
25 /* MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is */
26 /* solely responsible for determining the appropriateness of using and */
27 /* distributing the Program and assumes all risks associated with its */
28 /* exercise of rights under this Agreement, including but not limited to */
29 /* the risks and costs of program errors, damage to or loss of data, */
30 /* programs or equipment, and unavailability or interruption of operations. */
32 /* DISCLAIMER OF LIABILITY */
33 /* NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY */
34 /* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL */
35 /* DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND */
36 /* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR */
37 /* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE */
38 /* USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED */
39 /* HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES */
41 /* You should have received a copy of the GNU General Public License */
42 /* along with this program; if not, write to the Free Software */
43 /* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
45 /* Bugs/Comments/Suggestions about this driver should be mailed to: */
46 /* ipslinux@adaptec.com */
48 /* For system support issues, contact your local IBM Customer support. */
49 /* Directions to find IBM Customer Support for each country can be found at: */
50 /* http://www.ibm.com/planetwide/ */
52 /*****************************************************************************/
54 /*****************************************************************************/
57 /* 0.99.02 - Breakup commands that are bigger than 8 * the stripe size */
58 /* 0.99.03 - Make interrupt routine handle all completed request on the */
59 /* adapter not just the first one */
60 /* - Make sure passthru commands get woken up if we run out of */
62 /* - Send all of the commands on the queue at once rather than */
63 /* one at a time since the card will support it. */
64 /* 0.99.04 - Fix race condition in the passthru mechanism -- this required */
65 /* the interface to the utilities to change */
66 /* - Fix error recovery code */
67 /* 0.99.05 - Fix an oops when we get certain passthru commands */
68 /* 1.00.00 - Initial Public Release */
69 /* Functionally equivalent to 0.99.05 */
70 /* 3.60.00 - Bump max commands to 128 for use with firmware 3.60 */
71 /* - Change version to 3.60 to coincide with release numbering. */
72 /* 3.60.01 - Remove bogus error check in passthru routine */
73 /* 3.60.02 - Make DCDB direction based on lookup table */
74 /* - Only allow one DCDB command to a SCSI ID at a time */
75 /* 4.00.00 - Add support for ServeRAID 4 */
76 /* 4.00.01 - Add support for First Failure Data Capture */
77 /* 4.00.02 - Fix problem with PT DCDB with no buffer */
78 /* 4.00.03 - Add alternative passthru interface */
79 /* - Add ability to flash BIOS */
80 /* 4.00.04 - Rename structures/constants to be prefixed with IPS_ */
81 /* 4.00.05 - Remove wish_block from init routine */
82 /* - Use linux/spinlock.h instead of asm/spinlock.h for kernels */
83 /* 2.3.18 and later */
84 /* - Sync with other changes from the 2.3 kernels */
85 /* 4.00.06 - Fix timeout with initial FFDC command */
86 /* 4.00.06a - Port to 2.4 (trivial) -- Christoph Hellwig <hch@infradead.org> */
87 /* 4.10.00 - Add support for ServeRAID 4M/4L */
88 /* 4.10.13 - Fix for dynamic unload and proc file system */
89 /* 4.20.03 - Rename version to coincide with new release schedules */
90 /* Performance fixes */
91 /* Fix truncation of /proc files with cat */
92 /* Merge in changes through kernel 2.4.0test1ac21 */
93 /* 4.20.13 - Fix some failure cases / reset code */
94 /* - Hook into the reboot_notifier to flush the controller cache */
95 /* 4.50.01 - Fix problem when there is a hole in logical drive numbering */
96 /* 4.70.09 - Use a Common ( Large Buffer ) for Flashing from the JCRM CD */
97 /* - Add IPSSEND Flash Support */
98 /* - Set Sense Data for Unknown SCSI Command */
99 /* - Use Slot Number from NVRAM Page 5 */
100 /* - Restore caller's DCDB Structure */
101 /* 4.70.12 - Corrective actions for bad controller ( during initialization )*/
102 /* 4.70.13 - Don't Send CDB's if we already know the device is not present */
103 /* - Don't release HA Lock in ips_next() until SC taken off queue */
104 /* - Unregister SCSI device in ips_release() */
105 /* 4.70.15 - Fix Breakup for very large ( non-SG ) requests in ips_done() */
106 /* 4.71.00 - Change all memory allocations to not use GFP_DMA flag */
107 /* Code Clean-Up for 2.4.x kernel */
108 /* 4.72.00 - Allow for a Scatter-Gather Element to exceed MAX_XFER Size */
109 /* 4.72.01 - I/O Mapped Memory release ( so "insmod ips" does not Fail ) */
110 /* - Don't Issue Internal FFDC Command if there are Active Commands */
111 /* - Close Window for getting too many IOCTL's active */
112 /* 4.80.00 - Make ia64 Safe */
113 /* 4.80.04 - Eliminate calls to strtok() if 2.4.x or greater */
114 /* - Adjustments to Device Queue Depth */
115 /* 4.80.14 - Take all semaphores off stack */
116 /* - Clean Up New_IOCTL path */
117 /* 4.80.20 - Set max_sectors in Scsi_Host structure ( if >= 2.4.7 kernel ) */
118 /* - 5 second delay needed after resetting an i960 adapter */
119 /* 4.80.26 - Clean up potential code problems ( Arjan's recommendations ) */
120 /* 4.90.01 - Version Matching for FirmWare, BIOS, and Driver */
121 /* 4.90.05 - Use New PCI Architecture to facilitate Hot Plug Development */
122 /* 4.90.08 - Increase Delays in Flashing ( Trombone Only - 4H ) */
123 /* 4.90.08 - Data Corruption if First Scatter Gather Element is > 64K */
124 /* 4.90.11 - Don't actually RESET unless it's physically required */
125 /* - Remove unused compile options */
126 /* 5.00.01 - Sarasota ( 5i ) adapters must always be scanned first */
127 /* - Get rid on IOCTL_NEW_COMMAND code */
128 /* - Add Extended DCDB Commands for Tape Support in 5I */
129 /* 5.10.12 - use pci_dma interfaces, update for 2.5 kernel changes */
130 /* 5.10.15 - remove unused code (sem, macros, etc.) */
131 /* 5.30.00 - use __devexit_p() */
132 /* 6.00.00 - Add 6x Adapters and Battery Flash */
133 /* 6.10.00 - Remove 1G Addressing Limitations */
134 /* 6.11.xx - Get VersionInfo buffer off the stack ! DDTS 60401 */
135 /* 6.11.xx - Make Logical Drive Info structure safe for DMA DDTS 60639 */
136 /* 7.10.18 - Add highmem_io flag in SCSI Templete for 2.4 kernels */
137 /* - Fix path/name for scsi_hosts.h include for 2.6 kernels */
138 /* - Fix sort order of 7k */
139 /* - Remove 3 unused "inline" functions */
140 /* 7.12.xx - Use STATIC functions wherever possible */
141 /* - Clean up deprecated MODULE_PARM calls */
142 /* 7.12.05 - Remove Version Matching per IBM request */
143 /*****************************************************************************/
146 * Conditional Compilation directives for this driver:
148 * IPS_DEBUG - Turn on debugging info
152 * debug:<number> - Set debug level to <number>
153 * NOTE: only works when IPS_DEBUG compile directive is used.
154 * 1 - Normal debug messages
155 * 2 - Verbose debug messages
156 * 11 - Method trace (non interrupt)
157 * 12 - Method trace (includes interrupt)
159 * noi2o - Don't use I2O Queues (ServeRAID 4 only)
160 * nommap - Don't use memory mapped I/O
161 * ioctlsize - Initial size of the IOCTL buffer
165 #include <asm/byteorder.h>
166 #include <asm/page.h>
167 #include <linux/stddef.h>
168 #include <linux/string.h>
169 #include <linux/errno.h>
170 #include <linux/kernel.h>
171 #include <linux/ioport.h>
172 #include <linux/slab.h>
173 #include <linux/delay.h>
174 #include <linux/pci.h>
175 #include <linux/proc_fs.h>
176 #include <linux/reboot.h>
177 #include <linux/interrupt.h>
179 #include <linux/blkdev.h>
180 #include <linux/types.h>
181 #include <linux/dma-mapping.h>
183 #include <scsi/scsi.h>
184 #include <scsi/scsi_cmnd.h>
185 #include <scsi/scsi_device.h>
186 #include <scsi/scsi_eh.h>
187 #include <scsi/scsi_host.h>
188 #include <scsi/scsi_tcq.h>
193 #include <linux/module.h>
195 #include <linux/stat.h>
197 #include <linux/spinlock.h>
198 #include <linux/init.h>
200 #include <linux/smp.h>
203 static char *ips = NULL;
204 module_param(ips, charp, 0);
210 #define IPS_VERSION_HIGH IPS_VER_MAJOR_STRING "." IPS_VER_MINOR_STRING
211 #define IPS_VERSION_LOW "." IPS_VER_BUILD_STRING " "
213 #define IPS_DMA_DIR(scb) ((!scb->scsi_cmd || ips_is_passthru(scb->scsi_cmd) || \
214 DMA_NONE == scb->scsi_cmd->sc_data_direction) ? \
215 DMA_BIDIRECTIONAL : \
216 scb->scsi_cmd->sc_data_direction)
219 #define METHOD_TRACE(s, i) if (ips_debug >= (i+10)) printk(KERN_NOTICE s "\n");
220 #define DEBUG(i, s) if (ips_debug >= i) printk(KERN_NOTICE s "\n");
221 #define DEBUG_VAR(i, s, v...) if (ips_debug >= i) printk(KERN_NOTICE s "\n", v);
223 #define METHOD_TRACE(s, i)
225 #define DEBUG_VAR(i, s, v...)
229 * Function prototypes
231 static int ips_eh_abort(struct scsi_cmnd *);
232 static int ips_eh_reset(struct scsi_cmnd *);
233 static int ips_queue(struct Scsi_Host *, struct scsi_cmnd *);
234 static const char *ips_info(struct Scsi_Host *);
235 static irqreturn_t do_ipsintr(int, void *);
236 static int ips_hainit(ips_ha_t *);
237 static int ips_map_status(ips_ha_t *, ips_scb_t *, ips_stat_t *);
238 static int ips_send_wait(ips_ha_t *, ips_scb_t *, int, int);
239 static int ips_send_cmd(ips_ha_t *, ips_scb_t *);
240 static int ips_online(ips_ha_t *, ips_scb_t *);
241 static int ips_inquiry(ips_ha_t *, ips_scb_t *);
242 static int ips_rdcap(ips_ha_t *, ips_scb_t *);
243 static int ips_msense(ips_ha_t *, ips_scb_t *);
244 static int ips_reqsen(ips_ha_t *, ips_scb_t *);
245 static int ips_deallocatescbs(ips_ha_t *, int);
246 static int ips_allocatescbs(ips_ha_t *);
247 static int ips_reset_copperhead(ips_ha_t *);
248 static int ips_reset_copperhead_memio(ips_ha_t *);
249 static int ips_reset_morpheus(ips_ha_t *);
250 static int ips_issue_copperhead(ips_ha_t *, ips_scb_t *);
251 static int ips_issue_copperhead_memio(ips_ha_t *, ips_scb_t *);
252 static int ips_issue_i2o(ips_ha_t *, ips_scb_t *);
253 static int ips_issue_i2o_memio(ips_ha_t *, ips_scb_t *);
254 static int ips_isintr_copperhead(ips_ha_t *);
255 static int ips_isintr_copperhead_memio(ips_ha_t *);
256 static int ips_isintr_morpheus(ips_ha_t *);
257 static int ips_wait(ips_ha_t *, int, int);
258 static int ips_write_driver_status(ips_ha_t *, int);
259 static int ips_read_adapter_status(ips_ha_t *, int);
260 static int ips_read_subsystem_parameters(ips_ha_t *, int);
261 static int ips_read_config(ips_ha_t *, int);
262 static int ips_clear_adapter(ips_ha_t *, int);
263 static int ips_readwrite_page5(ips_ha_t *, int, int);
264 static int ips_init_copperhead(ips_ha_t *);
265 static int ips_init_copperhead_memio(ips_ha_t *);
266 static int ips_init_morpheus(ips_ha_t *);
267 static int ips_isinit_copperhead(ips_ha_t *);
268 static int ips_isinit_copperhead_memio(ips_ha_t *);
269 static int ips_isinit_morpheus(ips_ha_t *);
270 static int ips_erase_bios(ips_ha_t *);
271 static int ips_program_bios(ips_ha_t *, char *, uint32_t, uint32_t);
272 static int ips_verify_bios(ips_ha_t *, char *, uint32_t, uint32_t);
273 static int ips_erase_bios_memio(ips_ha_t *);
274 static int ips_program_bios_memio(ips_ha_t *, char *, uint32_t, uint32_t);
275 static int ips_verify_bios_memio(ips_ha_t *, char *, uint32_t, uint32_t);
276 static int ips_flash_copperhead(ips_ha_t *, ips_passthru_t *, ips_scb_t *);
277 static int ips_flash_bios(ips_ha_t *, ips_passthru_t *, ips_scb_t *);
278 static int ips_flash_firmware(ips_ha_t *, ips_passthru_t *, ips_scb_t *);
279 static void ips_free_flash_copperhead(ips_ha_t * ha);
280 static void ips_get_bios_version(ips_ha_t *, int);
281 static void ips_identify_controller(ips_ha_t *);
282 static void ips_chkstatus(ips_ha_t *, IPS_STATUS *);
283 static void ips_enable_int_copperhead(ips_ha_t *);
284 static void ips_enable_int_copperhead_memio(ips_ha_t *);
285 static void ips_enable_int_morpheus(ips_ha_t *);
286 static int ips_intr_copperhead(ips_ha_t *);
287 static int ips_intr_morpheus(ips_ha_t *);
288 static void ips_next(ips_ha_t *, int);
289 static void ipsintr_blocking(ips_ha_t *, struct ips_scb *);
290 static void ipsintr_done(ips_ha_t *, struct ips_scb *);
291 static void ips_done(ips_ha_t *, ips_scb_t *);
292 static void ips_free(ips_ha_t *);
293 static void ips_init_scb(ips_ha_t *, ips_scb_t *);
294 static void ips_freescb(ips_ha_t *, ips_scb_t *);
295 static void ips_setup_funclist(ips_ha_t *);
296 static void ips_statinit(ips_ha_t *);
297 static void ips_statinit_memio(ips_ha_t *);
298 static void ips_fix_ffdc_time(ips_ha_t *, ips_scb_t *, time64_t);
299 static void ips_ffdc_reset(ips_ha_t *, int);
300 static void ips_ffdc_time(ips_ha_t *);
301 static uint32_t ips_statupd_copperhead(ips_ha_t *);
302 static uint32_t ips_statupd_copperhead_memio(ips_ha_t *);
303 static uint32_t ips_statupd_morpheus(ips_ha_t *);
304 static ips_scb_t *ips_getscb(ips_ha_t *);
305 static void ips_putq_scb_head(ips_scb_queue_t *, ips_scb_t *);
306 static void ips_putq_wait_tail(ips_wait_queue_entry_t *, struct scsi_cmnd *);
307 static void ips_putq_copp_tail(ips_copp_queue_t *,
308 ips_copp_wait_item_t *);
309 static ips_scb_t *ips_removeq_scb_head(ips_scb_queue_t *);
310 static ips_scb_t *ips_removeq_scb(ips_scb_queue_t *, ips_scb_t *);
311 static struct scsi_cmnd *ips_removeq_wait_head(ips_wait_queue_entry_t *);
312 static struct scsi_cmnd *ips_removeq_wait(ips_wait_queue_entry_t *,
314 static ips_copp_wait_item_t *ips_removeq_copp(ips_copp_queue_t *,
315 ips_copp_wait_item_t *);
316 static ips_copp_wait_item_t *ips_removeq_copp_head(ips_copp_queue_t *);
318 static int ips_is_passthru(struct scsi_cmnd *);
319 static int ips_make_passthru(ips_ha_t *, struct scsi_cmnd *, ips_scb_t *, int);
320 static int ips_usrcmd(ips_ha_t *, ips_passthru_t *, ips_scb_t *);
321 static void ips_cleanup_passthru(ips_ha_t *, ips_scb_t *);
322 static void ips_scmd_buf_write(struct scsi_cmnd * scmd, void *data,
324 static void ips_scmd_buf_read(struct scsi_cmnd * scmd, void *data,
327 static int ips_write_info(struct Scsi_Host *, char *, int);
328 static int ips_show_info(struct seq_file *, struct Scsi_Host *);
329 static int ips_host_info(ips_ha_t *, struct seq_file *);
330 static int ips_abort_init(ips_ha_t * ha, int index);
331 static int ips_init_phase2(int index);
333 static int ips_init_phase1(struct pci_dev *pci_dev, int *indexPtr);
334 static int ips_register_scsi(int index);
336 static int ips_poll_for_flush_complete(ips_ha_t * ha);
337 static void ips_flush_and_reset(ips_ha_t *ha);
342 static const char ips_name[] = "ips";
343 static struct Scsi_Host *ips_sh[IPS_MAX_ADAPTERS]; /* Array of host controller structures */
344 static ips_ha_t *ips_ha[IPS_MAX_ADAPTERS]; /* Array of HA structures */
345 static unsigned int ips_next_controller;
346 static unsigned int ips_num_controllers;
347 static unsigned int ips_released_controllers;
348 static int ips_hotplug;
349 static int ips_cmd_timeout = 60;
350 static int ips_reset_timeout = 60 * 5;
351 static int ips_force_memio = 1; /* Always use Memory Mapped I/O */
352 static int ips_force_i2o = 1; /* Always use I2O command delivery */
353 static int ips_ioctlsize = IPS_IOCTL_SIZE; /* Size of the ioctl buffer */
354 static int ips_cd_boot; /* Booting from Manager CD */
355 static char *ips_FlashData = NULL; /* CD Boot - Flash Data Buffer */
356 static dma_addr_t ips_flashbusaddr;
357 static long ips_FlashDataInUse; /* CD Boot - Flash Data In Use Flag */
358 static uint32_t MaxLiteCmds = 32; /* Max Active Cmds for a Lite Adapter */
359 static struct scsi_host_template ips_driver_template = {
361 .queuecommand = ips_queue,
362 .eh_abort_handler = ips_eh_abort,
363 .eh_host_reset_handler = ips_eh_reset,
365 .show_info = ips_show_info,
366 .write_info = ips_write_info,
367 .slave_configure = ips_slave_configure,
368 .bios_param = ips_biosparam,
370 .sg_tablesize = IPS_MAX_SG,
376 /* This table describes all ServeRAID Adapters */
377 static struct pci_device_id ips_pci_table[] = {
378 { 0x1014, 0x002E, PCI_ANY_ID, PCI_ANY_ID, 0, 0 },
379 { 0x1014, 0x01BD, PCI_ANY_ID, PCI_ANY_ID, 0, 0 },
380 { 0x9005, 0x0250, PCI_ANY_ID, PCI_ANY_ID, 0, 0 },
384 MODULE_DEVICE_TABLE( pci, ips_pci_table );
386 static char ips_hot_plug_name[] = "ips";
388 static int ips_insert_device(struct pci_dev *pci_dev, const struct pci_device_id *ent);
389 static void ips_remove_device(struct pci_dev *pci_dev);
391 static struct pci_driver ips_pci_driver = {
392 .name = ips_hot_plug_name,
393 .id_table = ips_pci_table,
394 .probe = ips_insert_device,
395 .remove = ips_remove_device,
400 * Necessary forward function protoypes
402 static int ips_halt(struct notifier_block *nb, ulong event, void *buf);
404 #define MAX_ADAPTER_NAME 15
406 static char ips_adapter_name[][30] = {
409 "ServeRAID on motherboard",
410 "ServeRAID on motherboard",
427 static struct notifier_block ips_notifier = {
434 static char ips_command_direction[] = {
435 IPS_DATA_NONE, IPS_DATA_NONE, IPS_DATA_IN, IPS_DATA_IN, IPS_DATA_OUT,
436 IPS_DATA_IN, IPS_DATA_IN, IPS_DATA_OUT, IPS_DATA_IN, IPS_DATA_UNK,
437 IPS_DATA_OUT, IPS_DATA_OUT, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
438 IPS_DATA_IN, IPS_DATA_NONE, IPS_DATA_NONE, IPS_DATA_IN, IPS_DATA_OUT,
439 IPS_DATA_IN, IPS_DATA_OUT, IPS_DATA_NONE, IPS_DATA_NONE, IPS_DATA_OUT,
440 IPS_DATA_NONE, IPS_DATA_IN, IPS_DATA_NONE, IPS_DATA_IN, IPS_DATA_OUT,
441 IPS_DATA_NONE, IPS_DATA_UNK, IPS_DATA_IN, IPS_DATA_UNK, IPS_DATA_IN,
442 IPS_DATA_UNK, IPS_DATA_OUT, IPS_DATA_IN, IPS_DATA_UNK, IPS_DATA_UNK,
443 IPS_DATA_IN, IPS_DATA_IN, IPS_DATA_OUT, IPS_DATA_NONE, IPS_DATA_UNK,
444 IPS_DATA_IN, IPS_DATA_OUT, IPS_DATA_OUT, IPS_DATA_OUT, IPS_DATA_OUT,
445 IPS_DATA_OUT, IPS_DATA_NONE, IPS_DATA_IN, IPS_DATA_NONE, IPS_DATA_NONE,
446 IPS_DATA_IN, IPS_DATA_OUT, IPS_DATA_OUT, IPS_DATA_OUT, IPS_DATA_OUT,
447 IPS_DATA_IN, IPS_DATA_OUT, IPS_DATA_IN, IPS_DATA_OUT, IPS_DATA_OUT,
448 IPS_DATA_OUT, IPS_DATA_IN, IPS_DATA_IN, IPS_DATA_IN, IPS_DATA_NONE,
449 IPS_DATA_UNK, IPS_DATA_NONE, IPS_DATA_NONE, IPS_DATA_NONE, IPS_DATA_UNK,
450 IPS_DATA_NONE, IPS_DATA_OUT, IPS_DATA_IN, IPS_DATA_UNK, IPS_DATA_UNK,
451 IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
452 IPS_DATA_OUT, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
453 IPS_DATA_IN, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
454 IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
455 IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
456 IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
457 IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
458 IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
459 IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
460 IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
461 IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
462 IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
463 IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
464 IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
465 IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
466 IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
467 IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
468 IPS_DATA_NONE, IPS_DATA_NONE, IPS_DATA_UNK, IPS_DATA_IN, IPS_DATA_NONE,
469 IPS_DATA_OUT, IPS_DATA_UNK, IPS_DATA_NONE, IPS_DATA_UNK, IPS_DATA_OUT,
470 IPS_DATA_OUT, IPS_DATA_OUT, IPS_DATA_OUT, IPS_DATA_OUT, IPS_DATA_NONE,
471 IPS_DATA_UNK, IPS_DATA_IN, IPS_DATA_OUT, IPS_DATA_IN, IPS_DATA_IN,
472 IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
473 IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
474 IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
475 IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
476 IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
477 IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
478 IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
479 IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
480 IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
481 IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_OUT,
482 IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
483 IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
484 IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK,
485 IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK, IPS_DATA_UNK
489 /****************************************************************************/
491 /* Routine Name: ips_setup */
493 /* Routine Description: */
495 /* setup parameters to the driver */
497 /****************************************************************************/
499 ips_setup(char *ips_str)
505 static const IPS_OPTION options[] = {
506 {"noi2o", &ips_force_i2o, 0},
507 {"nommap", &ips_force_memio, 0},
508 {"ioctlsize", &ips_ioctlsize, IPS_IOCTL_SIZE},
509 {"cdboot", &ips_cd_boot, 0},
510 {"maxcmds", &MaxLiteCmds, 32},
513 /* Don't use strtok() anymore ( if 2.4 Kernel or beyond ) */
514 /* Search for value */
515 while ((key = strsep(&ips_str, ",."))) {
518 value = strchr(key, ':');
522 * We now have key/value pairs.
523 * Update the variables
525 for (i = 0; i < ARRAY_SIZE(options); i++) {
527 (key, options[i].option_name,
528 strlen(options[i].option_name)) == 0) {
530 *options[i].option_flag =
531 simple_strtoul(value, NULL, 0);
533 *options[i].option_flag =
534 options[i].option_value;
543 __setup("ips=", ips_setup);
545 /****************************************************************************/
547 /* Routine Name: ips_detect */
549 /* Routine Description: */
551 /* Detect and initialize the driver */
553 /* NOTE: this routine is called under the io_request_lock spinlock */
555 /****************************************************************************/
557 ips_detect(struct scsi_host_template * SHT)
561 METHOD_TRACE("ips_detect", 1);
568 for (i = 0; i < ips_num_controllers; i++) {
569 if (ips_register_scsi(i))
571 ips_released_controllers++;
574 return (ips_num_controllers);
577 /****************************************************************************/
578 /* configure the function pointers to use the functions that will work */
579 /* with the found version of the adapter */
580 /****************************************************************************/
582 ips_setup_funclist(ips_ha_t * ha)
588 if (IPS_IS_MORPHEUS(ha) || IPS_IS_MARCO(ha)) {
589 /* morpheus / marco / sebring */
590 ha->func.isintr = ips_isintr_morpheus;
591 ha->func.isinit = ips_isinit_morpheus;
592 ha->func.issue = ips_issue_i2o_memio;
593 ha->func.init = ips_init_morpheus;
594 ha->func.statupd = ips_statupd_morpheus;
595 ha->func.reset = ips_reset_morpheus;
596 ha->func.intr = ips_intr_morpheus;
597 ha->func.enableint = ips_enable_int_morpheus;
598 } else if (IPS_USE_MEMIO(ha)) {
599 /* copperhead w/MEMIO */
600 ha->func.isintr = ips_isintr_copperhead_memio;
601 ha->func.isinit = ips_isinit_copperhead_memio;
602 ha->func.init = ips_init_copperhead_memio;
603 ha->func.statupd = ips_statupd_copperhead_memio;
604 ha->func.statinit = ips_statinit_memio;
605 ha->func.reset = ips_reset_copperhead_memio;
606 ha->func.intr = ips_intr_copperhead;
607 ha->func.erasebios = ips_erase_bios_memio;
608 ha->func.programbios = ips_program_bios_memio;
609 ha->func.verifybios = ips_verify_bios_memio;
610 ha->func.enableint = ips_enable_int_copperhead_memio;
611 if (IPS_USE_I2O_DELIVER(ha))
612 ha->func.issue = ips_issue_i2o_memio;
614 ha->func.issue = ips_issue_copperhead_memio;
617 ha->func.isintr = ips_isintr_copperhead;
618 ha->func.isinit = ips_isinit_copperhead;
619 ha->func.init = ips_init_copperhead;
620 ha->func.statupd = ips_statupd_copperhead;
621 ha->func.statinit = ips_statinit;
622 ha->func.reset = ips_reset_copperhead;
623 ha->func.intr = ips_intr_copperhead;
624 ha->func.erasebios = ips_erase_bios;
625 ha->func.programbios = ips_program_bios;
626 ha->func.verifybios = ips_verify_bios;
627 ha->func.enableint = ips_enable_int_copperhead;
629 if (IPS_USE_I2O_DELIVER(ha))
630 ha->func.issue = ips_issue_i2o;
632 ha->func.issue = ips_issue_copperhead;
636 /****************************************************************************/
638 /* Routine Name: ips_release */
640 /* Routine Description: */
642 /* Remove a driver */
644 /****************************************************************************/
645 static void ips_release(struct Scsi_Host *sh)
651 METHOD_TRACE("ips_release", 1);
653 scsi_remove_host(sh);
655 for (i = 0; i < IPS_MAX_ADAPTERS && ips_sh[i] != sh; i++) ;
657 if (i == IPS_MAX_ADAPTERS) {
659 "(%s) release, invalid Scsi_Host pointer.\n", ips_name);
668 /* flush the cache on the controller */
669 scb = &ha->scbs[ha->max_cmds - 1];
671 ips_init_scb(ha, scb);
673 scb->timeout = ips_cmd_timeout;
674 scb->cdb[0] = IPS_CMD_FLUSH;
676 scb->cmd.flush_cache.op_code = IPS_CMD_FLUSH;
677 scb->cmd.flush_cache.command_id = IPS_COMMAND_ID(ha, scb);
678 scb->cmd.flush_cache.state = IPS_NORM_STATE;
679 scb->cmd.flush_cache.reserved = 0;
680 scb->cmd.flush_cache.reserved2 = 0;
681 scb->cmd.flush_cache.reserved3 = 0;
682 scb->cmd.flush_cache.reserved4 = 0;
684 IPS_PRINTK(KERN_WARNING, ha->pcidev, "Flushing Cache.\n");
687 if (ips_send_wait(ha, scb, ips_cmd_timeout, IPS_INTR_ON) == IPS_FAILURE)
688 IPS_PRINTK(KERN_WARNING, ha->pcidev, "Incomplete Flush.\n");
690 IPS_PRINTK(KERN_WARNING, ha->pcidev, "Flushing Complete.\n");
695 /* free extra memory */
699 free_irq(ha->pcidev->irq, ha);
703 ips_released_controllers++;
706 /****************************************************************************/
708 /* Routine Name: ips_halt */
710 /* Routine Description: */
712 /* Perform cleanup when the system reboots */
714 /****************************************************************************/
716 ips_halt(struct notifier_block *nb, ulong event, void *buf)
722 if ((event != SYS_RESTART) && (event != SYS_HALT) &&
723 (event != SYS_POWER_OFF))
724 return (NOTIFY_DONE);
726 for (i = 0; i < ips_next_controller; i++) {
727 ha = (ips_ha_t *) ips_ha[i];
735 /* flush the cache on the controller */
736 scb = &ha->scbs[ha->max_cmds - 1];
738 ips_init_scb(ha, scb);
740 scb->timeout = ips_cmd_timeout;
741 scb->cdb[0] = IPS_CMD_FLUSH;
743 scb->cmd.flush_cache.op_code = IPS_CMD_FLUSH;
744 scb->cmd.flush_cache.command_id = IPS_COMMAND_ID(ha, scb);
745 scb->cmd.flush_cache.state = IPS_NORM_STATE;
746 scb->cmd.flush_cache.reserved = 0;
747 scb->cmd.flush_cache.reserved2 = 0;
748 scb->cmd.flush_cache.reserved3 = 0;
749 scb->cmd.flush_cache.reserved4 = 0;
751 IPS_PRINTK(KERN_WARNING, ha->pcidev, "Flushing Cache.\n");
754 if (ips_send_wait(ha, scb, ips_cmd_timeout, IPS_INTR_ON) ==
756 IPS_PRINTK(KERN_WARNING, ha->pcidev,
757 "Incomplete Flush.\n");
759 IPS_PRINTK(KERN_WARNING, ha->pcidev,
760 "Flushing Complete.\n");
766 /****************************************************************************/
768 /* Routine Name: ips_eh_abort */
770 /* Routine Description: */
772 /* Abort a command (using the new error code stuff) */
773 /* Note: this routine is called under the io_request_lock */
774 /****************************************************************************/
775 int ips_eh_abort(struct scsi_cmnd *SC)
778 ips_copp_wait_item_t *item;
780 struct Scsi_Host *host;
782 METHOD_TRACE("ips_eh_abort", 1);
787 host = SC->device->host;
788 ha = (ips_ha_t *) SC->device->host->hostdata;
796 spin_lock(host->host_lock);
798 /* See if the command is on the copp queue */
799 item = ha->copp_waitlist.head;
800 while ((item) && (item->scsi_cmd != SC))
805 ips_removeq_copp(&ha->copp_waitlist, item);
808 /* See if the command is on the wait queue */
809 } else if (ips_removeq_wait(&ha->scb_waitlist, SC)) {
810 /* command not sent yet */
813 /* command must have already been sent */
817 spin_unlock(host->host_lock);
821 /****************************************************************************/
823 /* Routine Name: ips_eh_reset */
825 /* Routine Description: */
827 /* Reset the controller (with new eh error code) */
829 /* NOTE: this routine is called under the io_request_lock spinlock */
831 /****************************************************************************/
832 static int __ips_eh_reset(struct scsi_cmnd *SC)
838 ips_copp_wait_item_t *item;
840 METHOD_TRACE("ips_eh_reset", 1);
847 DEBUG(1, "Reset called with NULL scsi command");
852 ha = (ips_ha_t *) SC->device->host->hostdata;
855 DEBUG(1, "Reset called with NULL ha struct");
863 /* See if the command is on the copp queue */
864 item = ha->copp_waitlist.head;
865 while ((item) && (item->scsi_cmd != SC))
870 ips_removeq_copp(&ha->copp_waitlist, item);
874 /* See if the command is on the wait queue */
875 if (ips_removeq_wait(&ha->scb_waitlist, SC)) {
876 /* command not sent yet */
880 /* An explanation for the casual observer: */
881 /* Part of the function of a RAID controller is automatic error */
882 /* detection and recovery. As such, the only problem that physically */
883 /* resetting an adapter will ever fix is when, for some reason, */
884 /* the driver is not successfully communicating with the adapter. */
885 /* Therefore, we will attempt to flush this adapter. If that succeeds, */
886 /* then there's no real purpose in a physical reset. This will complete */
887 /* much faster and avoids any problems that might be caused by a */
888 /* physical reset ( such as having to fail all the outstanding I/O's ). */
890 if (ha->ioctl_reset == 0) { /* IF Not an IOCTL Requested Reset */
891 scb = &ha->scbs[ha->max_cmds - 1];
893 ips_init_scb(ha, scb);
895 scb->timeout = ips_cmd_timeout;
896 scb->cdb[0] = IPS_CMD_FLUSH;
898 scb->cmd.flush_cache.op_code = IPS_CMD_FLUSH;
899 scb->cmd.flush_cache.command_id = IPS_COMMAND_ID(ha, scb);
900 scb->cmd.flush_cache.state = IPS_NORM_STATE;
901 scb->cmd.flush_cache.reserved = 0;
902 scb->cmd.flush_cache.reserved2 = 0;
903 scb->cmd.flush_cache.reserved3 = 0;
904 scb->cmd.flush_cache.reserved4 = 0;
906 /* Attempt the flush command */
907 ret = ips_send_wait(ha, scb, ips_cmd_timeout, IPS_INTR_IORL);
908 if (ret == IPS_SUCCESS) {
909 IPS_PRINTK(KERN_NOTICE, ha->pcidev,
910 "Reset Request - Flushed Cache\n");
915 /* Either we can't communicate with the adapter or it's an IOCTL request */
916 /* from a utility. A physical reset is needed at this point. */
918 ha->ioctl_reset = 0; /* Reset the IOCTL Requested Reset Flag */
921 * command must have already been sent
922 * reset the controller
924 IPS_PRINTK(KERN_NOTICE, ha->pcidev, "Resetting controller.\n");
925 ret = (*ha->func.reset) (ha);
928 struct scsi_cmnd *scsi_cmd;
930 IPS_PRINTK(KERN_NOTICE, ha->pcidev,
931 "Controller reset failed - controller now offline.\n");
933 /* Now fail all of the active commands */
934 DEBUG_VAR(1, "(%s%d) Failing active commands",
935 ips_name, ha->host_num);
937 while ((scb = ips_removeq_scb_head(&ha->scb_activelist))) {
938 scb->scsi_cmd->result = DID_ERROR << 16;
939 scsi_done(scb->scsi_cmd);
940 ips_freescb(ha, scb);
943 /* Now fail all of the pending commands */
944 DEBUG_VAR(1, "(%s%d) Failing pending commands",
945 ips_name, ha->host_num);
947 while ((scsi_cmd = ips_removeq_wait_head(&ha->scb_waitlist))) {
948 scsi_cmd->result = DID_ERROR;
956 if (!ips_clear_adapter(ha, IPS_INTR_IORL)) {
957 struct scsi_cmnd *scsi_cmd;
959 IPS_PRINTK(KERN_NOTICE, ha->pcidev,
960 "Controller reset failed - controller now offline.\n");
962 /* Now fail all of the active commands */
963 DEBUG_VAR(1, "(%s%d) Failing active commands",
964 ips_name, ha->host_num);
966 while ((scb = ips_removeq_scb_head(&ha->scb_activelist))) {
967 scb->scsi_cmd->result = DID_ERROR << 16;
968 scsi_done(scb->scsi_cmd);
969 ips_freescb(ha, scb);
972 /* Now fail all of the pending commands */
973 DEBUG_VAR(1, "(%s%d) Failing pending commands",
974 ips_name, ha->host_num);
976 while ((scsi_cmd = ips_removeq_wait_head(&ha->scb_waitlist))) {
977 scsi_cmd->result = DID_ERROR << 16;
986 if (le32_to_cpu(ha->subsys->param[3]) & 0x300000) {
987 ha->last_ffdc = ktime_get_real_seconds();
989 ips_ffdc_reset(ha, IPS_INTR_IORL);
992 /* Now fail all of the active commands */
993 DEBUG_VAR(1, "(%s%d) Failing active commands", ips_name, ha->host_num);
995 while ((scb = ips_removeq_scb_head(&ha->scb_activelist))) {
996 scb->scsi_cmd->result = DID_RESET << 16;
997 scsi_done(scb->scsi_cmd);
998 ips_freescb(ha, scb);
1001 /* Reset DCDB active command bits */
1002 for (i = 1; i < ha->nbus; i++)
1003 ha->dcdb_active[i - 1] = 0;
1005 /* Reset the number of active IOCTLs */
1008 ips_next(ha, IPS_INTR_IORL);
1011 #endif /* NO_IPS_RESET */
1015 static int ips_eh_reset(struct scsi_cmnd *SC)
1019 spin_lock_irq(SC->device->host->host_lock);
1020 rc = __ips_eh_reset(SC);
1021 spin_unlock_irq(SC->device->host->host_lock);
1026 /****************************************************************************/
1028 /* Routine Name: ips_queue */
1030 /* Routine Description: */
1032 /* Send a command to the controller */
1035 /* Linux obtains io_request_lock before calling this function */
1037 /****************************************************************************/
1038 static int ips_queue_lck(struct scsi_cmnd *SC)
1040 void (*done)(struct scsi_cmnd *) = scsi_done;
1044 METHOD_TRACE("ips_queue", 1);
1046 ha = (ips_ha_t *) SC->device->host->hostdata;
1054 if (ips_is_passthru(SC)) {
1055 if (ha->copp_waitlist.count == IPS_MAX_IOCTL_QUEUE) {
1056 SC->result = DID_BUS_BUSY << 16;
1061 } else if (ha->scb_waitlist.count == IPS_MAX_QUEUE) {
1062 SC->result = DID_BUS_BUSY << 16;
1068 DEBUG_VAR(2, "(%s%d): ips_queue: cmd 0x%X (%d %d %d)",
1072 SC->device->channel, SC->device->id, SC->device->lun);
1074 /* Check for command to initiator IDs */
1075 if ((scmd_channel(SC) > 0)
1076 && (scmd_id(SC) == ha->ha_id[scmd_channel(SC)])) {
1077 SC->result = DID_NO_CONNECT << 16;
1083 if (ips_is_passthru(SC)) {
1085 ips_copp_wait_item_t *scratch;
1087 /* A Reset IOCTL is only sent by the boot CD in extreme cases. */
1088 /* There can never be any system activity ( network or disk ), but check */
1089 /* anyway just as a good practice. */
1090 pt = (ips_passthru_t *) scsi_sglist(SC);
1091 if ((pt->CoppCP.cmd.reset.op_code == IPS_CMD_RESET_CHANNEL) &&
1092 (pt->CoppCP.cmd.reset.adapter_flag == 1)) {
1093 if (ha->scb_activelist.count != 0) {
1094 SC->result = DID_BUS_BUSY << 16;
1098 ha->ioctl_reset = 1; /* This reset request is from an IOCTL */
1100 SC->result = DID_OK << 16;
1105 /* allocate space for the scribble */
1106 scratch = kmalloc(sizeof (ips_copp_wait_item_t), GFP_ATOMIC);
1109 SC->result = DID_ERROR << 16;
1115 scratch->scsi_cmd = SC;
1116 scratch->next = NULL;
1118 ips_putq_copp_tail(&ha->copp_waitlist, scratch);
1120 ips_putq_wait_tail(&ha->scb_waitlist, SC);
1123 ips_next(ha, IPS_INTR_IORL);
1127 SC->result = DID_ERROR << 16;
1133 static DEF_SCSI_QCMD(ips_queue)
1135 /****************************************************************************/
1137 /* Routine Name: ips_biosparam */
1139 /* Routine Description: */
1141 /* Set bios geometry for the controller */
1143 /****************************************************************************/
1144 static int ips_biosparam(struct scsi_device *sdev, struct block_device *bdev,
1145 sector_t capacity, int geom[])
1147 ips_ha_t *ha = (ips_ha_t *) sdev->host->hostdata;
1152 METHOD_TRACE("ips_biosparam", 1);
1155 /* ?!?! host adater info invalid */
1161 if (!ips_read_adapter_status(ha, IPS_INTR_ON))
1162 /* ?!?! Enquiry command failed */
1165 if ((capacity > 0x400000) && ((ha->enq->ucMiscFlag & 0x8) == 0)) {
1166 heads = IPS_NORM_HEADS;
1167 sectors = IPS_NORM_SECTORS;
1169 heads = IPS_COMP_HEADS;
1170 sectors = IPS_COMP_SECTORS;
1173 cylinders = (unsigned long) capacity / (heads * sectors);
1175 DEBUG_VAR(2, "Geometry: heads: %d, sectors: %d, cylinders: %d",
1176 heads, sectors, cylinders);
1180 geom[2] = cylinders;
1185 /****************************************************************************/
1187 /* Routine Name: ips_slave_configure */
1189 /* Routine Description: */
1191 /* Set queue depths on devices once scan is complete */
1193 /****************************************************************************/
1195 ips_slave_configure(struct scsi_device * SDptr)
1200 ha = IPS_HA(SDptr->host);
1201 if (SDptr->tagged_supported && SDptr->type == TYPE_DISK) {
1202 min = ha->max_cmds / 2;
1203 if (ha->enq->ucLogDriveCount <= 2)
1204 min = ha->max_cmds - 1;
1205 scsi_change_queue_depth(SDptr, min);
1208 SDptr->skip_ms_page_8 = 1;
1209 SDptr->skip_ms_page_3f = 1;
1213 /****************************************************************************/
1215 /* Routine Name: do_ipsintr */
1217 /* Routine Description: */
1219 /* Wrapper for the interrupt handler */
1221 /****************************************************************************/
1223 do_ipsintr(int irq, void *dev_id)
1226 struct Scsi_Host *host;
1229 METHOD_TRACE("do_ipsintr", 2);
1231 ha = (ips_ha_t *) dev_id;
1234 host = ips_sh[ha->host_num];
1235 /* interrupt during initialization */
1237 (*ha->func.intr) (ha);
1241 spin_lock(host->host_lock);
1244 spin_unlock(host->host_lock);
1248 irqstatus = (*ha->func.intr) (ha);
1250 spin_unlock(host->host_lock);
1252 /* start the next command */
1253 ips_next(ha, IPS_INTR_ON);
1254 return IRQ_RETVAL(irqstatus);
1257 /****************************************************************************/
1259 /* Routine Name: ips_intr_copperhead */
1261 /* Routine Description: */
1263 /* Polling interrupt handler */
1265 /* ASSUMES interrupts are disabled */
1267 /****************************************************************************/
1269 ips_intr_copperhead(ips_ha_t * ha)
1276 METHOD_TRACE("ips_intr", 2);
1284 intrstatus = (*ha->func.isintr) (ha);
1288 * Unexpected/Shared interrupt
1297 intrstatus = (*ha->func.isintr) (ha);
1302 cstatus.value = (*ha->func.statupd) (ha);
1304 if (cstatus.fields.command_id > (IPS_MAX_CMDS - 1)) {
1305 /* Spurious Interrupt ? */
1309 ips_chkstatus(ha, &cstatus);
1310 scb = (ips_scb_t *) sp->scb_addr;
1313 * use the callback function to finish things up
1314 * NOTE: interrupts are OFF for this
1316 (*scb->callback) (ha, scb);
1321 /****************************************************************************/
1323 /* Routine Name: ips_intr_morpheus */
1325 /* Routine Description: */
1327 /* Polling interrupt handler */
1329 /* ASSUMES interrupts are disabled */
1331 /****************************************************************************/
1333 ips_intr_morpheus(ips_ha_t * ha)
1340 METHOD_TRACE("ips_intr_morpheus", 2);
1348 intrstatus = (*ha->func.isintr) (ha);
1352 * Unexpected/Shared interrupt
1361 intrstatus = (*ha->func.isintr) (ha);
1366 cstatus.value = (*ha->func.statupd) (ha);
1368 if (cstatus.value == 0xffffffff)
1369 /* No more to process */
1372 if (cstatus.fields.command_id > (IPS_MAX_CMDS - 1)) {
1373 IPS_PRINTK(KERN_WARNING, ha->pcidev,
1374 "Spurious interrupt; no ccb.\n");
1379 ips_chkstatus(ha, &cstatus);
1380 scb = (ips_scb_t *) sp->scb_addr;
1383 * use the callback function to finish things up
1384 * NOTE: interrupts are OFF for this
1386 (*scb->callback) (ha, scb);
1391 /****************************************************************************/
1393 /* Routine Name: ips_info */
1395 /* Routine Description: */
1397 /* Return info about the driver */
1399 /****************************************************************************/
1401 ips_info(struct Scsi_Host *SH)
1403 static char buffer[256];
1407 METHOD_TRACE("ips_info", 1);
1415 memset(bp, 0, sizeof (buffer));
1417 sprintf(bp, "%s%s%s Build %d", "IBM PCI ServeRAID ",
1418 IPS_VERSION_HIGH, IPS_VERSION_LOW, IPS_BUILD_IDENT);
1420 if (ha->ad_type > 0 && ha->ad_type <= MAX_ADAPTER_NAME) {
1422 strcat(bp, ips_adapter_name[ha->ad_type - 1]);
1430 ips_write_info(struct Scsi_Host *host, char *buffer, int length)
1433 ips_ha_t *ha = NULL;
1435 /* Find our host structure */
1436 for (i = 0; i < ips_next_controller; i++) {
1438 if (ips_sh[i] == host) {
1439 ha = (ips_ha_t *) ips_sh[i]->hostdata;
1452 ips_show_info(struct seq_file *m, struct Scsi_Host *host)
1455 ips_ha_t *ha = NULL;
1457 /* Find our host structure */
1458 for (i = 0; i < ips_next_controller; i++) {
1460 if (ips_sh[i] == host) {
1461 ha = (ips_ha_t *) ips_sh[i]->hostdata;
1470 return ips_host_info(ha, m);
1473 /*--------------------------------------------------------------------------*/
1474 /* Helper Functions */
1475 /*--------------------------------------------------------------------------*/
1477 /****************************************************************************/
1479 /* Routine Name: ips_is_passthru */
1481 /* Routine Description: */
1483 /* Determine if the specified SCSI command is really a passthru command */
1485 /****************************************************************************/
1486 static int ips_is_passthru(struct scsi_cmnd *SC)
1488 unsigned long flags;
1490 METHOD_TRACE("ips_is_passthru", 1);
1495 if ((SC->cmnd[0] == IPS_IOCTL_COMMAND) &&
1496 (SC->device->channel == 0) &&
1497 (SC->device->id == IPS_ADAPTER_ID) &&
1498 (SC->device->lun == 0) && scsi_sglist(SC)) {
1499 struct scatterlist *sg = scsi_sglist(SC);
1502 /* local_irq_save() protects the KM_IRQ0 address slot. */
1503 local_irq_save(flags);
1504 buffer = kmap_local_page(sg_page(sg)) + sg->offset;
1505 if (buffer && buffer[0] == 'C' && buffer[1] == 'O' &&
1506 buffer[2] == 'P' && buffer[3] == 'P') {
1507 kunmap_local(buffer);
1508 local_irq_restore(flags);
1511 kunmap_local(buffer);
1512 local_irq_restore(flags);
1517 /****************************************************************************/
1519 /* Routine Name: ips_alloc_passthru_buffer */
1521 /* Routine Description: */
1522 /* allocate a buffer large enough for the ioctl data if the ioctl buffer */
1523 /* is too small or doesn't exist */
1524 /****************************************************************************/
1526 ips_alloc_passthru_buffer(ips_ha_t * ha, int length)
1529 dma_addr_t dma_busaddr;
1531 if (ha->ioctl_data && length <= ha->ioctl_len)
1533 /* there is no buffer or it's not big enough, allocate a new one */
1534 bigger_buf = dma_alloc_coherent(&ha->pcidev->dev, length, &dma_busaddr,
1537 /* free the old memory */
1538 dma_free_coherent(&ha->pcidev->dev, ha->ioctl_len,
1539 ha->ioctl_data, ha->ioctl_busaddr);
1540 /* use the new memory */
1541 ha->ioctl_data = (char *) bigger_buf;
1542 ha->ioctl_len = length;
1543 ha->ioctl_busaddr = dma_busaddr;
1550 /****************************************************************************/
1552 /* Routine Name: ips_make_passthru */
1554 /* Routine Description: */
1556 /* Make a passthru command out of the info in the Scsi block */
1558 /****************************************************************************/
1560 ips_make_passthru(ips_ha_t *ha, struct scsi_cmnd *SC, ips_scb_t *scb, int intr)
1565 struct scatterlist *sg = scsi_sglist(SC);
1567 METHOD_TRACE("ips_make_passthru", 1);
1569 scsi_for_each_sg(SC, sg, scsi_sg_count(SC), i)
1570 length += sg->length;
1572 if (length < sizeof (ips_passthru_t)) {
1574 DEBUG_VAR(1, "(%s%d) Passthru structure wrong size",
1575 ips_name, ha->host_num);
1576 return (IPS_FAILURE);
1578 if (ips_alloc_passthru_buffer(ha, length)) {
1579 /* allocation failure! If ha->ioctl_data exists, use it to return
1580 some error codes. Return a failed command to the scsi layer. */
1581 if (ha->ioctl_data) {
1582 pt = (ips_passthru_t *) ha->ioctl_data;
1583 ips_scmd_buf_read(SC, pt, sizeof (ips_passthru_t));
1584 pt->BasicStatus = 0x0B;
1585 pt->ExtendedStatus = 0x00;
1586 ips_scmd_buf_write(SC, pt, sizeof (ips_passthru_t));
1590 ha->ioctl_datasize = length;
1592 ips_scmd_buf_read(SC, ha->ioctl_data, ha->ioctl_datasize);
1593 pt = (ips_passthru_t *) ha->ioctl_data;
1596 * Some notes about the passthru interface used
1598 * IF the scsi op_code == 0x0d then we assume
1599 * that the data came along with/goes with the
1600 * packet we received from the sg driver. In this
1601 * case the CmdBSize field of the pt structure is
1602 * used for the size of the buffer.
1605 switch (pt->CoppCmd) {
1607 memcpy(ha->ioctl_data + sizeof (ips_passthru_t),
1608 &ips_num_controllers, sizeof (int));
1609 ips_scmd_buf_write(SC, ha->ioctl_data,
1610 sizeof (ips_passthru_t) + sizeof (int));
1611 SC->result = DID_OK << 16;
1613 return (IPS_SUCCESS_IMM);
1615 case IPS_COPPUSRCMD:
1616 case IPS_COPPIOCCMD:
1617 if (SC->cmnd[0] == IPS_IOCTL_COMMAND) {
1618 if (length < (sizeof (ips_passthru_t) + pt->CmdBSize)) {
1621 "(%s%d) Passthru structure wrong size",
1622 ips_name, ha->host_num);
1624 return (IPS_FAILURE);
1627 if (ha->pcidev->device == IPS_DEVICEID_COPPERHEAD &&
1628 pt->CoppCP.cmd.flashfw.op_code ==
1629 IPS_CMD_RW_BIOSFW) {
1630 ret = ips_flash_copperhead(ha, pt, scb);
1631 ips_scmd_buf_write(SC, ha->ioctl_data,
1632 sizeof (ips_passthru_t));
1635 if (ips_usrcmd(ha, pt, scb))
1636 return (IPS_SUCCESS);
1638 return (IPS_FAILURE);
1645 return (IPS_FAILURE);
1648 /****************************************************************************/
1649 /* Routine Name: ips_flash_copperhead */
1650 /* Routine Description: */
1651 /* Flash the BIOS/FW on a Copperhead style controller */
1652 /****************************************************************************/
1654 ips_flash_copperhead(ips_ha_t * ha, ips_passthru_t * pt, ips_scb_t * scb)
1658 /* Trombone is the only copperhead that can do packet flash, but only
1659 * for firmware. No one said it had to make sense. */
1660 if (IPS_IS_TROMBONE(ha) && pt->CoppCP.cmd.flashfw.type == IPS_FW_IMAGE) {
1661 if (ips_usrcmd(ha, pt, scb))
1666 pt->BasicStatus = 0x0B;
1667 pt->ExtendedStatus = 0;
1668 scb->scsi_cmd->result = DID_OK << 16;
1669 /* IF it's OK to Use the "CD BOOT" Flash Buffer, then you can */
1670 /* avoid allocating a huge buffer per adapter ( which can fail ). */
1671 if (pt->CoppCP.cmd.flashfw.type == IPS_BIOS_IMAGE &&
1672 pt->CoppCP.cmd.flashfw.direction == IPS_ERASE_BIOS) {
1673 pt->BasicStatus = 0;
1674 return ips_flash_bios(ha, pt, scb);
1675 } else if (pt->CoppCP.cmd.flashfw.packet_num == 0) {
1676 if (ips_FlashData && !test_and_set_bit(0, &ips_FlashDataInUse)){
1677 ha->flash_data = ips_FlashData;
1678 ha->flash_busaddr = ips_flashbusaddr;
1679 ha->flash_len = PAGE_SIZE << 7;
1680 ha->flash_datasize = 0;
1681 } else if (!ha->flash_data) {
1682 datasize = pt->CoppCP.cmd.flashfw.total_packets *
1683 pt->CoppCP.cmd.flashfw.count;
1684 ha->flash_data = dma_alloc_coherent(&ha->pcidev->dev,
1685 datasize, &ha->flash_busaddr, GFP_KERNEL);
1686 if (!ha->flash_data){
1687 printk(KERN_WARNING "Unable to allocate a flash buffer\n");
1690 ha->flash_datasize = 0;
1691 ha->flash_len = datasize;
1695 if (pt->CoppCP.cmd.flashfw.count + ha->flash_datasize >
1697 ips_free_flash_copperhead(ha);
1698 IPS_PRINTK(KERN_WARNING, ha->pcidev,
1699 "failed size sanity check\n");
1703 if (!ha->flash_data)
1705 pt->BasicStatus = 0;
1706 memcpy(&ha->flash_data[ha->flash_datasize], pt + 1,
1707 pt->CoppCP.cmd.flashfw.count);
1708 ha->flash_datasize += pt->CoppCP.cmd.flashfw.count;
1709 if (pt->CoppCP.cmd.flashfw.packet_num ==
1710 pt->CoppCP.cmd.flashfw.total_packets - 1) {
1711 if (pt->CoppCP.cmd.flashfw.type == IPS_BIOS_IMAGE)
1712 return ips_flash_bios(ha, pt, scb);
1713 else if (pt->CoppCP.cmd.flashfw.type == IPS_FW_IMAGE)
1714 return ips_flash_firmware(ha, pt, scb);
1716 return IPS_SUCCESS_IMM;
1719 /****************************************************************************/
1720 /* Routine Name: ips_flash_bios */
1721 /* Routine Description: */
1722 /* flashes the bios of a copperhead adapter */
1723 /****************************************************************************/
1725 ips_flash_bios(ips_ha_t * ha, ips_passthru_t * pt, ips_scb_t * scb)
1728 if (pt->CoppCP.cmd.flashfw.type == IPS_BIOS_IMAGE &&
1729 pt->CoppCP.cmd.flashfw.direction == IPS_WRITE_BIOS) {
1730 if ((!ha->func.programbios) || (!ha->func.erasebios) ||
1731 (!ha->func.verifybios))
1733 if ((*ha->func.erasebios) (ha)) {
1735 "(%s%d) flash bios failed - unable to erase flash",
1736 ips_name, ha->host_num);
1739 if ((*ha->func.programbios) (ha,
1742 ha->flash_datasize -
1743 IPS_BIOS_HEADER, 0)) {
1745 "(%s%d) flash bios failed - unable to flash",
1746 ips_name, ha->host_num);
1749 if ((*ha->func.verifybios) (ha,
1752 ha->flash_datasize -
1753 IPS_BIOS_HEADER, 0)) {
1755 "(%s%d) flash bios failed - unable to verify flash",
1756 ips_name, ha->host_num);
1759 ips_free_flash_copperhead(ha);
1760 return IPS_SUCCESS_IMM;
1761 } else if (pt->CoppCP.cmd.flashfw.type == IPS_BIOS_IMAGE &&
1762 pt->CoppCP.cmd.flashfw.direction == IPS_ERASE_BIOS) {
1763 if (!ha->func.erasebios)
1765 if ((*ha->func.erasebios) (ha)) {
1767 "(%s%d) flash bios failed - unable to erase flash",
1768 ips_name, ha->host_num);
1771 return IPS_SUCCESS_IMM;
1774 pt->BasicStatus = 0x0B;
1775 pt->ExtendedStatus = 0x00;
1776 ips_free_flash_copperhead(ha);
1780 /****************************************************************************/
1782 /* Routine Name: ips_fill_scb_sg_single */
1784 /* Routine Description: */
1785 /* Fill in a single scb sg_list element from an address */
1786 /* return a -1 if a breakup occurred */
1787 /****************************************************************************/
1789 ips_fill_scb_sg_single(ips_ha_t * ha, dma_addr_t busaddr,
1790 ips_scb_t * scb, int indx, unsigned int e_len)
1795 if ((scb->data_len + e_len) > ha->max_xfer) {
1796 e_len = ha->max_xfer - scb->data_len;
1797 scb->breakup = indx;
1804 if (IPS_USE_ENH_SGLIST(ha)) {
1805 scb->sg_list.enh_list[indx].address_lo =
1806 cpu_to_le32(lower_32_bits(busaddr));
1807 scb->sg_list.enh_list[indx].address_hi =
1808 cpu_to_le32(upper_32_bits(busaddr));
1809 scb->sg_list.enh_list[indx].length = cpu_to_le32(e_len);
1811 scb->sg_list.std_list[indx].address =
1812 cpu_to_le32(lower_32_bits(busaddr));
1813 scb->sg_list.std_list[indx].length = cpu_to_le32(e_len);
1817 scb->data_len += e_len;
1821 /****************************************************************************/
1822 /* Routine Name: ips_flash_firmware */
1823 /* Routine Description: */
1824 /* flashes the firmware of a copperhead adapter */
1825 /****************************************************************************/
1827 ips_flash_firmware(ips_ha_t * ha, ips_passthru_t * pt, ips_scb_t * scb)
1829 IPS_SG_LIST sg_list;
1830 uint32_t cmd_busaddr;
1832 if (pt->CoppCP.cmd.flashfw.type == IPS_FW_IMAGE &&
1833 pt->CoppCP.cmd.flashfw.direction == IPS_WRITE_FW) {
1834 memset(&pt->CoppCP.cmd, 0, sizeof (IPS_HOST_COMMAND));
1835 pt->CoppCP.cmd.flashfw.op_code = IPS_CMD_DOWNLOAD;
1836 pt->CoppCP.cmd.flashfw.count = cpu_to_le32(ha->flash_datasize);
1838 pt->BasicStatus = 0x0B;
1839 pt->ExtendedStatus = 0x00;
1840 ips_free_flash_copperhead(ha);
1843 /* Save the S/G list pointer so it doesn't get clobbered */
1844 sg_list.list = scb->sg_list.list;
1845 cmd_busaddr = scb->scb_busaddr;
1846 /* copy in the CP */
1847 memcpy(&scb->cmd, &pt->CoppCP.cmd, sizeof (IPS_IOCTL_CMD));
1848 /* FIX stuff that might be wrong */
1849 scb->sg_list.list = sg_list.list;
1850 scb->scb_busaddr = cmd_busaddr;
1851 scb->bus = scb->scsi_cmd->device->channel;
1852 scb->target_id = scb->scsi_cmd->device->id;
1853 scb->lun = scb->scsi_cmd->device->lun;
1858 scb->callback = ipsintr_done;
1859 scb->timeout = ips_cmd_timeout;
1861 scb->data_len = ha->flash_datasize;
1863 dma_map_single(&ha->pcidev->dev, ha->flash_data, scb->data_len,
1865 scb->flags |= IPS_SCB_MAP_SINGLE;
1866 scb->cmd.flashfw.command_id = IPS_COMMAND_ID(ha, scb);
1867 scb->cmd.flashfw.buffer_addr = cpu_to_le32(scb->data_busaddr);
1869 scb->timeout = pt->TimeOut;
1870 scb->scsi_cmd->result = DID_OK << 16;
1874 /****************************************************************************/
1875 /* Routine Name: ips_free_flash_copperhead */
1876 /* Routine Description: */
1877 /* release the memory resources used to hold the flash image */
1878 /****************************************************************************/
1880 ips_free_flash_copperhead(ips_ha_t * ha)
1882 if (ha->flash_data == ips_FlashData)
1883 test_and_clear_bit(0, &ips_FlashDataInUse);
1884 else if (ha->flash_data)
1885 dma_free_coherent(&ha->pcidev->dev, ha->flash_len,
1886 ha->flash_data, ha->flash_busaddr);
1887 ha->flash_data = NULL;
1890 /****************************************************************************/
1892 /* Routine Name: ips_usrcmd */
1894 /* Routine Description: */
1896 /* Process a user command and make it ready to send */
1898 /****************************************************************************/
1900 ips_usrcmd(ips_ha_t * ha, ips_passthru_t * pt, ips_scb_t * scb)
1902 IPS_SG_LIST sg_list;
1903 uint32_t cmd_busaddr;
1905 METHOD_TRACE("ips_usrcmd", 1);
1907 if ((!scb) || (!pt) || (!ha))
1910 /* Save the S/G list pointer so it doesn't get clobbered */
1911 sg_list.list = scb->sg_list.list;
1912 cmd_busaddr = scb->scb_busaddr;
1913 /* copy in the CP */
1914 memcpy(&scb->cmd, &pt->CoppCP.cmd, sizeof (IPS_IOCTL_CMD));
1915 memcpy(&scb->dcdb, &pt->CoppCP.dcdb, sizeof (IPS_DCDB_TABLE));
1917 /* FIX stuff that might be wrong */
1918 scb->sg_list.list = sg_list.list;
1919 scb->scb_busaddr = cmd_busaddr;
1920 scb->bus = scb->scsi_cmd->device->channel;
1921 scb->target_id = scb->scsi_cmd->device->id;
1922 scb->lun = scb->scsi_cmd->device->lun;
1927 scb->callback = ipsintr_done;
1928 scb->timeout = ips_cmd_timeout;
1929 scb->cmd.basic_io.command_id = IPS_COMMAND_ID(ha, scb);
1931 /* we don't support DCDB/READ/WRITE Scatter Gather */
1932 if ((scb->cmd.basic_io.op_code == IPS_CMD_READ_SG) ||
1933 (scb->cmd.basic_io.op_code == IPS_CMD_WRITE_SG) ||
1934 (scb->cmd.basic_io.op_code == IPS_CMD_DCDB_SG))
1938 scb->data_len = pt->CmdBSize;
1939 scb->data_busaddr = ha->ioctl_busaddr + sizeof (ips_passthru_t);
1941 scb->data_busaddr = 0L;
1944 if (scb->cmd.dcdb.op_code == IPS_CMD_DCDB)
1945 scb->cmd.dcdb.dcdb_address = cpu_to_le32(scb->scb_busaddr +
1946 (unsigned long) &scb->
1948 (unsigned long) scb);
1951 if (scb->cmd.dcdb.op_code == IPS_CMD_DCDB)
1952 scb->dcdb.buffer_pointer =
1953 cpu_to_le32(scb->data_busaddr);
1955 scb->cmd.basic_io.sg_addr =
1956 cpu_to_le32(scb->data_busaddr);
1961 scb->timeout = pt->TimeOut;
1963 if (pt->TimeOut <= 10)
1964 scb->dcdb.cmd_attribute |= IPS_TIMEOUT10;
1965 else if (pt->TimeOut <= 60)
1966 scb->dcdb.cmd_attribute |= IPS_TIMEOUT60;
1968 scb->dcdb.cmd_attribute |= IPS_TIMEOUT20M;
1971 /* assume success */
1972 scb->scsi_cmd->result = DID_OK << 16;
1978 /****************************************************************************/
1980 /* Routine Name: ips_cleanup_passthru */
1982 /* Routine Description: */
1984 /* Cleanup after a passthru command */
1986 /****************************************************************************/
1988 ips_cleanup_passthru(ips_ha_t * ha, ips_scb_t * scb)
1992 METHOD_TRACE("ips_cleanup_passthru", 1);
1994 if ((!scb) || (!scb->scsi_cmd) || (!scsi_sglist(scb->scsi_cmd))) {
1995 DEBUG_VAR(1, "(%s%d) couldn't cleanup after passthru",
1996 ips_name, ha->host_num);
2000 pt = (ips_passthru_t *) ha->ioctl_data;
2002 /* Copy data back to the user */
2003 if (scb->cmd.dcdb.op_code == IPS_CMD_DCDB) /* Copy DCDB Back to Caller's Area */
2004 memcpy(&pt->CoppCP.dcdb, &scb->dcdb, sizeof (IPS_DCDB_TABLE));
2006 pt->BasicStatus = scb->basic_status;
2007 pt->ExtendedStatus = scb->extended_status;
2008 pt->AdapterType = ha->ad_type;
2010 if (ha->pcidev->device == IPS_DEVICEID_COPPERHEAD &&
2011 (scb->cmd.flashfw.op_code == IPS_CMD_DOWNLOAD ||
2012 scb->cmd.flashfw.op_code == IPS_CMD_RW_BIOSFW))
2013 ips_free_flash_copperhead(ha);
2015 ips_scmd_buf_write(scb->scsi_cmd, ha->ioctl_data, ha->ioctl_datasize);
2018 /****************************************************************************/
2020 /* Routine Name: ips_host_info */
2022 /* Routine Description: */
2024 /* The passthru interface for the driver */
2026 /****************************************************************************/
2028 ips_host_info(ips_ha_t *ha, struct seq_file *m)
2030 METHOD_TRACE("ips_host_info", 1);
2032 seq_puts(m, "\nIBM ServeRAID General Information:\n\n");
2034 if ((le32_to_cpu(ha->nvram->signature) == IPS_NVRAM_P5_SIG) &&
2035 (le16_to_cpu(ha->nvram->adapter_type) != 0))
2036 seq_printf(m, "\tController Type : %s\n",
2037 ips_adapter_name[ha->ad_type - 1]);
2039 seq_puts(m, "\tController Type : Unknown\n");
2043 "\tIO region : 0x%x (%d bytes)\n",
2044 ha->io_addr, ha->io_len);
2048 "\tMemory region : 0x%x (%d bytes)\n",
2049 ha->mem_addr, ha->mem_len);
2051 "\tShared memory address : 0x%lx\n",
2052 (unsigned long)ha->mem_ptr);
2055 seq_printf(m, "\tIRQ number : %d\n", ha->pcidev->irq);
2057 /* For the Next 3 lines Check for Binary 0 at the end and don't include it if it's there. */
2058 /* That keeps everything happy for "text" operations on the proc file. */
2060 if (le32_to_cpu(ha->nvram->signature) == IPS_NVRAM_P5_SIG) {
2061 if (ha->nvram->bios_low[3] == 0) {
2063 "\tBIOS Version : %c%c%c%c%c%c%c\n",
2064 ha->nvram->bios_high[0], ha->nvram->bios_high[1],
2065 ha->nvram->bios_high[2], ha->nvram->bios_high[3],
2066 ha->nvram->bios_low[0], ha->nvram->bios_low[1],
2067 ha->nvram->bios_low[2]);
2071 "\tBIOS Version : %c%c%c%c%c%c%c%c\n",
2072 ha->nvram->bios_high[0], ha->nvram->bios_high[1],
2073 ha->nvram->bios_high[2], ha->nvram->bios_high[3],
2074 ha->nvram->bios_low[0], ha->nvram->bios_low[1],
2075 ha->nvram->bios_low[2], ha->nvram->bios_low[3]);
2080 if (ha->enq->CodeBlkVersion[7] == 0) {
2082 "\tFirmware Version : %c%c%c%c%c%c%c\n",
2083 ha->enq->CodeBlkVersion[0], ha->enq->CodeBlkVersion[1],
2084 ha->enq->CodeBlkVersion[2], ha->enq->CodeBlkVersion[3],
2085 ha->enq->CodeBlkVersion[4], ha->enq->CodeBlkVersion[5],
2086 ha->enq->CodeBlkVersion[6]);
2089 "\tFirmware Version : %c%c%c%c%c%c%c%c\n",
2090 ha->enq->CodeBlkVersion[0], ha->enq->CodeBlkVersion[1],
2091 ha->enq->CodeBlkVersion[2], ha->enq->CodeBlkVersion[3],
2092 ha->enq->CodeBlkVersion[4], ha->enq->CodeBlkVersion[5],
2093 ha->enq->CodeBlkVersion[6], ha->enq->CodeBlkVersion[7]);
2096 if (ha->enq->BootBlkVersion[7] == 0) {
2098 "\tBoot Block Version : %c%c%c%c%c%c%c\n",
2099 ha->enq->BootBlkVersion[0], ha->enq->BootBlkVersion[1],
2100 ha->enq->BootBlkVersion[2], ha->enq->BootBlkVersion[3],
2101 ha->enq->BootBlkVersion[4], ha->enq->BootBlkVersion[5],
2102 ha->enq->BootBlkVersion[6]);
2105 "\tBoot Block Version : %c%c%c%c%c%c%c%c\n",
2106 ha->enq->BootBlkVersion[0], ha->enq->BootBlkVersion[1],
2107 ha->enq->BootBlkVersion[2], ha->enq->BootBlkVersion[3],
2108 ha->enq->BootBlkVersion[4], ha->enq->BootBlkVersion[5],
2109 ha->enq->BootBlkVersion[6], ha->enq->BootBlkVersion[7]);
2112 seq_printf(m, "\tDriver Version : %s%s\n",
2113 IPS_VERSION_HIGH, IPS_VERSION_LOW);
2115 seq_printf(m, "\tDriver Build : %d\n",
2118 seq_printf(m, "\tMax Physical Devices : %d\n",
2119 ha->enq->ucMaxPhysicalDevices);
2120 seq_printf(m, "\tMax Active Commands : %d\n",
2122 seq_printf(m, "\tCurrent Queued Commands : %d\n",
2123 ha->scb_waitlist.count);
2124 seq_printf(m, "\tCurrent Active Commands : %d\n",
2125 ha->scb_activelist.count - ha->num_ioctl);
2126 seq_printf(m, "\tCurrent Queued PT Commands : %d\n",
2127 ha->copp_waitlist.count);
2128 seq_printf(m, "\tCurrent Active PT Commands : %d\n",
2136 /****************************************************************************/
2138 /* Routine Name: ips_identify_controller */
2140 /* Routine Description: */
2142 /* Identify this controller */
2144 /****************************************************************************/
2146 ips_identify_controller(ips_ha_t * ha)
2148 METHOD_TRACE("ips_identify_controller", 1);
2150 switch (ha->pcidev->device) {
2151 case IPS_DEVICEID_COPPERHEAD:
2152 if (ha->pcidev->revision <= IPS_REVID_SERVERAID) {
2153 ha->ad_type = IPS_ADTYPE_SERVERAID;
2154 } else if (ha->pcidev->revision == IPS_REVID_SERVERAID2) {
2155 ha->ad_type = IPS_ADTYPE_SERVERAID2;
2156 } else if (ha->pcidev->revision == IPS_REVID_NAVAJO) {
2157 ha->ad_type = IPS_ADTYPE_NAVAJO;
2158 } else if ((ha->pcidev->revision == IPS_REVID_SERVERAID2)
2159 && (ha->slot_num == 0)) {
2160 ha->ad_type = IPS_ADTYPE_KIOWA;
2161 } else if ((ha->pcidev->revision >= IPS_REVID_CLARINETP1) &&
2162 (ha->pcidev->revision <= IPS_REVID_CLARINETP3)) {
2163 if (ha->enq->ucMaxPhysicalDevices == 15)
2164 ha->ad_type = IPS_ADTYPE_SERVERAID3L;
2166 ha->ad_type = IPS_ADTYPE_SERVERAID3;
2167 } else if ((ha->pcidev->revision >= IPS_REVID_TROMBONE32) &&
2168 (ha->pcidev->revision <= IPS_REVID_TROMBONE64)) {
2169 ha->ad_type = IPS_ADTYPE_SERVERAID4H;
2173 case IPS_DEVICEID_MORPHEUS:
2174 switch (ha->pcidev->subsystem_device) {
2175 case IPS_SUBDEVICEID_4L:
2176 ha->ad_type = IPS_ADTYPE_SERVERAID4L;
2179 case IPS_SUBDEVICEID_4M:
2180 ha->ad_type = IPS_ADTYPE_SERVERAID4M;
2183 case IPS_SUBDEVICEID_4MX:
2184 ha->ad_type = IPS_ADTYPE_SERVERAID4MX;
2187 case IPS_SUBDEVICEID_4LX:
2188 ha->ad_type = IPS_ADTYPE_SERVERAID4LX;
2191 case IPS_SUBDEVICEID_5I2:
2192 ha->ad_type = IPS_ADTYPE_SERVERAID5I2;
2195 case IPS_SUBDEVICEID_5I1:
2196 ha->ad_type = IPS_ADTYPE_SERVERAID5I1;
2202 case IPS_DEVICEID_MARCO:
2203 switch (ha->pcidev->subsystem_device) {
2204 case IPS_SUBDEVICEID_6M:
2205 ha->ad_type = IPS_ADTYPE_SERVERAID6M;
2207 case IPS_SUBDEVICEID_6I:
2208 ha->ad_type = IPS_ADTYPE_SERVERAID6I;
2210 case IPS_SUBDEVICEID_7k:
2211 ha->ad_type = IPS_ADTYPE_SERVERAID7k;
2213 case IPS_SUBDEVICEID_7M:
2214 ha->ad_type = IPS_ADTYPE_SERVERAID7M;
2221 /****************************************************************************/
2223 /* Routine Name: ips_get_bios_version */
2225 /* Routine Description: */
2227 /* Get the BIOS revision number */
2229 /****************************************************************************/
2231 ips_get_bios_version(ips_ha_t * ha, int intr)
2240 METHOD_TRACE("ips_get_bios_version", 1);
2245 memcpy(ha->bios_version, " ?", 8);
2247 if (ha->pcidev->device == IPS_DEVICEID_COPPERHEAD) {
2248 if (IPS_USE_MEMIO(ha)) {
2249 /* Memory Mapped I/O */
2252 writel(0, ha->mem_ptr + IPS_REG_FLAP);
2253 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
2254 udelay(25); /* 25 us */
2256 if (readb(ha->mem_ptr + IPS_REG_FLDP) != 0x55)
2259 writel(1, ha->mem_ptr + IPS_REG_FLAP);
2260 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
2261 udelay(25); /* 25 us */
2263 if (readb(ha->mem_ptr + IPS_REG_FLDP) != 0xAA)
2266 /* Get Major version */
2267 writel(0x1FF, ha->mem_ptr + IPS_REG_FLAP);
2268 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
2269 udelay(25); /* 25 us */
2271 major = readb(ha->mem_ptr + IPS_REG_FLDP);
2273 /* Get Minor version */
2274 writel(0x1FE, ha->mem_ptr + IPS_REG_FLAP);
2275 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
2276 udelay(25); /* 25 us */
2277 minor = readb(ha->mem_ptr + IPS_REG_FLDP);
2279 /* Get SubMinor version */
2280 writel(0x1FD, ha->mem_ptr + IPS_REG_FLAP);
2281 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
2282 udelay(25); /* 25 us */
2283 subminor = readb(ha->mem_ptr + IPS_REG_FLDP);
2286 /* Programmed I/O */
2289 outl(0, ha->io_addr + IPS_REG_FLAP);
2290 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
2291 udelay(25); /* 25 us */
2293 if (inb(ha->io_addr + IPS_REG_FLDP) != 0x55)
2296 outl(1, ha->io_addr + IPS_REG_FLAP);
2297 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
2298 udelay(25); /* 25 us */
2300 if (inb(ha->io_addr + IPS_REG_FLDP) != 0xAA)
2303 /* Get Major version */
2304 outl(0x1FF, ha->io_addr + IPS_REG_FLAP);
2305 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
2306 udelay(25); /* 25 us */
2308 major = inb(ha->io_addr + IPS_REG_FLDP);
2310 /* Get Minor version */
2311 outl(0x1FE, ha->io_addr + IPS_REG_FLAP);
2312 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
2313 udelay(25); /* 25 us */
2315 minor = inb(ha->io_addr + IPS_REG_FLDP);
2317 /* Get SubMinor version */
2318 outl(0x1FD, ha->io_addr + IPS_REG_FLAP);
2319 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
2320 udelay(25); /* 25 us */
2322 subminor = inb(ha->io_addr + IPS_REG_FLDP);
2326 /* Morpheus Family - Send Command to the card */
2328 buffer = ha->ioctl_data;
2330 memset(buffer, 0, 0x1000);
2332 scb = &ha->scbs[ha->max_cmds - 1];
2334 ips_init_scb(ha, scb);
2336 scb->timeout = ips_cmd_timeout;
2337 scb->cdb[0] = IPS_CMD_RW_BIOSFW;
2339 scb->cmd.flashfw.op_code = IPS_CMD_RW_BIOSFW;
2340 scb->cmd.flashfw.command_id = IPS_COMMAND_ID(ha, scb);
2341 scb->cmd.flashfw.type = 1;
2342 scb->cmd.flashfw.direction = 0;
2343 scb->cmd.flashfw.count = cpu_to_le32(0x800);
2344 scb->cmd.flashfw.total_packets = 1;
2345 scb->cmd.flashfw.packet_num = 0;
2346 scb->data_len = 0x1000;
2347 scb->cmd.flashfw.buffer_addr = ha->ioctl_busaddr;
2349 /* issue the command */
2351 ips_send_wait(ha, scb, ips_cmd_timeout,
2352 intr)) == IPS_FAILURE)
2353 || (ret == IPS_SUCCESS_IMM)
2354 || ((scb->basic_status & IPS_GSC_STATUS_MASK) > 1)) {
2355 /* Error occurred */
2360 if ((buffer[0xC0] == 0x55) && (buffer[0xC1] == 0xAA)) {
2361 major = buffer[0x1ff + 0xC0]; /* Offset 0x1ff after the header (0xc0) */
2362 minor = buffer[0x1fe + 0xC0]; /* Offset 0x1fe after the header (0xc0) */
2363 subminor = buffer[0x1fd + 0xC0]; /* Offset 0x1fd after the header (0xc0) */
2369 ha->bios_version[0] = hex_asc_upper_hi(major);
2370 ha->bios_version[1] = '.';
2371 ha->bios_version[2] = hex_asc_upper_lo(major);
2372 ha->bios_version[3] = hex_asc_upper_lo(subminor);
2373 ha->bios_version[4] = '.';
2374 ha->bios_version[5] = hex_asc_upper_hi(minor);
2375 ha->bios_version[6] = hex_asc_upper_lo(minor);
2376 ha->bios_version[7] = 0;
2379 /****************************************************************************/
2381 /* Routine Name: ips_hainit */
2383 /* Routine Description: */
2385 /* Initialize the controller */
2387 /* NOTE: Assumes to be called from with a lock */
2389 /****************************************************************************/
2391 ips_hainit(ips_ha_t * ha)
2395 METHOD_TRACE("ips_hainit", 1);
2400 if (ha->func.statinit)
2401 (*ha->func.statinit) (ha);
2403 if (ha->func.enableint)
2404 (*ha->func.enableint) (ha);
2407 ha->reset_count = 1;
2408 ha->last_ffdc = ktime_get_real_seconds();
2409 ips_ffdc_reset(ha, IPS_INTR_IORL);
2411 if (!ips_read_config(ha, IPS_INTR_IORL)) {
2412 IPS_PRINTK(KERN_WARNING, ha->pcidev,
2413 "unable to read config from controller.\n");
2418 if (!ips_read_adapter_status(ha, IPS_INTR_IORL)) {
2419 IPS_PRINTK(KERN_WARNING, ha->pcidev,
2420 "unable to read controller status.\n");
2425 /* Identify this controller */
2426 ips_identify_controller(ha);
2428 if (!ips_read_subsystem_parameters(ha, IPS_INTR_IORL)) {
2429 IPS_PRINTK(KERN_WARNING, ha->pcidev,
2430 "unable to read subsystem parameters.\n");
2435 /* write nvram user page 5 */
2436 if (!ips_write_driver_status(ha, IPS_INTR_IORL)) {
2437 IPS_PRINTK(KERN_WARNING, ha->pcidev,
2438 "unable to write driver info to controller.\n");
2443 /* If there are Logical Drives and a Reset Occurred, then an EraseStripeLock is Needed */
2444 if ((ha->conf->ucLogDriveCount > 0) && (ha->requires_esl == 1))
2445 ips_clear_adapter(ha, IPS_INTR_IORL);
2447 /* set limits on SID, LUN, BUS */
2448 ha->ntargets = IPS_MAX_TARGETS + 1;
2450 ha->nbus = (ha->enq->ucMaxPhysicalDevices / IPS_MAX_TARGETS) + 1;
2452 switch (ha->conf->logical_drive[0].ucStripeSize) {
2454 ha->max_xfer = 0x10000;
2458 ha->max_xfer = 0x20000;
2462 ha->max_xfer = 0x40000;
2467 ha->max_xfer = 0x80000;
2471 /* setup max concurrent commands */
2472 if (le32_to_cpu(ha->subsys->param[4]) & 0x1) {
2473 /* Use the new method */
2474 ha->max_cmds = ha->enq->ucConcurrentCmdCount;
2476 /* use the old method */
2477 switch (ha->conf->logical_drive[0].ucStripeSize) {
2497 /* Limit the Active Commands on a Lite Adapter */
2498 if ((ha->ad_type == IPS_ADTYPE_SERVERAID3L) ||
2499 (ha->ad_type == IPS_ADTYPE_SERVERAID4L) ||
2500 (ha->ad_type == IPS_ADTYPE_SERVERAID4LX)) {
2501 if ((ha->max_cmds > MaxLiteCmds) && (MaxLiteCmds))
2502 ha->max_cmds = MaxLiteCmds;
2505 /* set controller IDs */
2506 ha->ha_id[0] = IPS_ADAPTER_ID;
2507 for (i = 1; i < ha->nbus; i++) {
2508 ha->ha_id[i] = ha->conf->init_id[i - 1] & 0x1f;
2509 ha->dcdb_active[i - 1] = 0;
2515 /****************************************************************************/
2517 /* Routine Name: ips_next */
2519 /* Routine Description: */
2521 /* Take the next command off the queue and send it to the controller */
2523 /****************************************************************************/
2525 ips_next(ips_ha_t * ha, int intr)
2528 struct scsi_cmnd *SC;
2529 struct scsi_cmnd *p;
2530 struct scsi_cmnd *q;
2531 ips_copp_wait_item_t *item;
2533 struct Scsi_Host *host;
2534 METHOD_TRACE("ips_next", 1);
2538 host = ips_sh[ha->host_num];
2540 * Block access to the queue function so
2541 * this command won't time out
2543 if (intr == IPS_INTR_ON)
2544 spin_lock(host->host_lock);
2546 if ((ha->subsys->param[3] & 0x300000)
2547 && (ha->scb_activelist.count == 0)) {
2548 time64_t now = ktime_get_real_seconds();
2549 if (now - ha->last_ffdc > IPS_SECS_8HOURS) {
2550 ha->last_ffdc = now;
2556 * Send passthru commands
2557 * These have priority over normal I/O
2558 * but shouldn't affect performance too much
2559 * since we limit the number that can be active
2560 * on the card at any one time
2562 while ((ha->num_ioctl < IPS_MAX_IOCTL) &&
2563 (ha->copp_waitlist.head) && (scb = ips_getscb(ha))) {
2565 item = ips_removeq_copp_head(&ha->copp_waitlist);
2567 if (intr == IPS_INTR_ON)
2568 spin_unlock(host->host_lock);
2569 scb->scsi_cmd = item->scsi_cmd;
2572 ret = ips_make_passthru(ha, scb->scsi_cmd, scb, intr);
2574 if (intr == IPS_INTR_ON)
2575 spin_lock(host->host_lock);
2578 if (scb->scsi_cmd) {
2579 scb->scsi_cmd->result = DID_ERROR << 16;
2580 scsi_done(scb->scsi_cmd);
2583 ips_freescb(ha, scb);
2585 case IPS_SUCCESS_IMM:
2586 if (scb->scsi_cmd) {
2587 scb->scsi_cmd->result = DID_OK << 16;
2588 scsi_done(scb->scsi_cmd);
2591 ips_freescb(ha, scb);
2597 if (ret != IPS_SUCCESS) {
2602 ret = ips_send_cmd(ha, scb);
2604 if (ret == IPS_SUCCESS)
2605 ips_putq_scb_head(&ha->scb_activelist, scb);
2611 if (scb->scsi_cmd) {
2612 scb->scsi_cmd->result = DID_ERROR << 16;
2615 ips_freescb(ha, scb);
2617 case IPS_SUCCESS_IMM:
2618 ips_freescb(ha, scb);
2627 * Send "Normal" I/O commands
2630 p = ha->scb_waitlist.head;
2631 while ((p) && (scb = ips_getscb(ha))) {
2632 if ((scmd_channel(p) > 0)
2634 dcdb_active[scmd_channel(p) -
2635 1] & (1 << scmd_id(p)))) {
2636 ips_freescb(ha, scb);
2637 p = (struct scsi_cmnd *) p->host_scribble;
2642 SC = ips_removeq_wait(&ha->scb_waitlist, q);
2644 if (intr == IPS_INTR_ON)
2645 spin_unlock(host->host_lock); /* Unlock HA after command is taken off queue */
2647 SC->result = DID_OK;
2648 SC->host_scribble = NULL;
2650 scb->target_id = SC->device->id;
2651 scb->lun = SC->device->lun;
2652 scb->bus = SC->device->channel;
2656 scb->callback = ipsintr_done;
2657 scb->timeout = ips_cmd_timeout;
2658 memset(&scb->cmd, 0, 16);
2660 /* copy in the CDB */
2661 memcpy(scb->cdb, SC->cmnd, SC->cmd_len);
2663 scb->sg_count = scsi_dma_map(SC);
2664 BUG_ON(scb->sg_count < 0);
2665 if (scb->sg_count) {
2666 struct scatterlist *sg;
2669 scb->flags |= IPS_SCB_MAP_SG;
2671 scsi_for_each_sg(SC, sg, scb->sg_count, i) {
2672 if (ips_fill_scb_sg_single
2673 (ha, sg_dma_address(sg), scb, i,
2674 sg_dma_len(sg)) < 0)
2677 scb->dcdb.transfer_length = scb->data_len;
2679 scb->data_busaddr = 0L;
2682 scb->dcdb.transfer_length = 0;
2685 scb->dcdb.cmd_attribute =
2686 ips_command_direction[scb->scsi_cmd->cmnd[0]];
2688 /* Allow a WRITE BUFFER Command to Have no Data */
2689 /* This is Used by Tape Flash Utilites */
2690 if ((scb->scsi_cmd->cmnd[0] == WRITE_BUFFER) &&
2691 (scb->data_len == 0))
2692 scb->dcdb.cmd_attribute = 0;
2694 if (!(scb->dcdb.cmd_attribute & 0x3))
2695 scb->dcdb.transfer_length = 0;
2697 if (scb->data_len >= IPS_MAX_XFER) {
2698 scb->dcdb.cmd_attribute |= IPS_TRANSFER64K;
2699 scb->dcdb.transfer_length = 0;
2701 if (intr == IPS_INTR_ON)
2702 spin_lock(host->host_lock);
2704 ret = ips_send_cmd(ha, scb);
2708 ips_putq_scb_head(&ha->scb_activelist, scb);
2711 if (scb->scsi_cmd) {
2712 scb->scsi_cmd->result = DID_ERROR << 16;
2713 scsi_done(scb->scsi_cmd);
2717 ha->dcdb_active[scb->bus - 1] &=
2718 ~(1 << scb->target_id);
2720 ips_freescb(ha, scb);
2722 case IPS_SUCCESS_IMM:
2724 scsi_done(scb->scsi_cmd);
2727 ha->dcdb_active[scb->bus - 1] &=
2728 ~(1 << scb->target_id);
2730 ips_freescb(ha, scb);
2736 p = (struct scsi_cmnd *) p->host_scribble;
2740 if (intr == IPS_INTR_ON)
2741 spin_unlock(host->host_lock);
2744 /****************************************************************************/
2746 /* Routine Name: ips_putq_scb_head */
2748 /* Routine Description: */
2750 /* Add an item to the head of the queue */
2752 /* ASSUMED to be called from within the HA lock */
2754 /****************************************************************************/
2756 ips_putq_scb_head(ips_scb_queue_t * queue, ips_scb_t * item)
2758 METHOD_TRACE("ips_putq_scb_head", 1);
2763 item->q_next = queue->head;
2772 /****************************************************************************/
2774 /* Routine Name: ips_removeq_scb_head */
2776 /* Routine Description: */
2778 /* Remove the head of the queue */
2780 /* ASSUMED to be called from within the HA lock */
2782 /****************************************************************************/
2784 ips_removeq_scb_head(ips_scb_queue_t * queue)
2788 METHOD_TRACE("ips_removeq_scb_head", 1);
2796 queue->head = item->q_next;
2797 item->q_next = NULL;
2799 if (queue->tail == item)
2807 /****************************************************************************/
2809 /* Routine Name: ips_removeq_scb */
2811 /* Routine Description: */
2813 /* Remove an item from a queue */
2815 /* ASSUMED to be called from within the HA lock */
2817 /****************************************************************************/
2819 ips_removeq_scb(ips_scb_queue_t * queue, ips_scb_t * item)
2823 METHOD_TRACE("ips_removeq_scb", 1);
2828 if (item == queue->head) {
2829 return (ips_removeq_scb_head(queue));
2834 while ((p) && (item != p->q_next))
2839 p->q_next = item->q_next;
2844 item->q_next = NULL;
2853 /****************************************************************************/
2855 /* Routine Name: ips_putq_wait_tail */
2857 /* Routine Description: */
2859 /* Add an item to the tail of the queue */
2861 /* ASSUMED to be called from within the HA lock */
2863 /****************************************************************************/
2864 static void ips_putq_wait_tail(ips_wait_queue_entry_t *queue, struct scsi_cmnd *item)
2866 METHOD_TRACE("ips_putq_wait_tail", 1);
2871 item->host_scribble = NULL;
2874 queue->tail->host_scribble = (char *) item;
2884 /****************************************************************************/
2886 /* Routine Name: ips_removeq_wait_head */
2888 /* Routine Description: */
2890 /* Remove the head of the queue */
2892 /* ASSUMED to be called from within the HA lock */
2894 /****************************************************************************/
2895 static struct scsi_cmnd *ips_removeq_wait_head(ips_wait_queue_entry_t *queue)
2897 struct scsi_cmnd *item;
2899 METHOD_TRACE("ips_removeq_wait_head", 1);
2907 queue->head = (struct scsi_cmnd *) item->host_scribble;
2908 item->host_scribble = NULL;
2910 if (queue->tail == item)
2918 /****************************************************************************/
2920 /* Routine Name: ips_removeq_wait */
2922 /* Routine Description: */
2924 /* Remove an item from a queue */
2926 /* ASSUMED to be called from within the HA lock */
2928 /****************************************************************************/
2929 static struct scsi_cmnd *ips_removeq_wait(ips_wait_queue_entry_t *queue,
2930 struct scsi_cmnd *item)
2932 struct scsi_cmnd *p;
2934 METHOD_TRACE("ips_removeq_wait", 1);
2939 if (item == queue->head) {
2940 return (ips_removeq_wait_head(queue));
2945 while ((p) && (item != (struct scsi_cmnd *) p->host_scribble))
2946 p = (struct scsi_cmnd *) p->host_scribble;
2950 p->host_scribble = item->host_scribble;
2952 if (!item->host_scribble)
2955 item->host_scribble = NULL;
2964 /****************************************************************************/
2966 /* Routine Name: ips_putq_copp_tail */
2968 /* Routine Description: */
2970 /* Add an item to the tail of the queue */
2972 /* ASSUMED to be called from within the HA lock */
2974 /****************************************************************************/
2976 ips_putq_copp_tail(ips_copp_queue_t * queue, ips_copp_wait_item_t * item)
2978 METHOD_TRACE("ips_putq_copp_tail", 1);
2986 queue->tail->next = item;
2996 /****************************************************************************/
2998 /* Routine Name: ips_removeq_copp_head */
3000 /* Routine Description: */
3002 /* Remove the head of the queue */
3004 /* ASSUMED to be called from within the HA lock */
3006 /****************************************************************************/
3007 static ips_copp_wait_item_t *
3008 ips_removeq_copp_head(ips_copp_queue_t * queue)
3010 ips_copp_wait_item_t *item;
3012 METHOD_TRACE("ips_removeq_copp_head", 1);
3020 queue->head = item->next;
3023 if (queue->tail == item)
3031 /****************************************************************************/
3033 /* Routine Name: ips_removeq_copp */
3035 /* Routine Description: */
3037 /* Remove an item from a queue */
3039 /* ASSUMED to be called from within the HA lock */
3041 /****************************************************************************/
3042 static ips_copp_wait_item_t *
3043 ips_removeq_copp(ips_copp_queue_t * queue, ips_copp_wait_item_t * item)
3045 ips_copp_wait_item_t *p;
3047 METHOD_TRACE("ips_removeq_copp", 1);
3052 if (item == queue->head) {
3053 return (ips_removeq_copp_head(queue));
3058 while ((p) && (item != p->next))
3063 p->next = item->next;
3077 /****************************************************************************/
3079 /* Routine Name: ipsintr_blocking */
3081 /* Routine Description: */
3083 /* Finalize an interrupt for internal commands */
3085 /****************************************************************************/
3087 ipsintr_blocking(ips_ha_t * ha, ips_scb_t * scb)
3089 METHOD_TRACE("ipsintr_blocking", 2);
3091 ips_freescb(ha, scb);
3092 if (ha->waitflag && ha->cmd_in_progress == scb->cdb[0]) {
3093 ha->waitflag = false;
3099 /****************************************************************************/
3101 /* Routine Name: ipsintr_done */
3103 /* Routine Description: */
3105 /* Finalize an interrupt for non-internal commands */
3107 /****************************************************************************/
3109 ipsintr_done(ips_ha_t * ha, ips_scb_t * scb)
3111 METHOD_TRACE("ipsintr_done", 2);
3114 IPS_PRINTK(KERN_WARNING, ha->pcidev,
3115 "Spurious interrupt; scb NULL.\n");
3120 if (scb->scsi_cmd == NULL) {
3121 /* unexpected interrupt */
3122 IPS_PRINTK(KERN_WARNING, ha->pcidev,
3123 "Spurious interrupt; scsi_cmd not set.\n");
3131 /****************************************************************************/
3133 /* Routine Name: ips_done */
3135 /* Routine Description: */
3137 /* Do housekeeping on completed commands */
3138 /* ASSUMED to be called form within the request lock */
3139 /****************************************************************************/
3141 ips_done(ips_ha_t * ha, ips_scb_t * scb)
3145 METHOD_TRACE("ips_done", 1);
3150 if ((scb->scsi_cmd) && (ips_is_passthru(scb->scsi_cmd))) {
3151 ips_cleanup_passthru(ha, scb);
3155 * Check to see if this command had too much
3156 * data and had to be broke up. If so, queue
3157 * the rest of the data and continue.
3159 if ((scb->breakup) || (scb->sg_break)) {
3160 struct scatterlist *sg;
3161 int i, sg_dma_index, ips_sg_index = 0;
3163 /* we had a data breakup */
3166 sg = scsi_sglist(scb->scsi_cmd);
3168 /* Spin forward to last dma chunk */
3169 sg_dma_index = scb->breakup;
3170 for (i = 0; i < scb->breakup; i++)
3173 /* Take care of possible partial on last chunk */
3174 ips_fill_scb_sg_single(ha,
3176 scb, ips_sg_index++,
3179 for (; sg_dma_index < scsi_sg_count(scb->scsi_cmd);
3180 sg_dma_index++, sg = sg_next(sg)) {
3181 if (ips_fill_scb_sg_single
3184 scb, ips_sg_index++,
3185 sg_dma_len(sg)) < 0)
3189 scb->dcdb.transfer_length = scb->data_len;
3190 scb->dcdb.cmd_attribute |=
3191 ips_command_direction[scb->scsi_cmd->cmnd[0]];
3193 if (!(scb->dcdb.cmd_attribute & 0x3))
3194 scb->dcdb.transfer_length = 0;
3196 if (scb->data_len >= IPS_MAX_XFER) {
3197 scb->dcdb.cmd_attribute |= IPS_TRANSFER64K;
3198 scb->dcdb.transfer_length = 0;
3201 ret = ips_send_cmd(ha, scb);
3205 if (scb->scsi_cmd) {
3206 scb->scsi_cmd->result = DID_ERROR << 16;
3207 scsi_done(scb->scsi_cmd);
3210 ips_freescb(ha, scb);
3212 case IPS_SUCCESS_IMM:
3213 if (scb->scsi_cmd) {
3214 scb->scsi_cmd->result = DID_ERROR << 16;
3215 scsi_done(scb->scsi_cmd);
3218 ips_freescb(ha, scb);
3226 } /* end if passthru */
3229 ha->dcdb_active[scb->bus - 1] &= ~(1 << scb->target_id);
3232 scsi_done(scb->scsi_cmd);
3234 ips_freescb(ha, scb);
3237 /****************************************************************************/
3239 /* Routine Name: ips_map_status */
3241 /* Routine Description: */
3243 /* Map Controller Error codes to Linux Error Codes */
3245 /****************************************************************************/
3247 ips_map_status(ips_ha_t * ha, ips_scb_t * scb, ips_stat_t * sp)
3251 uint32_t transfer_len;
3252 IPS_DCDB_TABLE_TAPE *tapeDCDB;
3253 IPS_SCSI_INQ_DATA inquiryData;
3255 METHOD_TRACE("ips_map_status", 1);
3259 "(%s%d) Physical device error (%d %d %d): %x %x, Sense Key: %x, ASC: %x, ASCQ: %x",
3260 ips_name, ha->host_num,
3261 scb->scsi_cmd->device->channel,
3262 scb->scsi_cmd->device->id, scb->scsi_cmd->device->lun,
3263 scb->basic_status, scb->extended_status,
3264 scb->extended_status ==
3265 IPS_ERR_CKCOND ? scb->dcdb.sense_info[2] & 0xf : 0,
3266 scb->extended_status ==
3267 IPS_ERR_CKCOND ? scb->dcdb.sense_info[12] : 0,
3268 scb->extended_status ==
3269 IPS_ERR_CKCOND ? scb->dcdb.sense_info[13] : 0);
3272 /* default driver error */
3273 errcode = DID_ERROR;
3276 switch (scb->basic_status & IPS_GSC_STATUS_MASK) {
3277 case IPS_CMD_TIMEOUT:
3278 errcode = DID_TIME_OUT;
3281 case IPS_INVAL_OPCO:
3282 case IPS_INVAL_CMD_BLK:
3283 case IPS_INVAL_PARM_BLK:
3285 case IPS_CMD_CMPLT_WERROR:
3288 case IPS_PHYS_DRV_ERROR:
3289 switch (scb->extended_status) {
3290 case IPS_ERR_SEL_TO:
3292 errcode = DID_NO_CONNECT;
3296 case IPS_ERR_OU_RUN:
3297 if ((scb->cmd.dcdb.op_code == IPS_CMD_EXTENDED_DCDB) ||
3298 (scb->cmd.dcdb.op_code ==
3299 IPS_CMD_EXTENDED_DCDB_SG)) {
3300 tapeDCDB = (IPS_DCDB_TABLE_TAPE *) & scb->dcdb;
3301 transfer_len = tapeDCDB->transfer_length;
3304 (uint32_t) scb->dcdb.transfer_length;
3307 if ((scb->bus) && (transfer_len < scb->data_len)) {
3308 /* Underrun - set default to no error */
3311 /* Restrict access to physical DASD */
3312 if (scb->scsi_cmd->cmnd[0] == INQUIRY) {
3313 ips_scmd_buf_read(scb->scsi_cmd,
3314 &inquiryData, sizeof (inquiryData));
3315 if ((inquiryData.DeviceType & 0x1f) == TYPE_DISK) {
3316 errcode = DID_TIME_OUT;
3321 errcode = DID_ERROR;
3325 case IPS_ERR_RECOVERY:
3326 /* don't fail recovered errors */
3332 case IPS_ERR_HOST_RESET:
3333 case IPS_ERR_DEV_RESET:
3334 errcode = DID_RESET;
3337 case IPS_ERR_CKCOND:
3339 if ((scb->cmd.dcdb.op_code ==
3340 IPS_CMD_EXTENDED_DCDB)
3341 || (scb->cmd.dcdb.op_code ==
3342 IPS_CMD_EXTENDED_DCDB_SG)) {
3344 (IPS_DCDB_TABLE_TAPE *) & scb->dcdb;
3345 memcpy_and_pad(scb->scsi_cmd->sense_buffer,
3346 SCSI_SENSE_BUFFERSIZE,
3347 tapeDCDB->sense_info,
3348 sizeof(tapeDCDB->sense_info), 0);
3350 memcpy_and_pad(scb->scsi_cmd->sense_buffer,
3351 SCSI_SENSE_BUFFERSIZE,
3352 scb->dcdb.sense_info,
3353 sizeof(scb->dcdb.sense_info), 0);
3355 device_error = 2; /* check condition */
3363 errcode = DID_ERROR;
3369 scb->scsi_cmd->result = device_error | (errcode << 16);
3374 /****************************************************************************/
3376 /* Routine Name: ips_send_wait */
3378 /* Routine Description: */
3380 /* Send a command to the controller and wait for it to return */
3382 /* The FFDC Time Stamp use this function for the callback, but doesn't */
3383 /* actually need to wait. */
3384 /****************************************************************************/
3386 ips_send_wait(ips_ha_t * ha, ips_scb_t * scb, int timeout, int intr)
3390 METHOD_TRACE("ips_send_wait", 1);
3392 if (intr != IPS_FFDC) { /* Won't be Waiting if this is a Time Stamp */
3393 ha->waitflag = true;
3394 ha->cmd_in_progress = scb->cdb[0];
3396 scb->callback = ipsintr_blocking;
3397 ret = ips_send_cmd(ha, scb);
3399 if ((ret == IPS_FAILURE) || (ret == IPS_SUCCESS_IMM))
3402 if (intr != IPS_FFDC) /* Don't Wait around if this is a Time Stamp */
3403 ret = ips_wait(ha, timeout, intr);
3408 /****************************************************************************/
3410 /* Routine Name: ips_scmd_buf_write */
3412 /* Routine Description: */
3413 /* Write data to struct scsi_cmnd request_buffer at proper offsets */
3414 /****************************************************************************/
3416 ips_scmd_buf_write(struct scsi_cmnd *scmd, void *data, unsigned int count)
3418 unsigned long flags;
3420 local_irq_save(flags);
3421 scsi_sg_copy_from_buffer(scmd, data, count);
3422 local_irq_restore(flags);
3425 /****************************************************************************/
3427 /* Routine Name: ips_scmd_buf_read */
3429 /* Routine Description: */
3430 /* Copy data from a struct scsi_cmnd to a new, linear buffer */
3431 /****************************************************************************/
3433 ips_scmd_buf_read(struct scsi_cmnd *scmd, void *data, unsigned int count)
3435 unsigned long flags;
3437 local_irq_save(flags);
3438 scsi_sg_copy_to_buffer(scmd, data, count);
3439 local_irq_restore(flags);
3442 /****************************************************************************/
3444 /* Routine Name: ips_send_cmd */
3446 /* Routine Description: */
3448 /* Map SCSI commands to ServeRAID commands for logical drives */
3450 /****************************************************************************/
3452 ips_send_cmd(ips_ha_t * ha, ips_scb_t * scb)
3457 IPS_DCDB_TABLE_TAPE *tapeDCDB;
3460 METHOD_TRACE("ips_send_cmd", 1);
3464 if (!scb->scsi_cmd) {
3465 /* internal command */
3468 /* Controller commands can't be issued */
3469 /* to real devices -- fail them */
3470 if (ha->waitflag && ha->cmd_in_progress == scb->cdb[0])
3471 ha->waitflag = false;
3475 } else if ((scb->bus == 0) && (!ips_is_passthru(scb->scsi_cmd))) {
3476 /* command to logical bus -- interpret */
3477 ret = IPS_SUCCESS_IMM;
3479 switch (scb->scsi_cmd->cmnd[0]) {
3480 case ALLOW_MEDIUM_REMOVAL:
3483 case WRITE_FILEMARKS:
3485 scb->scsi_cmd->result = DID_ERROR << 16;
3489 scb->scsi_cmd->result = DID_OK << 16;
3492 case TEST_UNIT_READY:
3494 if (scb->target_id == IPS_ADAPTER_ID) {
3496 * Either we have a TUR
3497 * or we have a SCSI inquiry
3499 if (scb->scsi_cmd->cmnd[0] == TEST_UNIT_READY)
3500 scb->scsi_cmd->result = DID_OK << 16;
3502 if (scb->scsi_cmd->cmnd[0] == INQUIRY) {
3503 IPS_SCSI_INQ_DATA inquiry;
3506 sizeof (IPS_SCSI_INQ_DATA));
3508 inquiry.DeviceType =
3509 IPS_SCSI_INQ_TYPE_PROCESSOR;
3510 inquiry.DeviceTypeQualifier =
3511 IPS_SCSI_INQ_LU_CONNECTED;
3512 inquiry.Version = IPS_SCSI_INQ_REV2;
3513 inquiry.ResponseDataFormat =
3514 IPS_SCSI_INQ_RD_REV2;
3515 inquiry.AdditionalLength = 31;
3517 IPS_SCSI_INQ_Address16;
3519 IPS_SCSI_INQ_WBus16 |
3521 memcpy(inquiry.VendorId, "IBM ",
3523 memcpy(inquiry.ProductId,
3525 memcpy(inquiry.ProductRevisionLevel,
3528 ips_scmd_buf_write(scb->scsi_cmd,
3532 scb->scsi_cmd->result = DID_OK << 16;
3535 scb->cmd.logical_info.op_code = IPS_CMD_GET_LD_INFO;
3536 scb->cmd.logical_info.command_id = IPS_COMMAND_ID(ha, scb);
3537 scb->cmd.logical_info.reserved = 0;
3538 scb->cmd.logical_info.reserved2 = 0;
3539 scb->data_len = sizeof (IPS_LD_INFO);
3540 scb->data_busaddr = ha->logical_drive_info_dma_addr;
3542 scb->cmd.logical_info.buffer_addr = scb->data_busaddr;
3549 ips_reqsen(ha, scb);
3550 scb->scsi_cmd->result = DID_OK << 16;
3556 scb->cmd.basic_io.op_code =
3557 (scb->scsi_cmd->cmnd[0] ==
3558 READ_6) ? IPS_CMD_READ : IPS_CMD_WRITE;
3559 scb->cmd.basic_io.enhanced_sg = 0;
3560 scb->cmd.basic_io.sg_addr =
3561 cpu_to_le32(scb->data_busaddr);
3563 scb->cmd.basic_io.op_code =
3564 (scb->scsi_cmd->cmnd[0] ==
3565 READ_6) ? IPS_CMD_READ_SG :
3567 scb->cmd.basic_io.enhanced_sg =
3568 IPS_USE_ENH_SGLIST(ha) ? 0xFF : 0;
3569 scb->cmd.basic_io.sg_addr =
3570 cpu_to_le32(scb->sg_busaddr);
3573 scb->cmd.basic_io.segment_4G = 0;
3574 scb->cmd.basic_io.command_id = IPS_COMMAND_ID(ha, scb);
3575 scb->cmd.basic_io.log_drv = scb->target_id;
3576 scb->cmd.basic_io.sg_count = scb->sg_len;
3578 if (scb->cmd.basic_io.lba)
3579 le32_add_cpu(&scb->cmd.basic_io.lba,
3580 le16_to_cpu(scb->cmd.basic_io.
3583 scb->cmd.basic_io.lba =
3585 cmnd[1] & 0x1f) << 16) | (scb->scsi_cmd->
3587 (scb->scsi_cmd->cmnd[3]));
3589 scb->cmd.basic_io.sector_count =
3590 cpu_to_le16(scb->data_len / IPS_BLKSIZE);
3592 if (le16_to_cpu(scb->cmd.basic_io.sector_count) == 0)
3593 scb->cmd.basic_io.sector_count =
3602 scb->cmd.basic_io.op_code =
3603 (scb->scsi_cmd->cmnd[0] ==
3604 READ_10) ? IPS_CMD_READ : IPS_CMD_WRITE;
3605 scb->cmd.basic_io.enhanced_sg = 0;
3606 scb->cmd.basic_io.sg_addr =
3607 cpu_to_le32(scb->data_busaddr);
3609 scb->cmd.basic_io.op_code =
3610 (scb->scsi_cmd->cmnd[0] ==
3611 READ_10) ? IPS_CMD_READ_SG :
3613 scb->cmd.basic_io.enhanced_sg =
3614 IPS_USE_ENH_SGLIST(ha) ? 0xFF : 0;
3615 scb->cmd.basic_io.sg_addr =
3616 cpu_to_le32(scb->sg_busaddr);
3619 scb->cmd.basic_io.segment_4G = 0;
3620 scb->cmd.basic_io.command_id = IPS_COMMAND_ID(ha, scb);
3621 scb->cmd.basic_io.log_drv = scb->target_id;
3622 scb->cmd.basic_io.sg_count = scb->sg_len;
3624 if (scb->cmd.basic_io.lba)
3625 le32_add_cpu(&scb->cmd.basic_io.lba,
3626 le16_to_cpu(scb->cmd.basic_io.
3629 scb->cmd.basic_io.lba =
3630 ((scb->scsi_cmd->cmnd[2] << 24) | (scb->
3634 (scb->scsi_cmd->cmnd[4] << 8) | scb->
3637 scb->cmd.basic_io.sector_count =
3638 cpu_to_le16(scb->data_len / IPS_BLKSIZE);
3640 if (cpu_to_le16(scb->cmd.basic_io.sector_count) == 0) {
3642 * This is a null condition
3643 * we don't have to do anything
3646 scb->scsi_cmd->result = DID_OK << 16;
3654 scb->scsi_cmd->result = DID_OK << 16;
3658 scb->cmd.basic_io.op_code = IPS_CMD_ENQUIRY;
3659 scb->cmd.basic_io.command_id = IPS_COMMAND_ID(ha, scb);
3660 scb->cmd.basic_io.segment_4G = 0;
3661 scb->cmd.basic_io.enhanced_sg = 0;
3662 scb->data_len = sizeof (*ha->enq);
3663 scb->cmd.basic_io.sg_addr = ha->enq_busaddr;
3668 scb->cmd.logical_info.op_code = IPS_CMD_GET_LD_INFO;
3669 scb->cmd.logical_info.command_id = IPS_COMMAND_ID(ha, scb);
3670 scb->cmd.logical_info.reserved = 0;
3671 scb->cmd.logical_info.reserved2 = 0;
3672 scb->cmd.logical_info.reserved3 = 0;
3673 scb->data_len = sizeof (IPS_LD_INFO);
3674 scb->data_busaddr = ha->logical_drive_info_dma_addr;
3676 scb->cmd.logical_info.buffer_addr = scb->data_busaddr;
3680 case SEND_DIAGNOSTIC:
3681 case REASSIGN_BLOCKS:
3685 case READ_DEFECT_DATA:
3688 scb->scsi_cmd->result = DID_OK << 16;
3692 /* Set the Return Info to appear like the Command was */
3693 /* attempted, a Check Condition occurred, and Sense */
3694 /* Data indicating an Invalid CDB OpCode is returned. */
3695 sp = (char *) scb->scsi_cmd->sense_buffer;
3697 sp[0] = 0x70; /* Error Code */
3698 sp[2] = ILLEGAL_REQUEST; /* Sense Key 5 Illegal Req. */
3699 sp[7] = 0x0A; /* Additional Sense Length */
3700 sp[12] = 0x20; /* ASC = Invalid OpCode */
3701 sp[13] = 0x00; /* ASCQ */
3703 device_error = 2; /* Indicate Check Condition */
3704 scb->scsi_cmd->result = device_error | (DID_OK << 16);
3709 if (ret == IPS_SUCCESS_IMM)
3715 /* If we already know the Device is Not there, no need to attempt a Command */
3716 /* This also protects an NT FailOver Controller from getting CDB's sent to it */
3717 if (ha->conf->dev[scb->bus - 1][scb->target_id].ucState == 0) {
3718 scb->scsi_cmd->result = DID_NO_CONNECT << 16;
3719 return (IPS_SUCCESS_IMM);
3722 ha->dcdb_active[scb->bus - 1] |= (1 << scb->target_id);
3723 scb->cmd.dcdb.command_id = IPS_COMMAND_ID(ha, scb);
3724 scb->cmd.dcdb.dcdb_address = cpu_to_le32(scb->scb_busaddr +
3725 (unsigned long) &scb->
3727 (unsigned long) scb);
3728 scb->cmd.dcdb.reserved = 0;
3729 scb->cmd.dcdb.reserved2 = 0;
3730 scb->cmd.dcdb.reserved3 = 0;
3731 scb->cmd.dcdb.segment_4G = 0;
3732 scb->cmd.dcdb.enhanced_sg = 0;
3734 TimeOut = scsi_cmd_to_rq(scb->scsi_cmd)->timeout;
3736 if (ha->subsys->param[4] & 0x00100000) { /* If NEW Tape DCDB is Supported */
3738 scb->cmd.dcdb.op_code = IPS_CMD_EXTENDED_DCDB;
3740 scb->cmd.dcdb.op_code =
3741 IPS_CMD_EXTENDED_DCDB_SG;
3742 scb->cmd.dcdb.enhanced_sg =
3743 IPS_USE_ENH_SGLIST(ha) ? 0xFF : 0;
3746 tapeDCDB = (IPS_DCDB_TABLE_TAPE *) & scb->dcdb; /* Use Same Data Area as Old DCDB Struct */
3747 tapeDCDB->device_address =
3748 ((scb->bus - 1) << 4) | scb->target_id;
3749 tapeDCDB->cmd_attribute |= IPS_DISCONNECT_ALLOWED;
3750 tapeDCDB->cmd_attribute &= ~IPS_TRANSFER64K; /* Always Turn OFF 64K Size Flag */
3753 if (TimeOut < (10 * HZ))
3754 tapeDCDB->cmd_attribute |= IPS_TIMEOUT10; /* TimeOut is 10 Seconds */
3755 else if (TimeOut < (60 * HZ))
3756 tapeDCDB->cmd_attribute |= IPS_TIMEOUT60; /* TimeOut is 60 Seconds */
3757 else if (TimeOut < (1200 * HZ))
3758 tapeDCDB->cmd_attribute |= IPS_TIMEOUT20M; /* TimeOut is 20 Minutes */
3761 tapeDCDB->cdb_length = scb->scsi_cmd->cmd_len;
3762 tapeDCDB->reserved_for_LUN = 0;
3763 tapeDCDB->transfer_length = scb->data_len;
3764 if (scb->cmd.dcdb.op_code == IPS_CMD_EXTENDED_DCDB_SG)
3765 tapeDCDB->buffer_pointer =
3766 cpu_to_le32(scb->sg_busaddr);
3768 tapeDCDB->buffer_pointer =
3769 cpu_to_le32(scb->data_busaddr);
3770 tapeDCDB->sg_count = scb->sg_len;
3771 tapeDCDB->sense_length = sizeof (tapeDCDB->sense_info);
3772 tapeDCDB->scsi_status = 0;
3773 tapeDCDB->reserved = 0;
3774 memcpy(tapeDCDB->scsi_cdb, scb->scsi_cmd->cmnd,
3775 scb->scsi_cmd->cmd_len);
3778 scb->cmd.dcdb.op_code = IPS_CMD_DCDB;
3780 scb->cmd.dcdb.op_code = IPS_CMD_DCDB_SG;
3781 scb->cmd.dcdb.enhanced_sg =
3782 IPS_USE_ENH_SGLIST(ha) ? 0xFF : 0;
3785 scb->dcdb.device_address =
3786 ((scb->bus - 1) << 4) | scb->target_id;
3787 scb->dcdb.cmd_attribute |= IPS_DISCONNECT_ALLOWED;
3790 if (TimeOut < (10 * HZ))
3791 scb->dcdb.cmd_attribute |= IPS_TIMEOUT10; /* TimeOut is 10 Seconds */
3792 else if (TimeOut < (60 * HZ))
3793 scb->dcdb.cmd_attribute |= IPS_TIMEOUT60; /* TimeOut is 60 Seconds */
3794 else if (TimeOut < (1200 * HZ))
3795 scb->dcdb.cmd_attribute |= IPS_TIMEOUT20M; /* TimeOut is 20 Minutes */
3798 scb->dcdb.transfer_length = scb->data_len;
3799 if (scb->dcdb.cmd_attribute & IPS_TRANSFER64K)
3800 scb->dcdb.transfer_length = 0;
3801 if (scb->cmd.dcdb.op_code == IPS_CMD_DCDB_SG)
3802 scb->dcdb.buffer_pointer =
3803 cpu_to_le32(scb->sg_busaddr);
3805 scb->dcdb.buffer_pointer =
3806 cpu_to_le32(scb->data_busaddr);
3807 scb->dcdb.cdb_length = scb->scsi_cmd->cmd_len;
3808 scb->dcdb.sense_length = sizeof (scb->dcdb.sense_info);
3809 scb->dcdb.sg_count = scb->sg_len;
3810 scb->dcdb.reserved = 0;
3811 memcpy(scb->dcdb.scsi_cdb, scb->scsi_cmd->cmnd,
3812 scb->scsi_cmd->cmd_len);
3813 scb->dcdb.scsi_status = 0;
3814 scb->dcdb.reserved2[0] = 0;
3815 scb->dcdb.reserved2[1] = 0;
3816 scb->dcdb.reserved2[2] = 0;
3820 return ((*ha->func.issue) (ha, scb));
3823 /****************************************************************************/
3825 /* Routine Name: ips_chk_status */
3827 /* Routine Description: */
3829 /* Check the status of commands to logical drives */
3830 /* Assumed to be called with the HA lock */
3831 /****************************************************************************/
3833 ips_chkstatus(ips_ha_t * ha, IPS_STATUS * pstatus)
3837 uint8_t basic_status;
3840 IPS_SCSI_INQ_DATA inquiryData;
3842 METHOD_TRACE("ips_chkstatus", 1);
3844 scb = &ha->scbs[pstatus->fields.command_id];
3845 scb->basic_status = basic_status =
3846 pstatus->fields.basic_status & IPS_BASIC_STATUS_MASK;
3847 scb->extended_status = ext_status = pstatus->fields.extended_status;
3850 sp->residue_len = 0;
3851 sp->scb_addr = (void *) scb;
3853 /* Remove the item from the active queue */
3854 ips_removeq_scb(&ha->scb_activelist, scb);
3857 /* internal commands are handled in do_ipsintr */
3860 DEBUG_VAR(2, "(%s%d) ips_chkstatus: cmd 0x%X id %d (%d %d %d)",
3864 scb->cmd.basic_io.command_id,
3865 scb->bus, scb->target_id, scb->lun);
3867 if ((scb->scsi_cmd) && (ips_is_passthru(scb->scsi_cmd)))
3868 /* passthru - just returns the raw result */
3873 if (((basic_status & IPS_GSC_STATUS_MASK) == IPS_CMD_SUCCESS) ||
3874 ((basic_status & IPS_GSC_STATUS_MASK) == IPS_CMD_RECOVERED_ERROR)) {
3876 if (scb->bus == 0) {
3877 if ((basic_status & IPS_GSC_STATUS_MASK) ==
3878 IPS_CMD_RECOVERED_ERROR) {
3880 "(%s%d) Recovered Logical Drive Error OpCode: %x, BSB: %x, ESB: %x",
3881 ips_name, ha->host_num,
3882 scb->cmd.basic_io.op_code,
3883 basic_status, ext_status);
3886 switch (scb->scsi_cmd->cmnd[0]) {
3887 case ALLOW_MEDIUM_REMOVAL:
3890 case WRITE_FILEMARKS:
3892 errcode = DID_ERROR;
3898 case TEST_UNIT_READY:
3899 if (!ips_online(ha, scb)) {
3900 errcode = DID_TIME_OUT;
3905 if (ips_online(ha, scb)) {
3906 ips_inquiry(ha, scb);
3908 errcode = DID_TIME_OUT;
3913 ips_reqsen(ha, scb);
3925 if (!ips_online(ha, scb)
3926 || !ips_msense(ha, scb)) {
3927 errcode = DID_ERROR;
3932 if (ips_online(ha, scb))
3935 errcode = DID_TIME_OUT;
3939 case SEND_DIAGNOSTIC:
3940 case REASSIGN_BLOCKS:
3944 errcode = DID_ERROR;
3949 case READ_DEFECT_DATA:
3955 errcode = DID_ERROR;
3958 scb->scsi_cmd->result = errcode << 16;
3959 } else { /* bus == 0 */
3960 /* restrict access to physical drives */
3961 if (scb->scsi_cmd->cmnd[0] == INQUIRY) {
3962 ips_scmd_buf_read(scb->scsi_cmd,
3963 &inquiryData, sizeof (inquiryData));
3964 if ((inquiryData.DeviceType & 0x1f) == TYPE_DISK)
3965 scb->scsi_cmd->result = DID_TIME_OUT << 16;
3968 } else { /* recovered error / success */
3969 if (scb->bus == 0) {
3971 "(%s%d) Unrecovered Logical Drive Error OpCode: %x, BSB: %x, ESB: %x",
3972 ips_name, ha->host_num,
3973 scb->cmd.basic_io.op_code, basic_status,
3977 ips_map_status(ha, scb, sp);
3981 /****************************************************************************/
3983 /* Routine Name: ips_online */
3985 /* Routine Description: */
3987 /* Determine if a logical drive is online */
3989 /****************************************************************************/
3991 ips_online(ips_ha_t * ha, ips_scb_t * scb)
3993 METHOD_TRACE("ips_online", 1);
3995 if (scb->target_id >= IPS_MAX_LD)
3998 if ((scb->basic_status & IPS_GSC_STATUS_MASK) > 1) {
3999 memset(ha->logical_drive_info, 0, sizeof (IPS_LD_INFO));
4003 if (ha->logical_drive_info->drive_info[scb->target_id].state !=
4005 && ha->logical_drive_info->drive_info[scb->target_id].state !=
4007 && ha->logical_drive_info->drive_info[scb->target_id].state !=
4009 && ha->logical_drive_info->drive_info[scb->target_id].state !=
4016 /****************************************************************************/
4018 /* Routine Name: ips_inquiry */
4020 /* Routine Description: */
4022 /* Simulate an inquiry command to a logical drive */
4024 /****************************************************************************/
4026 ips_inquiry(ips_ha_t * ha, ips_scb_t * scb)
4028 IPS_SCSI_INQ_DATA inquiry;
4030 METHOD_TRACE("ips_inquiry", 1);
4032 memset(&inquiry, 0, sizeof (IPS_SCSI_INQ_DATA));
4034 inquiry.DeviceType = IPS_SCSI_INQ_TYPE_DASD;
4035 inquiry.DeviceTypeQualifier = IPS_SCSI_INQ_LU_CONNECTED;
4036 inquiry.Version = IPS_SCSI_INQ_REV2;
4037 inquiry.ResponseDataFormat = IPS_SCSI_INQ_RD_REV2;
4038 inquiry.AdditionalLength = 31;
4039 inquiry.Flags[0] = IPS_SCSI_INQ_Address16;
4041 IPS_SCSI_INQ_WBus16 | IPS_SCSI_INQ_Sync | IPS_SCSI_INQ_CmdQue;
4042 memcpy(inquiry.VendorId, "IBM ", 8);
4043 memcpy(inquiry.ProductId, "SERVERAID ", 16);
4044 memcpy(inquiry.ProductRevisionLevel, "1.00", 4);
4046 ips_scmd_buf_write(scb->scsi_cmd, &inquiry, sizeof (inquiry));
4051 /****************************************************************************/
4053 /* Routine Name: ips_rdcap */
4055 /* Routine Description: */
4057 /* Simulate a read capacity command to a logical drive */
4059 /****************************************************************************/
4061 ips_rdcap(ips_ha_t * ha, ips_scb_t * scb)
4063 IPS_SCSI_CAPACITY cap;
4065 METHOD_TRACE("ips_rdcap", 1);
4067 if (scsi_bufflen(scb->scsi_cmd) < 8)
4071 cpu_to_be32(le32_to_cpu
4072 (ha->logical_drive_info->
4073 drive_info[scb->target_id].sector_count) - 1);
4074 cap.len = cpu_to_be32((uint32_t) IPS_BLKSIZE);
4076 ips_scmd_buf_write(scb->scsi_cmd, &cap, sizeof (cap));
4081 /****************************************************************************/
4083 /* Routine Name: ips_msense */
4085 /* Routine Description: */
4087 /* Simulate a mode sense command to a logical drive */
4089 /****************************************************************************/
4091 ips_msense(ips_ha_t * ha, ips_scb_t * scb)
4096 IPS_SCSI_MODE_PAGE_DATA mdata;
4098 METHOD_TRACE("ips_msense", 1);
4100 if (le32_to_cpu(ha->enq->ulDriveSize[scb->target_id]) > 0x400000 &&
4101 (ha->enq->ucMiscFlag & 0x8) == 0) {
4102 heads = IPS_NORM_HEADS;
4103 sectors = IPS_NORM_SECTORS;
4105 heads = IPS_COMP_HEADS;
4106 sectors = IPS_COMP_SECTORS;
4110 (le32_to_cpu(ha->enq->ulDriveSize[scb->target_id]) -
4111 1) / (heads * sectors);
4113 memset(&mdata, 0, sizeof (IPS_SCSI_MODE_PAGE_DATA));
4115 mdata.hdr.BlockDescLength = 8;
4117 switch (scb->scsi_cmd->cmnd[2] & 0x3f) {
4118 case 0x03: /* page 3 */
4119 mdata.pdata.pg3.PageCode = 3;
4120 mdata.pdata.pg3.PageLength = sizeof (IPS_SCSI_MODE_PAGE3);
4121 mdata.hdr.DataLength =
4122 3 + mdata.hdr.BlockDescLength + mdata.pdata.pg3.PageLength;
4123 mdata.pdata.pg3.TracksPerZone = 0;
4124 mdata.pdata.pg3.AltSectorsPerZone = 0;
4125 mdata.pdata.pg3.AltTracksPerZone = 0;
4126 mdata.pdata.pg3.AltTracksPerVolume = 0;
4127 mdata.pdata.pg3.SectorsPerTrack = cpu_to_be16(sectors);
4128 mdata.pdata.pg3.BytesPerSector = cpu_to_be16(IPS_BLKSIZE);
4129 mdata.pdata.pg3.Interleave = cpu_to_be16(1);
4130 mdata.pdata.pg3.TrackSkew = 0;
4131 mdata.pdata.pg3.CylinderSkew = 0;
4132 mdata.pdata.pg3.flags = IPS_SCSI_MP3_SoftSector;
4136 mdata.pdata.pg4.PageCode = 4;
4137 mdata.pdata.pg4.PageLength = sizeof (IPS_SCSI_MODE_PAGE4);
4138 mdata.hdr.DataLength =
4139 3 + mdata.hdr.BlockDescLength + mdata.pdata.pg4.PageLength;
4140 mdata.pdata.pg4.CylindersHigh =
4141 cpu_to_be16((cylinders >> 8) & 0xFFFF);
4142 mdata.pdata.pg4.CylindersLow = (cylinders & 0xFF);
4143 mdata.pdata.pg4.Heads = heads;
4144 mdata.pdata.pg4.WritePrecompHigh = 0;
4145 mdata.pdata.pg4.WritePrecompLow = 0;
4146 mdata.pdata.pg4.ReducedWriteCurrentHigh = 0;
4147 mdata.pdata.pg4.ReducedWriteCurrentLow = 0;
4148 mdata.pdata.pg4.StepRate = cpu_to_be16(1);
4149 mdata.pdata.pg4.LandingZoneHigh = 0;
4150 mdata.pdata.pg4.LandingZoneLow = 0;
4151 mdata.pdata.pg4.flags = 0;
4152 mdata.pdata.pg4.RotationalOffset = 0;
4153 mdata.pdata.pg4.MediumRotationRate = 0;
4156 mdata.pdata.pg8.PageCode = 8;
4157 mdata.pdata.pg8.PageLength = sizeof (IPS_SCSI_MODE_PAGE8);
4158 mdata.hdr.DataLength =
4159 3 + mdata.hdr.BlockDescLength + mdata.pdata.pg8.PageLength;
4160 /* everything else is left set to 0 */
4167 ips_scmd_buf_write(scb->scsi_cmd, &mdata, sizeof (mdata));
4172 /****************************************************************************/
4174 /* Routine Name: ips_reqsen */
4176 /* Routine Description: */
4178 /* Simulate a request sense command to a logical drive */
4180 /****************************************************************************/
4182 ips_reqsen(ips_ha_t * ha, ips_scb_t * scb)
4184 IPS_SCSI_REQSEN reqsen;
4186 METHOD_TRACE("ips_reqsen", 1);
4188 memset(&reqsen, 0, sizeof (IPS_SCSI_REQSEN));
4190 reqsen.ResponseCode =
4191 IPS_SCSI_REQSEN_VALID | IPS_SCSI_REQSEN_CURRENT_ERR;
4192 reqsen.AdditionalLength = 10;
4193 reqsen.AdditionalSenseCode = IPS_SCSI_REQSEN_NO_SENSE;
4194 reqsen.AdditionalSenseCodeQual = IPS_SCSI_REQSEN_NO_SENSE;
4196 ips_scmd_buf_write(scb->scsi_cmd, &reqsen, sizeof (reqsen));
4201 /****************************************************************************/
4203 /* Routine Name: ips_free */
4205 /* Routine Description: */
4207 /* Free any allocated space for this controller */
4209 /****************************************************************************/
4211 ips_free(ips_ha_t * ha)
4214 METHOD_TRACE("ips_free", 1);
4218 dma_free_coherent(&ha->pcidev->dev, sizeof(IPS_ENQ),
4219 ha->enq, ha->enq_busaddr);
4227 dma_free_coherent(&ha->pcidev->dev,
4228 sizeof (IPS_ADAPTER) +
4229 sizeof (IPS_IO_CMD), ha->adapt,
4230 ha->adapt->hw_status_start);
4234 if (ha->logical_drive_info) {
4235 dma_free_coherent(&ha->pcidev->dev,
4236 sizeof (IPS_LD_INFO),
4237 ha->logical_drive_info,
4238 ha->logical_drive_info_dma_addr);
4239 ha->logical_drive_info = NULL;
4248 if (ha->ioctl_data) {
4249 dma_free_coherent(&ha->pcidev->dev, ha->ioctl_len,
4250 ha->ioctl_data, ha->ioctl_busaddr);
4251 ha->ioctl_data = NULL;
4252 ha->ioctl_datasize = 0;
4255 ips_deallocatescbs(ha, ha->max_cmds);
4257 /* free memory mapped (if applicable) */
4259 iounmap(ha->ioremap_ptr);
4260 ha->ioremap_ptr = NULL;
4269 /****************************************************************************/
4271 /* Routine Name: ips_deallocatescbs */
4273 /* Routine Description: */
4275 /* Free the command blocks */
4277 /****************************************************************************/
4279 ips_deallocatescbs(ips_ha_t * ha, int cmds)
4282 dma_free_coherent(&ha->pcidev->dev,
4283 IPS_SGLIST_SIZE(ha) * IPS_MAX_SG * cmds,
4284 ha->scbs->sg_list.list,
4285 ha->scbs->sg_busaddr);
4286 dma_free_coherent(&ha->pcidev->dev, sizeof (ips_scb_t) * cmds,
4287 ha->scbs, ha->scbs->scb_busaddr);
4293 /****************************************************************************/
4295 /* Routine Name: ips_allocatescbs */
4297 /* Routine Description: */
4299 /* Allocate the command blocks */
4301 /****************************************************************************/
4303 ips_allocatescbs(ips_ha_t * ha)
4308 dma_addr_t command_dma, sg_dma;
4310 METHOD_TRACE("ips_allocatescbs", 1);
4312 /* Allocate memory for the SCBs */
4313 ha->scbs = dma_alloc_coherent(&ha->pcidev->dev,
4314 ha->max_cmds * sizeof (ips_scb_t),
4315 &command_dma, GFP_KERNEL);
4316 if (ha->scbs == NULL)
4318 ips_sg.list = dma_alloc_coherent(&ha->pcidev->dev,
4319 IPS_SGLIST_SIZE(ha) * IPS_MAX_SG * ha->max_cmds,
4320 &sg_dma, GFP_KERNEL);
4321 if (ips_sg.list == NULL) {
4322 dma_free_coherent(&ha->pcidev->dev,
4323 ha->max_cmds * sizeof (ips_scb_t), ha->scbs,
4328 memset(ha->scbs, 0, ha->max_cmds * sizeof (ips_scb_t));
4330 for (i = 0; i < ha->max_cmds; i++) {
4331 scb_p = &ha->scbs[i];
4332 scb_p->scb_busaddr = command_dma + sizeof (ips_scb_t) * i;
4333 /* set up S/G list */
4334 if (IPS_USE_ENH_SGLIST(ha)) {
4335 scb_p->sg_list.enh_list =
4336 ips_sg.enh_list + i * IPS_MAX_SG;
4338 sg_dma + IPS_SGLIST_SIZE(ha) * IPS_MAX_SG * i;
4340 scb_p->sg_list.std_list =
4341 ips_sg.std_list + i * IPS_MAX_SG;
4343 sg_dma + IPS_SGLIST_SIZE(ha) * IPS_MAX_SG * i;
4346 /* add to the free list */
4347 if (i < ha->max_cmds - 1) {
4348 scb_p->q_next = ha->scb_freelist;
4349 ha->scb_freelist = scb_p;
4357 /****************************************************************************/
4359 /* Routine Name: ips_init_scb */
4361 /* Routine Description: */
4363 /* Initialize a CCB to default values */
4365 /****************************************************************************/
4367 ips_init_scb(ips_ha_t * ha, ips_scb_t * scb)
4369 IPS_SG_LIST sg_list;
4370 uint32_t cmd_busaddr, sg_busaddr;
4371 METHOD_TRACE("ips_init_scb", 1);
4376 sg_list.list = scb->sg_list.list;
4377 cmd_busaddr = scb->scb_busaddr;
4378 sg_busaddr = scb->sg_busaddr;
4380 memset(scb, 0, sizeof (ips_scb_t));
4381 memset(ha->dummy, 0, sizeof (IPS_IO_CMD));
4383 /* Initialize dummy command bucket */
4384 ha->dummy->op_code = 0xFF;
4385 ha->dummy->ccsar = cpu_to_le32(ha->adapt->hw_status_start
4386 + sizeof (IPS_ADAPTER));
4387 ha->dummy->command_id = IPS_MAX_CMDS;
4389 /* set bus address of scb */
4390 scb->scb_busaddr = cmd_busaddr;
4391 scb->sg_busaddr = sg_busaddr;
4392 scb->sg_list.list = sg_list.list;
4395 scb->cmd.basic_io.cccr = cpu_to_le32((uint32_t) IPS_BIT_ILE);
4396 scb->cmd.basic_io.ccsar = cpu_to_le32(ha->adapt->hw_status_start
4397 + sizeof (IPS_ADAPTER));
4400 /****************************************************************************/
4402 /* Routine Name: ips_get_scb */
4404 /* Routine Description: */
4406 /* Initialize a CCB to default values */
4408 /* ASSUMED to be called from within a lock */
4410 /****************************************************************************/
4412 ips_getscb(ips_ha_t * ha)
4416 METHOD_TRACE("ips_getscb", 1);
4418 if ((scb = ha->scb_freelist) == NULL) {
4423 ha->scb_freelist = scb->q_next;
4427 ips_init_scb(ha, scb);
4432 /****************************************************************************/
4434 /* Routine Name: ips_free_scb */
4436 /* Routine Description: */
4438 /* Return an unused CCB back to the free list */
4440 /* ASSUMED to be called from within a lock */
4442 /****************************************************************************/
4444 ips_freescb(ips_ha_t * ha, ips_scb_t * scb)
4447 METHOD_TRACE("ips_freescb", 1);
4448 if (scb->flags & IPS_SCB_MAP_SG)
4449 scsi_dma_unmap(scb->scsi_cmd);
4450 else if (scb->flags & IPS_SCB_MAP_SINGLE)
4451 dma_unmap_single(&ha->pcidev->dev, scb->data_busaddr,
4452 scb->data_len, IPS_DMA_DIR(scb));
4454 /* check to make sure this is not our "special" scb */
4455 if (IPS_COMMAND_ID(ha, scb) < (ha->max_cmds - 1)) {
4456 scb->q_next = ha->scb_freelist;
4457 ha->scb_freelist = scb;
4461 /****************************************************************************/
4463 /* Routine Name: ips_isinit_copperhead */
4465 /* Routine Description: */
4467 /* Is controller initialized ? */
4469 /****************************************************************************/
4471 ips_isinit_copperhead(ips_ha_t * ha)
4476 METHOD_TRACE("ips_isinit_copperhead", 1);
4478 isr = inb(ha->io_addr + IPS_REG_HISR);
4479 scpr = inb(ha->io_addr + IPS_REG_SCPR);
4481 if (((isr & IPS_BIT_EI) == 0) && ((scpr & IPS_BIT_EBM) == 0))
4487 /****************************************************************************/
4489 /* Routine Name: ips_isinit_copperhead_memio */
4491 /* Routine Description: */
4493 /* Is controller initialized ? */
4495 /****************************************************************************/
4497 ips_isinit_copperhead_memio(ips_ha_t * ha)
4502 METHOD_TRACE("ips_is_init_copperhead_memio", 1);
4504 isr = readb(ha->mem_ptr + IPS_REG_HISR);
4505 scpr = readb(ha->mem_ptr + IPS_REG_SCPR);
4507 if (((isr & IPS_BIT_EI) == 0) && ((scpr & IPS_BIT_EBM) == 0))
4513 /****************************************************************************/
4515 /* Routine Name: ips_isinit_morpheus */
4517 /* Routine Description: */
4519 /* Is controller initialized ? */
4521 /****************************************************************************/
4523 ips_isinit_morpheus(ips_ha_t * ha)
4528 METHOD_TRACE("ips_is_init_morpheus", 1);
4530 if (ips_isintr_morpheus(ha))
4531 ips_flush_and_reset(ha);
4533 post = readl(ha->mem_ptr + IPS_REG_I960_MSG0);
4534 bits = readl(ha->mem_ptr + IPS_REG_I2O_HIR);
4538 else if (bits & 0x3)
4544 /****************************************************************************/
4546 /* Routine Name: ips_flush_and_reset */
4548 /* Routine Description: */
4550 /* Perform cleanup ( FLUSH and RESET ) when the adapter is in an unknown */
4551 /* state ( was trying to INIT and an interrupt was already pending ) ... */
4553 /****************************************************************************/
4555 ips_flush_and_reset(ips_ha_t *ha)
4561 dma_addr_t command_dma;
4563 /* Create a usuable SCB */
4564 scb = dma_alloc_coherent(&ha->pcidev->dev, sizeof(ips_scb_t),
4565 &command_dma, GFP_KERNEL);
4567 memset(scb, 0, sizeof(ips_scb_t));
4568 ips_init_scb(ha, scb);
4569 scb->scb_busaddr = command_dma;
4571 scb->timeout = ips_cmd_timeout;
4572 scb->cdb[0] = IPS_CMD_FLUSH;
4574 scb->cmd.flush_cache.op_code = IPS_CMD_FLUSH;
4575 scb->cmd.flush_cache.command_id = IPS_MAX_CMDS; /* Use an ID that would otherwise not exist */
4576 scb->cmd.flush_cache.state = IPS_NORM_STATE;
4577 scb->cmd.flush_cache.reserved = 0;
4578 scb->cmd.flush_cache.reserved2 = 0;
4579 scb->cmd.flush_cache.reserved3 = 0;
4580 scb->cmd.flush_cache.reserved4 = 0;
4582 ret = ips_send_cmd(ha, scb); /* Send the Flush Command */
4584 if (ret == IPS_SUCCESS) {
4585 time = 60 * IPS_ONE_SEC; /* Max Wait time is 60 seconds */
4588 while ((time > 0) && (!done)) {
4589 done = ips_poll_for_flush_complete(ha);
4590 /* This may look evil, but it's only done during extremely rare start-up conditions ! */
4597 /* Now RESET and INIT the adapter */
4598 (*ha->func.reset) (ha);
4600 dma_free_coherent(&ha->pcidev->dev, sizeof(ips_scb_t), scb, command_dma);
4604 /****************************************************************************/
4606 /* Routine Name: ips_poll_for_flush_complete */
4608 /* Routine Description: */
4610 /* Poll for the Flush Command issued by ips_flush_and_reset() to complete */
4611 /* All other responses are just taken off the queue and ignored */
4613 /****************************************************************************/
4615 ips_poll_for_flush_complete(ips_ha_t * ha)
4620 cstatus.value = (*ha->func.statupd) (ha);
4622 if (cstatus.value == 0xffffffff) /* If No Interrupt to process */
4625 /* Success is when we see the Flush Command ID */
4626 if (cstatus.fields.command_id == IPS_MAX_CMDS)
4633 /****************************************************************************/
4635 /* Routine Name: ips_enable_int_copperhead */
4637 /* Routine Description: */
4638 /* Turn on interrupts */
4640 /****************************************************************************/
4642 ips_enable_int_copperhead(ips_ha_t * ha)
4644 METHOD_TRACE("ips_enable_int_copperhead", 1);
4646 outb(ha->io_addr + IPS_REG_HISR, IPS_BIT_EI);
4647 inb(ha->io_addr + IPS_REG_HISR); /*Ensure PCI Posting Completes*/
4650 /****************************************************************************/
4652 /* Routine Name: ips_enable_int_copperhead_memio */
4654 /* Routine Description: */
4655 /* Turn on interrupts */
4657 /****************************************************************************/
4659 ips_enable_int_copperhead_memio(ips_ha_t * ha)
4661 METHOD_TRACE("ips_enable_int_copperhead_memio", 1);
4663 writeb(IPS_BIT_EI, ha->mem_ptr + IPS_REG_HISR);
4664 readb(ha->mem_ptr + IPS_REG_HISR); /*Ensure PCI Posting Completes*/
4667 /****************************************************************************/
4669 /* Routine Name: ips_enable_int_morpheus */
4671 /* Routine Description: */
4672 /* Turn on interrupts */
4674 /****************************************************************************/
4676 ips_enable_int_morpheus(ips_ha_t * ha)
4680 METHOD_TRACE("ips_enable_int_morpheus", 1);
4682 Oimr = readl(ha->mem_ptr + IPS_REG_I960_OIMR);
4684 writel(Oimr, ha->mem_ptr + IPS_REG_I960_OIMR);
4685 readl(ha->mem_ptr + IPS_REG_I960_OIMR); /*Ensure PCI Posting Completes*/
4688 /****************************************************************************/
4690 /* Routine Name: ips_init_copperhead */
4692 /* Routine Description: */
4694 /* Initialize a copperhead controller */
4696 /****************************************************************************/
4698 ips_init_copperhead(ips_ha_t * ha)
4702 uint8_t PostByte[IPS_MAX_POST_BYTES];
4705 METHOD_TRACE("ips_init_copperhead", 1);
4707 for (i = 0; i < IPS_MAX_POST_BYTES; i++) {
4708 for (j = 0; j < 45; j++) {
4709 Isr = inb(ha->io_addr + IPS_REG_HISR);
4710 if (Isr & IPS_BIT_GHI)
4713 /* Delay for 1 Second */
4714 MDELAY(IPS_ONE_SEC);
4718 /* error occurred */
4721 PostByte[i] = inb(ha->io_addr + IPS_REG_ISPR);
4722 outb(Isr, ha->io_addr + IPS_REG_HISR);
4725 if (PostByte[0] < IPS_GOOD_POST_STATUS) {
4726 IPS_PRINTK(KERN_WARNING, ha->pcidev,
4727 "reset controller fails (post status %x %x).\n",
4728 PostByte[0], PostByte[1]);
4733 for (i = 0; i < IPS_MAX_CONFIG_BYTES; i++) {
4734 for (j = 0; j < 240; j++) {
4735 Isr = inb(ha->io_addr + IPS_REG_HISR);
4736 if (Isr & IPS_BIT_GHI)
4739 /* Delay for 1 Second */
4740 MDELAY(IPS_ONE_SEC);
4744 /* error occurred */
4747 inb(ha->io_addr + IPS_REG_ISPR);
4748 outb(Isr, ha->io_addr + IPS_REG_HISR);
4751 for (i = 0; i < 240; i++) {
4752 Cbsp = inb(ha->io_addr + IPS_REG_CBSP);
4754 if ((Cbsp & IPS_BIT_OP) == 0)
4757 /* Delay for 1 Second */
4758 MDELAY(IPS_ONE_SEC);
4766 outl(0x1010, ha->io_addr + IPS_REG_CCCR);
4768 /* Enable busmastering */
4769 outb(IPS_BIT_EBM, ha->io_addr + IPS_REG_SCPR);
4771 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
4772 /* fix for anaconda64 */
4773 outl(0, ha->io_addr + IPS_REG_NDAE);
4775 /* Enable interrupts */
4776 outb(IPS_BIT_EI, ha->io_addr + IPS_REG_HISR);
4781 /****************************************************************************/
4783 /* Routine Name: ips_init_copperhead_memio */
4785 /* Routine Description: */
4787 /* Initialize a copperhead controller with memory mapped I/O */
4789 /****************************************************************************/
4791 ips_init_copperhead_memio(ips_ha_t * ha)
4795 uint8_t PostByte[IPS_MAX_POST_BYTES];
4798 METHOD_TRACE("ips_init_copperhead_memio", 1);
4800 for (i = 0; i < IPS_MAX_POST_BYTES; i++) {
4801 for (j = 0; j < 45; j++) {
4802 Isr = readb(ha->mem_ptr + IPS_REG_HISR);
4803 if (Isr & IPS_BIT_GHI)
4806 /* Delay for 1 Second */
4807 MDELAY(IPS_ONE_SEC);
4811 /* error occurred */
4814 PostByte[i] = readb(ha->mem_ptr + IPS_REG_ISPR);
4815 writeb(Isr, ha->mem_ptr + IPS_REG_HISR);
4818 if (PostByte[0] < IPS_GOOD_POST_STATUS) {
4819 IPS_PRINTK(KERN_WARNING, ha->pcidev,
4820 "reset controller fails (post status %x %x).\n",
4821 PostByte[0], PostByte[1]);
4826 for (i = 0; i < IPS_MAX_CONFIG_BYTES; i++) {
4827 for (j = 0; j < 240; j++) {
4828 Isr = readb(ha->mem_ptr + IPS_REG_HISR);
4829 if (Isr & IPS_BIT_GHI)
4832 /* Delay for 1 Second */
4833 MDELAY(IPS_ONE_SEC);
4837 /* error occurred */
4840 readb(ha->mem_ptr + IPS_REG_ISPR);
4841 writeb(Isr, ha->mem_ptr + IPS_REG_HISR);
4844 for (i = 0; i < 240; i++) {
4845 Cbsp = readb(ha->mem_ptr + IPS_REG_CBSP);
4847 if ((Cbsp & IPS_BIT_OP) == 0)
4850 /* Delay for 1 Second */
4851 MDELAY(IPS_ONE_SEC);
4855 /* error occurred */
4859 writel(0x1010, ha->mem_ptr + IPS_REG_CCCR);
4861 /* Enable busmastering */
4862 writeb(IPS_BIT_EBM, ha->mem_ptr + IPS_REG_SCPR);
4864 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
4865 /* fix for anaconda64 */
4866 writel(0, ha->mem_ptr + IPS_REG_NDAE);
4868 /* Enable interrupts */
4869 writeb(IPS_BIT_EI, ha->mem_ptr + IPS_REG_HISR);
4871 /* if we get here then everything went OK */
4875 /****************************************************************************/
4877 /* Routine Name: ips_init_morpheus */
4879 /* Routine Description: */
4881 /* Initialize a morpheus controller */
4883 /****************************************************************************/
4885 ips_init_morpheus(ips_ha_t * ha)
4893 METHOD_TRACE("ips_init_morpheus", 1);
4895 /* Wait up to 45 secs for Post */
4896 for (i = 0; i < 45; i++) {
4897 Isr = readl(ha->mem_ptr + IPS_REG_I2O_HIR);
4899 if (Isr & IPS_BIT_I960_MSG0I)
4902 /* Delay for 1 Second */
4903 MDELAY(IPS_ONE_SEC);
4907 /* error occurred */
4908 IPS_PRINTK(KERN_WARNING, ha->pcidev,
4909 "timeout waiting for post.\n");
4914 Post = readl(ha->mem_ptr + IPS_REG_I960_MSG0);
4916 if (Post == 0x4F00) { /* If Flashing the Battery PIC */
4917 IPS_PRINTK(KERN_WARNING, ha->pcidev,
4918 "Flashing Battery PIC, Please wait ...\n");
4920 /* Clear the interrupt bit */
4921 Isr = (uint32_t) IPS_BIT_I960_MSG0I;
4922 writel(Isr, ha->mem_ptr + IPS_REG_I2O_HIR);
4924 for (i = 0; i < 120; i++) { /* Wait Up to 2 Min. for Completion */
4925 Post = readl(ha->mem_ptr + IPS_REG_I960_MSG0);
4928 /* Delay for 1 Second */
4929 MDELAY(IPS_ONE_SEC);
4933 IPS_PRINTK(KERN_WARNING, ha->pcidev,
4934 "timeout waiting for Battery PIC Flash\n");
4940 /* Clear the interrupt bit */
4941 Isr = (uint32_t) IPS_BIT_I960_MSG0I;
4942 writel(Isr, ha->mem_ptr + IPS_REG_I2O_HIR);
4944 if (Post < (IPS_GOOD_POST_STATUS << 8)) {
4945 IPS_PRINTK(KERN_WARNING, ha->pcidev,
4946 "reset controller fails (post status %x).\n", Post);
4951 /* Wait up to 240 secs for config bytes */
4952 for (i = 0; i < 240; i++) {
4953 Isr = readl(ha->mem_ptr + IPS_REG_I2O_HIR);
4955 if (Isr & IPS_BIT_I960_MSG1I)
4958 /* Delay for 1 Second */
4959 MDELAY(IPS_ONE_SEC);
4963 /* error occurred */
4964 IPS_PRINTK(KERN_WARNING, ha->pcidev,
4965 "timeout waiting for config.\n");
4970 Config = readl(ha->mem_ptr + IPS_REG_I960_MSG1);
4972 /* Clear interrupt bit */
4973 Isr = (uint32_t) IPS_BIT_I960_MSG1I;
4974 writel(Isr, ha->mem_ptr + IPS_REG_I2O_HIR);
4976 /* Turn on the interrupts */
4977 Oimr = readl(ha->mem_ptr + IPS_REG_I960_OIMR);
4979 writel(Oimr, ha->mem_ptr + IPS_REG_I960_OIMR);
4981 /* if we get here then everything went OK */
4983 /* Since we did a RESET, an EraseStripeLock may be needed */
4984 if (Post == 0xEF10) {
4985 if ((Config == 0x000F) || (Config == 0x0009))
4986 ha->requires_esl = 1;
4992 /****************************************************************************/
4994 /* Routine Name: ips_reset_copperhead */
4996 /* Routine Description: */
4998 /* Reset the controller */
5000 /****************************************************************************/
5002 ips_reset_copperhead(ips_ha_t * ha)
5006 METHOD_TRACE("ips_reset_copperhead", 1);
5008 DEBUG_VAR(1, "(%s%d) ips_reset_copperhead: io addr: %x, irq: %d",
5009 ips_name, ha->host_num, ha->io_addr, ha->pcidev->irq);
5013 while (reset_counter < 2) {
5016 outb(IPS_BIT_RST, ha->io_addr + IPS_REG_SCPR);
5018 /* Delay for 1 Second */
5019 MDELAY(IPS_ONE_SEC);
5021 outb(0, ha->io_addr + IPS_REG_SCPR);
5023 /* Delay for 1 Second */
5024 MDELAY(IPS_ONE_SEC);
5026 if ((*ha->func.init) (ha))
5028 else if (reset_counter >= 2) {
5037 /****************************************************************************/
5039 /* Routine Name: ips_reset_copperhead_memio */
5041 /* Routine Description: */
5043 /* Reset the controller */
5045 /****************************************************************************/
5047 ips_reset_copperhead_memio(ips_ha_t * ha)
5051 METHOD_TRACE("ips_reset_copperhead_memio", 1);
5053 DEBUG_VAR(1, "(%s%d) ips_reset_copperhead_memio: mem addr: %x, irq: %d",
5054 ips_name, ha->host_num, ha->mem_addr, ha->pcidev->irq);
5058 while (reset_counter < 2) {
5061 writeb(IPS_BIT_RST, ha->mem_ptr + IPS_REG_SCPR);
5063 /* Delay for 1 Second */
5064 MDELAY(IPS_ONE_SEC);
5066 writeb(0, ha->mem_ptr + IPS_REG_SCPR);
5068 /* Delay for 1 Second */
5069 MDELAY(IPS_ONE_SEC);
5071 if ((*ha->func.init) (ha))
5073 else if (reset_counter >= 2) {
5082 /****************************************************************************/
5084 /* Routine Name: ips_reset_morpheus */
5086 /* Routine Description: */
5088 /* Reset the controller */
5090 /****************************************************************************/
5092 ips_reset_morpheus(ips_ha_t * ha)
5097 METHOD_TRACE("ips_reset_morpheus", 1);
5099 DEBUG_VAR(1, "(%s%d) ips_reset_morpheus: mem addr: %x, irq: %d",
5100 ips_name, ha->host_num, ha->mem_addr, ha->pcidev->irq);
5104 while (reset_counter < 2) {
5107 writel(0x80000000, ha->mem_ptr + IPS_REG_I960_IDR);
5109 /* Delay for 5 Seconds */
5110 MDELAY(5 * IPS_ONE_SEC);
5112 /* Do a PCI config read to wait for adapter */
5113 pci_read_config_byte(ha->pcidev, 4, &junk);
5115 if ((*ha->func.init) (ha))
5117 else if (reset_counter >= 2) {
5126 /****************************************************************************/
5128 /* Routine Name: ips_statinit */
5130 /* Routine Description: */
5132 /* Initialize the status queues on the controller */
5134 /****************************************************************************/
5136 ips_statinit(ips_ha_t * ha)
5138 uint32_t phys_status_start;
5140 METHOD_TRACE("ips_statinit", 1);
5142 ha->adapt->p_status_start = ha->adapt->status;
5143 ha->adapt->p_status_end = ha->adapt->status + IPS_MAX_CMDS;
5144 ha->adapt->p_status_tail = ha->adapt->status;
5146 phys_status_start = ha->adapt->hw_status_start;
5147 outl(phys_status_start, ha->io_addr + IPS_REG_SQSR);
5148 outl(phys_status_start + IPS_STATUS_Q_SIZE,
5149 ha->io_addr + IPS_REG_SQER);
5150 outl(phys_status_start + IPS_STATUS_SIZE,
5151 ha->io_addr + IPS_REG_SQHR);
5152 outl(phys_status_start, ha->io_addr + IPS_REG_SQTR);
5154 ha->adapt->hw_status_tail = phys_status_start;
5157 /****************************************************************************/
5159 /* Routine Name: ips_statinit_memio */
5161 /* Routine Description: */
5163 /* Initialize the status queues on the controller */
5165 /****************************************************************************/
5167 ips_statinit_memio(ips_ha_t * ha)
5169 uint32_t phys_status_start;
5171 METHOD_TRACE("ips_statinit_memio", 1);
5173 ha->adapt->p_status_start = ha->adapt->status;
5174 ha->adapt->p_status_end = ha->adapt->status + IPS_MAX_CMDS;
5175 ha->adapt->p_status_tail = ha->adapt->status;
5177 phys_status_start = ha->adapt->hw_status_start;
5178 writel(phys_status_start, ha->mem_ptr + IPS_REG_SQSR);
5179 writel(phys_status_start + IPS_STATUS_Q_SIZE,
5180 ha->mem_ptr + IPS_REG_SQER);
5181 writel(phys_status_start + IPS_STATUS_SIZE, ha->mem_ptr + IPS_REG_SQHR);
5182 writel(phys_status_start, ha->mem_ptr + IPS_REG_SQTR);
5184 ha->adapt->hw_status_tail = phys_status_start;
5187 /****************************************************************************/
5189 /* Routine Name: ips_statupd_copperhead */
5191 /* Routine Description: */
5193 /* Remove an element from the status queue */
5195 /****************************************************************************/
5197 ips_statupd_copperhead(ips_ha_t * ha)
5199 METHOD_TRACE("ips_statupd_copperhead", 1);
5201 if (ha->adapt->p_status_tail != ha->adapt->p_status_end) {
5202 ha->adapt->p_status_tail++;
5203 ha->adapt->hw_status_tail += sizeof (IPS_STATUS);
5205 ha->adapt->p_status_tail = ha->adapt->p_status_start;
5206 ha->adapt->hw_status_tail = ha->adapt->hw_status_start;
5209 outl(ha->adapt->hw_status_tail,
5210 ha->io_addr + IPS_REG_SQTR);
5212 return (ha->adapt->p_status_tail->value);
5215 /****************************************************************************/
5217 /* Routine Name: ips_statupd_copperhead_memio */
5219 /* Routine Description: */
5221 /* Remove an element from the status queue */
5223 /****************************************************************************/
5225 ips_statupd_copperhead_memio(ips_ha_t * ha)
5227 METHOD_TRACE("ips_statupd_copperhead_memio", 1);
5229 if (ha->adapt->p_status_tail != ha->adapt->p_status_end) {
5230 ha->adapt->p_status_tail++;
5231 ha->adapt->hw_status_tail += sizeof (IPS_STATUS);
5233 ha->adapt->p_status_tail = ha->adapt->p_status_start;
5234 ha->adapt->hw_status_tail = ha->adapt->hw_status_start;
5237 writel(ha->adapt->hw_status_tail, ha->mem_ptr + IPS_REG_SQTR);
5239 return (ha->adapt->p_status_tail->value);
5242 /****************************************************************************/
5244 /* Routine Name: ips_statupd_morpheus */
5246 /* Routine Description: */
5248 /* Remove an element from the status queue */
5250 /****************************************************************************/
5252 ips_statupd_morpheus(ips_ha_t * ha)
5256 METHOD_TRACE("ips_statupd_morpheus", 1);
5258 val = readl(ha->mem_ptr + IPS_REG_I2O_OUTMSGQ);
5263 /****************************************************************************/
5265 /* Routine Name: ips_issue_copperhead */
5267 /* Routine Description: */
5269 /* Send a command down to the controller */
5271 /****************************************************************************/
5273 ips_issue_copperhead(ips_ha_t * ha, ips_scb_t * scb)
5278 METHOD_TRACE("ips_issue_copperhead", 1);
5280 if (scb->scsi_cmd) {
5281 DEBUG_VAR(2, "(%s%d) ips_issue: cmd 0x%X id %d (%d %d %d)",
5285 scb->cmd.basic_io.command_id,
5286 scb->bus, scb->target_id, scb->lun);
5288 DEBUG_VAR(2, KERN_NOTICE "(%s%d) ips_issue: logical cmd id %d",
5289 ips_name, ha->host_num, scb->cmd.basic_io.command_id);
5295 le32_to_cpu(inl(ha->io_addr + IPS_REG_CCCR))) & IPS_BIT_SEM) {
5298 if (++TimeOut >= IPS_SEM_TIMEOUT) {
5299 if (!(val & IPS_BIT_START_STOP))
5302 IPS_PRINTK(KERN_WARNING, ha->pcidev,
5303 "ips_issue val [0x%x].\n", val);
5304 IPS_PRINTK(KERN_WARNING, ha->pcidev,
5305 "ips_issue semaphore chk timeout.\n");
5307 return (IPS_FAILURE);
5311 outl(scb->scb_busaddr, ha->io_addr + IPS_REG_CCSAR);
5312 outw(IPS_BIT_START_CMD, ha->io_addr + IPS_REG_CCCR);
5314 return (IPS_SUCCESS);
5317 /****************************************************************************/
5319 /* Routine Name: ips_issue_copperhead_memio */
5321 /* Routine Description: */
5323 /* Send a command down to the controller */
5325 /****************************************************************************/
5327 ips_issue_copperhead_memio(ips_ha_t * ha, ips_scb_t * scb)
5332 METHOD_TRACE("ips_issue_copperhead_memio", 1);
5334 if (scb->scsi_cmd) {
5335 DEBUG_VAR(2, "(%s%d) ips_issue: cmd 0x%X id %d (%d %d %d)",
5339 scb->cmd.basic_io.command_id,
5340 scb->bus, scb->target_id, scb->lun);
5342 DEBUG_VAR(2, "(%s%d) ips_issue: logical cmd id %d",
5343 ips_name, ha->host_num, scb->cmd.basic_io.command_id);
5348 while ((val = readl(ha->mem_ptr + IPS_REG_CCCR)) & IPS_BIT_SEM) {
5351 if (++TimeOut >= IPS_SEM_TIMEOUT) {
5352 if (!(val & IPS_BIT_START_STOP))
5355 IPS_PRINTK(KERN_WARNING, ha->pcidev,
5356 "ips_issue val [0x%x].\n", val);
5357 IPS_PRINTK(KERN_WARNING, ha->pcidev,
5358 "ips_issue semaphore chk timeout.\n");
5360 return (IPS_FAILURE);
5364 writel(scb->scb_busaddr, ha->mem_ptr + IPS_REG_CCSAR);
5365 writel(IPS_BIT_START_CMD, ha->mem_ptr + IPS_REG_CCCR);
5367 return (IPS_SUCCESS);
5370 /****************************************************************************/
5372 /* Routine Name: ips_issue_i2o */
5374 /* Routine Description: */
5376 /* Send a command down to the controller */
5378 /****************************************************************************/
5380 ips_issue_i2o(ips_ha_t * ha, ips_scb_t * scb)
5383 METHOD_TRACE("ips_issue_i2o", 1);
5385 if (scb->scsi_cmd) {
5386 DEBUG_VAR(2, "(%s%d) ips_issue: cmd 0x%X id %d (%d %d %d)",
5390 scb->cmd.basic_io.command_id,
5391 scb->bus, scb->target_id, scb->lun);
5393 DEBUG_VAR(2, "(%s%d) ips_issue: logical cmd id %d",
5394 ips_name, ha->host_num, scb->cmd.basic_io.command_id);
5397 outl(scb->scb_busaddr, ha->io_addr + IPS_REG_I2O_INMSGQ);
5399 return (IPS_SUCCESS);
5402 /****************************************************************************/
5404 /* Routine Name: ips_issue_i2o_memio */
5406 /* Routine Description: */
5408 /* Send a command down to the controller */
5410 /****************************************************************************/
5412 ips_issue_i2o_memio(ips_ha_t * ha, ips_scb_t * scb)
5415 METHOD_TRACE("ips_issue_i2o_memio", 1);
5417 if (scb->scsi_cmd) {
5418 DEBUG_VAR(2, "(%s%d) ips_issue: cmd 0x%X id %d (%d %d %d)",
5422 scb->cmd.basic_io.command_id,
5423 scb->bus, scb->target_id, scb->lun);
5425 DEBUG_VAR(2, "(%s%d) ips_issue: logical cmd id %d",
5426 ips_name, ha->host_num, scb->cmd.basic_io.command_id);
5429 writel(scb->scb_busaddr, ha->mem_ptr + IPS_REG_I2O_INMSGQ);
5431 return (IPS_SUCCESS);
5434 /****************************************************************************/
5436 /* Routine Name: ips_isintr_copperhead */
5438 /* Routine Description: */
5440 /* Test to see if an interrupt is for us */
5442 /****************************************************************************/
5444 ips_isintr_copperhead(ips_ha_t * ha)
5448 METHOD_TRACE("ips_isintr_copperhead", 2);
5450 Isr = inb(ha->io_addr + IPS_REG_HISR);
5453 /* ?!?! Nothing really there */
5456 if (Isr & IPS_BIT_SCE)
5458 else if (Isr & (IPS_BIT_SQO | IPS_BIT_GHI)) {
5459 /* status queue overflow or GHI */
5460 /* just clear the interrupt */
5461 outb(Isr, ha->io_addr + IPS_REG_HISR);
5467 /****************************************************************************/
5469 /* Routine Name: ips_isintr_copperhead_memio */
5471 /* Routine Description: */
5473 /* Test to see if an interrupt is for us */
5475 /****************************************************************************/
5477 ips_isintr_copperhead_memio(ips_ha_t * ha)
5481 METHOD_TRACE("ips_isintr_memio", 2);
5483 Isr = readb(ha->mem_ptr + IPS_REG_HISR);
5486 /* ?!?! Nothing really there */
5489 if (Isr & IPS_BIT_SCE)
5491 else if (Isr & (IPS_BIT_SQO | IPS_BIT_GHI)) {
5492 /* status queue overflow or GHI */
5493 /* just clear the interrupt */
5494 writeb(Isr, ha->mem_ptr + IPS_REG_HISR);
5500 /****************************************************************************/
5502 /* Routine Name: ips_isintr_morpheus */
5504 /* Routine Description: */
5506 /* Test to see if an interrupt is for us */
5508 /****************************************************************************/
5510 ips_isintr_morpheus(ips_ha_t * ha)
5514 METHOD_TRACE("ips_isintr_morpheus", 2);
5516 Isr = readl(ha->mem_ptr + IPS_REG_I2O_HIR);
5518 if (Isr & IPS_BIT_I2O_OPQI)
5524 /****************************************************************************/
5526 /* Routine Name: ips_wait */
5528 /* Routine Description: */
5530 /* Wait for a command to complete */
5532 /****************************************************************************/
5534 ips_wait(ips_ha_t * ha, int time, int intr)
5539 METHOD_TRACE("ips_wait", 1);
5544 time *= IPS_ONE_SEC; /* convert seconds */
5546 while ((time > 0) && (!done)) {
5547 if (intr == IPS_INTR_ON) {
5548 if (!ha->waitflag) {
5553 } else if (intr == IPS_INTR_IORL) {
5554 if (!ha->waitflag) {
5556 * controller generated an interrupt to
5557 * acknowledge completion of the command
5558 * and ips_intr() has serviced the interrupt.
5566 * NOTE: we already have the io_request_lock so
5567 * even if we get an interrupt it won't get serviced
5568 * until after we finish.
5571 (*ha->func.intr) (ha);
5574 /* This looks like a very evil loop, but it only does this during start-up */
5582 /****************************************************************************/
5584 /* Routine Name: ips_write_driver_status */
5586 /* Routine Description: */
5588 /* Write OS/Driver version to Page 5 of the nvram on the controller */
5590 /****************************************************************************/
5592 ips_write_driver_status(ips_ha_t * ha, int intr)
5594 METHOD_TRACE("ips_write_driver_status", 1);
5596 if (!ips_readwrite_page5(ha, false, intr)) {
5597 IPS_PRINTK(KERN_WARNING, ha->pcidev,
5598 "unable to read NVRAM page 5.\n");
5603 /* check to make sure the page has a valid */
5605 if (le32_to_cpu(ha->nvram->signature) != IPS_NVRAM_P5_SIG) {
5607 "(%s%d) NVRAM page 5 has an invalid signature: %X.",
5608 ips_name, ha->host_num, ha->nvram->signature);
5609 ha->nvram->signature = IPS_NVRAM_P5_SIG;
5613 "(%s%d) Ad Type: %d, Ad Slot: %d, BIOS: %c%c%c%c %c%c%c%c.",
5614 ips_name, ha->host_num, le16_to_cpu(ha->nvram->adapter_type),
5615 ha->nvram->adapter_slot, ha->nvram->bios_high[0],
5616 ha->nvram->bios_high[1], ha->nvram->bios_high[2],
5617 ha->nvram->bios_high[3], ha->nvram->bios_low[0],
5618 ha->nvram->bios_low[1], ha->nvram->bios_low[2],
5619 ha->nvram->bios_low[3]);
5621 ips_get_bios_version(ha, intr);
5623 /* change values (as needed) */
5624 ha->nvram->operating_system = IPS_OS_LINUX;
5625 ha->nvram->adapter_type = ha->ad_type;
5626 memcpy((char *) ha->nvram->driver_high, IPS_VERSION_HIGH, 4);
5627 memcpy((char *) ha->nvram->driver_low, IPS_VERSION_LOW, 4);
5628 memcpy((char *) ha->nvram->bios_high, ha->bios_version, 4);
5629 memcpy((char *) ha->nvram->bios_low, ha->bios_version + 4, 4);
5631 ha->nvram->versioning = 0; /* Indicate the Driver Does Not Support Versioning */
5633 /* now update the page */
5634 if (!ips_readwrite_page5(ha, true, intr)) {
5635 IPS_PRINTK(KERN_WARNING, ha->pcidev,
5636 "unable to write NVRAM page 5.\n");
5641 /* IF NVRAM Page 5 is OK, Use it for Slot Number Info Because Linux Doesn't Do Slots */
5642 ha->slot_num = ha->nvram->adapter_slot;
5647 /****************************************************************************/
5649 /* Routine Name: ips_read_adapter_status */
5651 /* Routine Description: */
5653 /* Do an Inquiry command to the adapter */
5655 /****************************************************************************/
5657 ips_read_adapter_status(ips_ha_t * ha, int intr)
5662 METHOD_TRACE("ips_read_adapter_status", 1);
5664 scb = &ha->scbs[ha->max_cmds - 1];
5666 ips_init_scb(ha, scb);
5668 scb->timeout = ips_cmd_timeout;
5669 scb->cdb[0] = IPS_CMD_ENQUIRY;
5671 scb->cmd.basic_io.op_code = IPS_CMD_ENQUIRY;
5672 scb->cmd.basic_io.command_id = IPS_COMMAND_ID(ha, scb);
5673 scb->cmd.basic_io.sg_count = 0;
5674 scb->cmd.basic_io.lba = 0;
5675 scb->cmd.basic_io.sector_count = 0;
5676 scb->cmd.basic_io.log_drv = 0;
5677 scb->data_len = sizeof (*ha->enq);
5678 scb->cmd.basic_io.sg_addr = ha->enq_busaddr;
5682 ips_send_wait(ha, scb, ips_cmd_timeout, intr)) == IPS_FAILURE)
5683 || (ret == IPS_SUCCESS_IMM)
5684 || ((scb->basic_status & IPS_GSC_STATUS_MASK) > 1))
5690 /****************************************************************************/
5692 /* Routine Name: ips_read_subsystem_parameters */
5694 /* Routine Description: */
5696 /* Read subsystem parameters from the adapter */
5698 /****************************************************************************/
5700 ips_read_subsystem_parameters(ips_ha_t * ha, int intr)
5705 METHOD_TRACE("ips_read_subsystem_parameters", 1);
5707 scb = &ha->scbs[ha->max_cmds - 1];
5709 ips_init_scb(ha, scb);
5711 scb->timeout = ips_cmd_timeout;
5712 scb->cdb[0] = IPS_CMD_GET_SUBSYS;
5714 scb->cmd.basic_io.op_code = IPS_CMD_GET_SUBSYS;
5715 scb->cmd.basic_io.command_id = IPS_COMMAND_ID(ha, scb);
5716 scb->cmd.basic_io.sg_count = 0;
5717 scb->cmd.basic_io.lba = 0;
5718 scb->cmd.basic_io.sector_count = 0;
5719 scb->cmd.basic_io.log_drv = 0;
5720 scb->data_len = sizeof (*ha->subsys);
5721 scb->cmd.basic_io.sg_addr = ha->ioctl_busaddr;
5725 ips_send_wait(ha, scb, ips_cmd_timeout, intr)) == IPS_FAILURE)
5726 || (ret == IPS_SUCCESS_IMM)
5727 || ((scb->basic_status & IPS_GSC_STATUS_MASK) > 1))
5730 memcpy(ha->subsys, ha->ioctl_data, sizeof(*ha->subsys));
5734 /****************************************************************************/
5736 /* Routine Name: ips_read_config */
5738 /* Routine Description: */
5740 /* Read the configuration on the adapter */
5742 /****************************************************************************/
5744 ips_read_config(ips_ha_t * ha, int intr)
5750 METHOD_TRACE("ips_read_config", 1);
5752 /* set defaults for initiator IDs */
5753 for (i = 0; i < 4; i++)
5754 ha->conf->init_id[i] = 7;
5756 scb = &ha->scbs[ha->max_cmds - 1];
5758 ips_init_scb(ha, scb);
5760 scb->timeout = ips_cmd_timeout;
5761 scb->cdb[0] = IPS_CMD_READ_CONF;
5763 scb->cmd.basic_io.op_code = IPS_CMD_READ_CONF;
5764 scb->cmd.basic_io.command_id = IPS_COMMAND_ID(ha, scb);
5765 scb->data_len = sizeof (*ha->conf);
5766 scb->cmd.basic_io.sg_addr = ha->ioctl_busaddr;
5770 ips_send_wait(ha, scb, ips_cmd_timeout, intr)) == IPS_FAILURE)
5771 || (ret == IPS_SUCCESS_IMM)
5772 || ((scb->basic_status & IPS_GSC_STATUS_MASK) > 1)) {
5774 memset(ha->conf, 0, sizeof (IPS_CONF));
5776 /* reset initiator IDs */
5777 for (i = 0; i < 4; i++)
5778 ha->conf->init_id[i] = 7;
5780 /* Allow Completed with Errors, so JCRM can access the Adapter to fix the problems */
5781 if ((scb->basic_status & IPS_GSC_STATUS_MASK) ==
5782 IPS_CMD_CMPLT_WERROR)
5788 memcpy(ha->conf, ha->ioctl_data, sizeof(*ha->conf));
5792 /****************************************************************************/
5794 /* Routine Name: ips_readwrite_page5 */
5796 /* Routine Description: */
5798 /* Read nvram page 5 from the adapter */
5800 /****************************************************************************/
5802 ips_readwrite_page5(ips_ha_t * ha, int write, int intr)
5807 METHOD_TRACE("ips_readwrite_page5", 1);
5809 scb = &ha->scbs[ha->max_cmds - 1];
5811 ips_init_scb(ha, scb);
5813 scb->timeout = ips_cmd_timeout;
5814 scb->cdb[0] = IPS_CMD_RW_NVRAM_PAGE;
5816 scb->cmd.nvram.op_code = IPS_CMD_RW_NVRAM_PAGE;
5817 scb->cmd.nvram.command_id = IPS_COMMAND_ID(ha, scb);
5818 scb->cmd.nvram.page = 5;
5819 scb->cmd.nvram.write = write;
5820 scb->cmd.nvram.reserved = 0;
5821 scb->cmd.nvram.reserved2 = 0;
5822 scb->data_len = sizeof (*ha->nvram);
5823 scb->cmd.nvram.buffer_addr = ha->ioctl_busaddr;
5825 memcpy(ha->ioctl_data, ha->nvram, sizeof(*ha->nvram));
5827 /* issue the command */
5829 ips_send_wait(ha, scb, ips_cmd_timeout, intr)) == IPS_FAILURE)
5830 || (ret == IPS_SUCCESS_IMM)
5831 || ((scb->basic_status & IPS_GSC_STATUS_MASK) > 1)) {
5833 memset(ha->nvram, 0, sizeof (IPS_NVRAM_P5));
5838 memcpy(ha->nvram, ha->ioctl_data, sizeof(*ha->nvram));
5842 /****************************************************************************/
5844 /* Routine Name: ips_clear_adapter */
5846 /* Routine Description: */
5848 /* Clear the stripe lock tables */
5850 /****************************************************************************/
5852 ips_clear_adapter(ips_ha_t * ha, int intr)
5857 METHOD_TRACE("ips_clear_adapter", 1);
5859 scb = &ha->scbs[ha->max_cmds - 1];
5861 ips_init_scb(ha, scb);
5863 scb->timeout = ips_reset_timeout;
5864 scb->cdb[0] = IPS_CMD_CONFIG_SYNC;
5866 scb->cmd.config_sync.op_code = IPS_CMD_CONFIG_SYNC;
5867 scb->cmd.config_sync.command_id = IPS_COMMAND_ID(ha, scb);
5868 scb->cmd.config_sync.channel = 0;
5869 scb->cmd.config_sync.source_target = IPS_POCL;
5870 scb->cmd.config_sync.reserved = 0;
5871 scb->cmd.config_sync.reserved2 = 0;
5872 scb->cmd.config_sync.reserved3 = 0;
5876 ips_send_wait(ha, scb, ips_reset_timeout, intr)) == IPS_FAILURE)
5877 || (ret == IPS_SUCCESS_IMM)
5878 || ((scb->basic_status & IPS_GSC_STATUS_MASK) > 1))
5881 /* send unlock stripe command */
5882 ips_init_scb(ha, scb);
5884 scb->cdb[0] = IPS_CMD_ERROR_TABLE;
5885 scb->timeout = ips_reset_timeout;
5887 scb->cmd.unlock_stripe.op_code = IPS_CMD_ERROR_TABLE;
5888 scb->cmd.unlock_stripe.command_id = IPS_COMMAND_ID(ha, scb);
5889 scb->cmd.unlock_stripe.log_drv = 0;
5890 scb->cmd.unlock_stripe.control = IPS_CSL;
5891 scb->cmd.unlock_stripe.reserved = 0;
5892 scb->cmd.unlock_stripe.reserved2 = 0;
5893 scb->cmd.unlock_stripe.reserved3 = 0;
5897 ips_send_wait(ha, scb, ips_cmd_timeout, intr)) == IPS_FAILURE)
5898 || (ret == IPS_SUCCESS_IMM)
5899 || ((scb->basic_status & IPS_GSC_STATUS_MASK) > 1))
5905 /****************************************************************************/
5907 /* Routine Name: ips_ffdc_reset */
5909 /* Routine Description: */
5911 /* FFDC: write reset info */
5913 /****************************************************************************/
5915 ips_ffdc_reset(ips_ha_t * ha, int intr)
5919 METHOD_TRACE("ips_ffdc_reset", 1);
5921 scb = &ha->scbs[ha->max_cmds - 1];
5923 ips_init_scb(ha, scb);
5925 scb->timeout = ips_cmd_timeout;
5926 scb->cdb[0] = IPS_CMD_FFDC;
5927 scb->cmd.ffdc.op_code = IPS_CMD_FFDC;
5928 scb->cmd.ffdc.command_id = IPS_COMMAND_ID(ha, scb);
5929 scb->cmd.ffdc.reset_count = ha->reset_count;
5930 scb->cmd.ffdc.reset_type = 0x80;
5932 /* convert time to what the card wants */
5933 ips_fix_ffdc_time(ha, scb, ha->last_ffdc);
5936 ips_send_wait(ha, scb, ips_cmd_timeout, intr);
5939 /****************************************************************************/
5941 /* Routine Name: ips_ffdc_time */
5943 /* Routine Description: */
5945 /* FFDC: write time info */
5947 /****************************************************************************/
5949 ips_ffdc_time(ips_ha_t * ha)
5953 METHOD_TRACE("ips_ffdc_time", 1);
5955 DEBUG_VAR(1, "(%s%d) Sending time update.", ips_name, ha->host_num);
5957 scb = &ha->scbs[ha->max_cmds - 1];
5959 ips_init_scb(ha, scb);
5961 scb->timeout = ips_cmd_timeout;
5962 scb->cdb[0] = IPS_CMD_FFDC;
5963 scb->cmd.ffdc.op_code = IPS_CMD_FFDC;
5964 scb->cmd.ffdc.command_id = IPS_COMMAND_ID(ha, scb);
5965 scb->cmd.ffdc.reset_count = 0;
5966 scb->cmd.ffdc.reset_type = 0;
5968 /* convert time to what the card wants */
5969 ips_fix_ffdc_time(ha, scb, ha->last_ffdc);
5972 ips_send_wait(ha, scb, ips_cmd_timeout, IPS_FFDC);
5975 /****************************************************************************/
5977 /* Routine Name: ips_fix_ffdc_time */
5979 /* Routine Description: */
5980 /* Adjust time_t to what the card wants */
5982 /****************************************************************************/
5984 ips_fix_ffdc_time(ips_ha_t * ha, ips_scb_t * scb, time64_t current_time)
5988 METHOD_TRACE("ips_fix_ffdc_time", 1);
5990 time64_to_tm(current_time, 0, &tm);
5992 scb->cmd.ffdc.hour = tm.tm_hour;
5993 scb->cmd.ffdc.minute = tm.tm_min;
5994 scb->cmd.ffdc.second = tm.tm_sec;
5995 scb->cmd.ffdc.yearH = (tm.tm_year + 1900) / 100;
5996 scb->cmd.ffdc.yearL = tm.tm_year % 100;
5997 scb->cmd.ffdc.month = tm.tm_mon + 1;
5998 scb->cmd.ffdc.day = tm.tm_mday;
6001 /****************************************************************************
6002 * BIOS Flash Routines *
6003 ****************************************************************************/
6005 /****************************************************************************/
6007 /* Routine Name: ips_erase_bios */
6009 /* Routine Description: */
6010 /* Erase the BIOS on the adapter */
6012 /****************************************************************************/
6014 ips_erase_bios(ips_ha_t * ha)
6019 METHOD_TRACE("ips_erase_bios", 1);
6023 /* Clear the status register */
6024 outl(0, ha->io_addr + IPS_REG_FLAP);
6025 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6026 udelay(25); /* 25 us */
6028 outb(0x50, ha->io_addr + IPS_REG_FLDP);
6029 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6030 udelay(25); /* 25 us */
6033 outb(0x20, ha->io_addr + IPS_REG_FLDP);
6034 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6035 udelay(25); /* 25 us */
6038 outb(0xD0, ha->io_addr + IPS_REG_FLDP);
6039 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6040 udelay(25); /* 25 us */
6043 outb(0x70, ha->io_addr + IPS_REG_FLDP);
6044 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6045 udelay(25); /* 25 us */
6047 timeout = 80000; /* 80 seconds */
6049 while (timeout > 0) {
6050 if (ha->pcidev->revision == IPS_REVID_TROMBONE64) {
6051 outl(0, ha->io_addr + IPS_REG_FLAP);
6052 udelay(25); /* 25 us */
6055 status = inb(ha->io_addr + IPS_REG_FLDP);
6064 /* check for timeout */
6068 /* try to suspend the erase */
6069 outb(0xB0, ha->io_addr + IPS_REG_FLDP);
6070 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6071 udelay(25); /* 25 us */
6073 /* wait for 10 seconds */
6075 while (timeout > 0) {
6076 if (ha->pcidev->revision == IPS_REVID_TROMBONE64) {
6077 outl(0, ha->io_addr + IPS_REG_FLAP);
6078 udelay(25); /* 25 us */
6081 status = inb(ha->io_addr + IPS_REG_FLDP);
6093 /* check for valid VPP */
6098 /* check for successful flash */
6100 /* sequence error */
6103 /* Otherwise, we were successful */
6105 outb(0x50, ha->io_addr + IPS_REG_FLDP);
6106 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6107 udelay(25); /* 25 us */
6110 outb(0xFF, ha->io_addr + IPS_REG_FLDP);
6111 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6112 udelay(25); /* 25 us */
6117 /****************************************************************************/
6119 /* Routine Name: ips_erase_bios_memio */
6121 /* Routine Description: */
6122 /* Erase the BIOS on the adapter */
6124 /****************************************************************************/
6126 ips_erase_bios_memio(ips_ha_t * ha)
6131 METHOD_TRACE("ips_erase_bios_memio", 1);
6135 /* Clear the status register */
6136 writel(0, ha->mem_ptr + IPS_REG_FLAP);
6137 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6138 udelay(25); /* 25 us */
6140 writeb(0x50, ha->mem_ptr + IPS_REG_FLDP);
6141 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6142 udelay(25); /* 25 us */
6145 writeb(0x20, ha->mem_ptr + IPS_REG_FLDP);
6146 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6147 udelay(25); /* 25 us */
6150 writeb(0xD0, ha->mem_ptr + IPS_REG_FLDP);
6151 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6152 udelay(25); /* 25 us */
6155 writeb(0x70, ha->mem_ptr + IPS_REG_FLDP);
6156 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6157 udelay(25); /* 25 us */
6159 timeout = 80000; /* 80 seconds */
6161 while (timeout > 0) {
6162 if (ha->pcidev->revision == IPS_REVID_TROMBONE64) {
6163 writel(0, ha->mem_ptr + IPS_REG_FLAP);
6164 udelay(25); /* 25 us */
6167 status = readb(ha->mem_ptr + IPS_REG_FLDP);
6176 /* check for timeout */
6180 /* try to suspend the erase */
6181 writeb(0xB0, ha->mem_ptr + IPS_REG_FLDP);
6182 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6183 udelay(25); /* 25 us */
6185 /* wait for 10 seconds */
6187 while (timeout > 0) {
6188 if (ha->pcidev->revision == IPS_REVID_TROMBONE64) {
6189 writel(0, ha->mem_ptr + IPS_REG_FLAP);
6190 udelay(25); /* 25 us */
6193 status = readb(ha->mem_ptr + IPS_REG_FLDP);
6205 /* check for valid VPP */
6210 /* check for successful flash */
6212 /* sequence error */
6215 /* Otherwise, we were successful */
6217 writeb(0x50, ha->mem_ptr + IPS_REG_FLDP);
6218 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6219 udelay(25); /* 25 us */
6222 writeb(0xFF, ha->mem_ptr + IPS_REG_FLDP);
6223 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6224 udelay(25); /* 25 us */
6229 /****************************************************************************/
6231 /* Routine Name: ips_program_bios */
6233 /* Routine Description: */
6234 /* Program the BIOS on the adapter */
6236 /****************************************************************************/
6238 ips_program_bios(ips_ha_t * ha, char *buffer, uint32_t buffersize,
6245 METHOD_TRACE("ips_program_bios", 1);
6249 for (i = 0; i < buffersize; i++) {
6251 outl(i + offset, ha->io_addr + IPS_REG_FLAP);
6252 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6253 udelay(25); /* 25 us */
6255 outb(0x40, ha->io_addr + IPS_REG_FLDP);
6256 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6257 udelay(25); /* 25 us */
6259 outb(buffer[i], ha->io_addr + IPS_REG_FLDP);
6260 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6261 udelay(25); /* 25 us */
6263 /* wait up to one second */
6265 while (timeout > 0) {
6266 if (ha->pcidev->revision == IPS_REVID_TROMBONE64) {
6267 outl(0, ha->io_addr + IPS_REG_FLAP);
6268 udelay(25); /* 25 us */
6271 status = inb(ha->io_addr + IPS_REG_FLDP);
6282 outl(0, ha->io_addr + IPS_REG_FLAP);
6283 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6284 udelay(25); /* 25 us */
6286 outb(0xFF, ha->io_addr + IPS_REG_FLDP);
6287 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6288 udelay(25); /* 25 us */
6293 /* check the status */
6294 if (status & 0x18) {
6295 /* programming error */
6296 outl(0, ha->io_addr + IPS_REG_FLAP);
6297 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6298 udelay(25); /* 25 us */
6300 outb(0xFF, ha->io_addr + IPS_REG_FLDP);
6301 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6302 udelay(25); /* 25 us */
6308 /* Enable reading */
6309 outl(0, ha->io_addr + IPS_REG_FLAP);
6310 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6311 udelay(25); /* 25 us */
6313 outb(0xFF, ha->io_addr + IPS_REG_FLDP);
6314 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6315 udelay(25); /* 25 us */
6320 /****************************************************************************/
6322 /* Routine Name: ips_program_bios_memio */
6324 /* Routine Description: */
6325 /* Program the BIOS on the adapter */
6327 /****************************************************************************/
6329 ips_program_bios_memio(ips_ha_t * ha, char *buffer, uint32_t buffersize,
6336 METHOD_TRACE("ips_program_bios_memio", 1);
6340 for (i = 0; i < buffersize; i++) {
6342 writel(i + offset, ha->mem_ptr + IPS_REG_FLAP);
6343 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6344 udelay(25); /* 25 us */
6346 writeb(0x40, ha->mem_ptr + IPS_REG_FLDP);
6347 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6348 udelay(25); /* 25 us */
6350 writeb(buffer[i], ha->mem_ptr + IPS_REG_FLDP);
6351 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6352 udelay(25); /* 25 us */
6354 /* wait up to one second */
6356 while (timeout > 0) {
6357 if (ha->pcidev->revision == IPS_REVID_TROMBONE64) {
6358 writel(0, ha->mem_ptr + IPS_REG_FLAP);
6359 udelay(25); /* 25 us */
6362 status = readb(ha->mem_ptr + IPS_REG_FLDP);
6373 writel(0, ha->mem_ptr + IPS_REG_FLAP);
6374 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6375 udelay(25); /* 25 us */
6377 writeb(0xFF, ha->mem_ptr + IPS_REG_FLDP);
6378 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6379 udelay(25); /* 25 us */
6384 /* check the status */
6385 if (status & 0x18) {
6386 /* programming error */
6387 writel(0, ha->mem_ptr + IPS_REG_FLAP);
6388 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6389 udelay(25); /* 25 us */
6391 writeb(0xFF, ha->mem_ptr + IPS_REG_FLDP);
6392 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6393 udelay(25); /* 25 us */
6399 /* Enable reading */
6400 writel(0, ha->mem_ptr + IPS_REG_FLAP);
6401 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6402 udelay(25); /* 25 us */
6404 writeb(0xFF, ha->mem_ptr + IPS_REG_FLDP);
6405 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6406 udelay(25); /* 25 us */
6411 /****************************************************************************/
6413 /* Routine Name: ips_verify_bios */
6415 /* Routine Description: */
6416 /* Verify the BIOS on the adapter */
6418 /****************************************************************************/
6420 ips_verify_bios(ips_ha_t * ha, char *buffer, uint32_t buffersize,
6426 METHOD_TRACE("ips_verify_bios", 1);
6429 outl(0, ha->io_addr + IPS_REG_FLAP);
6430 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6431 udelay(25); /* 25 us */
6433 if (inb(ha->io_addr + IPS_REG_FLDP) != 0x55)
6436 outl(1, ha->io_addr + IPS_REG_FLAP);
6437 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6438 udelay(25); /* 25 us */
6439 if (inb(ha->io_addr + IPS_REG_FLDP) != 0xAA)
6443 for (i = 2; i < buffersize; i++) {
6445 outl(i + offset, ha->io_addr + IPS_REG_FLAP);
6446 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6447 udelay(25); /* 25 us */
6449 checksum = (uint8_t) checksum + inb(ha->io_addr + IPS_REG_FLDP);
6460 /****************************************************************************/
6462 /* Routine Name: ips_verify_bios_memio */
6464 /* Routine Description: */
6465 /* Verify the BIOS on the adapter */
6467 /****************************************************************************/
6469 ips_verify_bios_memio(ips_ha_t * ha, char *buffer, uint32_t buffersize,
6475 METHOD_TRACE("ips_verify_bios_memio", 1);
6478 writel(0, ha->mem_ptr + IPS_REG_FLAP);
6479 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6480 udelay(25); /* 25 us */
6482 if (readb(ha->mem_ptr + IPS_REG_FLDP) != 0x55)
6485 writel(1, ha->mem_ptr + IPS_REG_FLAP);
6486 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6487 udelay(25); /* 25 us */
6488 if (readb(ha->mem_ptr + IPS_REG_FLDP) != 0xAA)
6492 for (i = 2; i < buffersize; i++) {
6494 writel(i + offset, ha->mem_ptr + IPS_REG_FLAP);
6495 if (ha->pcidev->revision == IPS_REVID_TROMBONE64)
6496 udelay(25); /* 25 us */
6499 (uint8_t) checksum + readb(ha->mem_ptr + IPS_REG_FLDP);
6510 /****************************************************************************/
6512 /* Routine Name: ips_abort_init */
6514 /* Routine Description: */
6515 /* cleanup routine for a failed adapter initialization */
6516 /****************************************************************************/
6518 ips_abort_init(ips_ha_t * ha, int index)
6522 ips_ha[index] = NULL;
6523 ips_sh[index] = NULL;
6527 /****************************************************************************/
6529 /* Routine Name: ips_shift_controllers */
6531 /* Routine Description: */
6532 /* helper function for ordering adapters */
6533 /****************************************************************************/
6535 ips_shift_controllers(int lowindex, int highindex)
6537 ips_ha_t *ha_sav = ips_ha[highindex];
6538 struct Scsi_Host *sh_sav = ips_sh[highindex];
6541 for (i = highindex; i > lowindex; i--) {
6542 ips_ha[i] = ips_ha[i - 1];
6543 ips_sh[i] = ips_sh[i - 1];
6544 ips_ha[i]->host_num = i;
6546 ha_sav->host_num = lowindex;
6547 ips_ha[lowindex] = ha_sav;
6548 ips_sh[lowindex] = sh_sav;
6551 /****************************************************************************/
6553 /* Routine Name: ips_order_controllers */
6555 /* Routine Description: */
6556 /* place controllers is the "proper" boot order */
6557 /****************************************************************************/
6559 ips_order_controllers(void)
6561 int i, j, tmp, position = 0;
6562 IPS_NVRAM_P5 *nvram;
6565 nvram = ips_ha[0]->nvram;
6567 if (nvram->adapter_order[0]) {
6568 for (i = 1; i <= nvram->adapter_order[0]; i++) {
6569 for (j = position; j < ips_num_controllers; j++) {
6570 switch (ips_ha[j]->ad_type) {
6571 case IPS_ADTYPE_SERVERAID6M:
6572 case IPS_ADTYPE_SERVERAID7M:
6573 if (nvram->adapter_order[i] == 'M') {
6574 ips_shift_controllers(position,
6579 case IPS_ADTYPE_SERVERAID4L:
6580 case IPS_ADTYPE_SERVERAID4M:
6581 case IPS_ADTYPE_SERVERAID4MX:
6582 case IPS_ADTYPE_SERVERAID4LX:
6583 if (nvram->adapter_order[i] == 'N') {
6584 ips_shift_controllers(position,
6589 case IPS_ADTYPE_SERVERAID6I:
6590 case IPS_ADTYPE_SERVERAID5I2:
6591 case IPS_ADTYPE_SERVERAID5I1:
6592 case IPS_ADTYPE_SERVERAID7k:
6593 if (nvram->adapter_order[i] == 'S') {
6594 ips_shift_controllers(position,
6599 case IPS_ADTYPE_SERVERAID:
6600 case IPS_ADTYPE_SERVERAID2:
6601 case IPS_ADTYPE_NAVAJO:
6602 case IPS_ADTYPE_KIOWA:
6603 case IPS_ADTYPE_SERVERAID3L:
6604 case IPS_ADTYPE_SERVERAID3:
6605 case IPS_ADTYPE_SERVERAID4H:
6606 if (nvram->adapter_order[i] == 'A') {
6607 ips_shift_controllers(position,
6617 /* if adapter_order[0], then ordering is complete */
6620 /* old bios, use older ordering */
6622 for (i = position; i < ips_num_controllers; i++) {
6623 if (ips_ha[i]->ad_type == IPS_ADTYPE_SERVERAID5I2 ||
6624 ips_ha[i]->ad_type == IPS_ADTYPE_SERVERAID5I1) {
6625 ips_shift_controllers(position, i);
6630 /* if there were no 5I cards, then don't do any extra ordering */
6633 for (i = position; i < ips_num_controllers; i++) {
6634 if (ips_ha[i]->ad_type == IPS_ADTYPE_SERVERAID4L ||
6635 ips_ha[i]->ad_type == IPS_ADTYPE_SERVERAID4M ||
6636 ips_ha[i]->ad_type == IPS_ADTYPE_SERVERAID4LX ||
6637 ips_ha[i]->ad_type == IPS_ADTYPE_SERVERAID4MX) {
6638 ips_shift_controllers(position, i);
6646 /****************************************************************************/
6648 /* Routine Name: ips_register_scsi */
6650 /* Routine Description: */
6651 /* perform any registration and setup with the scsi layer */
6652 /****************************************************************************/
6654 ips_register_scsi(int index)
6656 struct Scsi_Host *sh;
6657 ips_ha_t *ha, *oldha = ips_ha[index];
6658 sh = scsi_host_alloc(&ips_driver_template, sizeof (ips_ha_t));
6660 IPS_PRINTK(KERN_WARNING, oldha->pcidev,
6661 "Unable to register controller with SCSI subsystem\n");
6665 memcpy(ha, oldha, sizeof (ips_ha_t));
6666 free_irq(oldha->pcidev->irq, oldha);
6667 /* Install the interrupt handler with the new ha */
6668 if (request_irq(ha->pcidev->irq, do_ipsintr, IRQF_SHARED, ips_name, ha)) {
6669 IPS_PRINTK(KERN_WARNING, ha->pcidev,
6670 "Unable to install interrupt handler\n");
6676 /* Store away needed values for later use */
6677 sh->unique_id = (ha->io_addr) ? ha->io_addr : ha->mem_addr;
6678 sh->sg_tablesize = sh->hostt->sg_tablesize;
6679 sh->can_queue = sh->hostt->can_queue;
6680 sh->cmd_per_lun = sh->hostt->cmd_per_lun;
6681 sh->max_sectors = 128;
6683 sh->max_id = ha->ntargets;
6684 sh->max_lun = ha->nlun;
6685 sh->max_channel = ha->nbus - 1;
6686 sh->can_queue = ha->max_cmds - 1;
6688 if (scsi_add_host(sh, &ha->pcidev->dev))
6699 free_irq(ha->pcidev->irq, ha);
6705 /*---------------------------------------------------------------------------*/
6706 /* Routine Name: ips_remove_device */
6708 /* Routine Description: */
6709 /* Remove one Adapter ( Hot Plugging ) */
6710 /*---------------------------------------------------------------------------*/
6712 ips_remove_device(struct pci_dev *pci_dev)
6714 struct Scsi_Host *sh = pci_get_drvdata(pci_dev);
6716 pci_set_drvdata(pci_dev, NULL);
6720 pci_release_regions(pci_dev);
6721 pci_disable_device(pci_dev);
6724 /****************************************************************************/
6726 /* Routine Name: ips_module_init */
6728 /* Routine Description: */
6729 /* function called on module load */
6730 /****************************************************************************/
6732 ips_module_init(void)
6734 #if !defined(__i386__) && !defined(__ia64__) && !defined(__x86_64__)
6735 printk(KERN_ERR "ips: This driver has only been tested on the x86/ia64/x86_64 platforms\n");
6736 add_taint(TAINT_CPU_OUT_OF_SPEC, LOCKDEP_STILL_OK);
6739 if (pci_register_driver(&ips_pci_driver) < 0)
6741 ips_driver_template.module = THIS_MODULE;
6742 ips_order_controllers();
6743 if (!ips_detect(&ips_driver_template)) {
6744 pci_unregister_driver(&ips_pci_driver);
6747 register_reboot_notifier(&ips_notifier);
6751 /****************************************************************************/
6753 /* Routine Name: ips_module_exit */
6755 /* Routine Description: */
6756 /* function called on module unload */
6757 /****************************************************************************/
6759 ips_module_exit(void)
6761 pci_unregister_driver(&ips_pci_driver);
6762 unregister_reboot_notifier(&ips_notifier);
6765 module_init(ips_module_init);
6766 module_exit(ips_module_exit);
6768 /*---------------------------------------------------------------------------*/
6769 /* Routine Name: ips_insert_device */
6771 /* Routine Description: */
6772 /* Add One Adapter ( Hot Plug ) */
6775 /* 0 if Successful, else non-zero */
6776 /*---------------------------------------------------------------------------*/
6778 ips_insert_device(struct pci_dev *pci_dev, const struct pci_device_id *ent)
6783 METHOD_TRACE("ips_insert_device", 1);
6784 rc = pci_enable_device(pci_dev);
6788 rc = pci_request_regions(pci_dev, "ips");
6792 rc = ips_init_phase1(pci_dev, &index);
6794 rc = ips_init_phase2(index);
6797 if (ips_register_scsi(index)) {
6798 ips_free(ips_ha[index]);
6803 ips_num_controllers++;
6805 ips_next_controller = ips_num_controllers;
6809 goto err_out_regions;
6812 pci_set_drvdata(pci_dev, ips_sh[index]);
6816 pci_release_regions(pci_dev);
6818 pci_disable_device(pci_dev);
6822 /*---------------------------------------------------------------------------*/
6823 /* Routine Name: ips_init_phase1 */
6825 /* Routine Description: */
6826 /* Adapter Initialization */
6829 /* 0 if Successful, else non-zero */
6830 /*---------------------------------------------------------------------------*/
6832 ips_init_phase1(struct pci_dev *pci_dev, int *indexPtr)
6841 dma_addr_t dma_address;
6842 char __iomem *ioremap_ptr;
6843 char __iomem *mem_ptr;
6846 METHOD_TRACE("ips_init_phase1", 1);
6847 index = IPS_MAX_ADAPTERS;
6848 for (j = 0; j < IPS_MAX_ADAPTERS; j++) {
6849 if (ips_ha[j] == NULL) {
6855 if (index >= IPS_MAX_ADAPTERS)
6858 /* Init MEM/IO addresses to 0 */
6864 for (j = 0; j < 2; j++) {
6865 if (!pci_resource_start(pci_dev, j))
6868 if (pci_resource_flags(pci_dev, j) & IORESOURCE_IO) {
6869 io_addr = pci_resource_start(pci_dev, j);
6870 io_len = pci_resource_len(pci_dev, j);
6872 mem_addr = pci_resource_start(pci_dev, j);
6873 mem_len = pci_resource_len(pci_dev, j);
6877 /* setup memory mapped area (if applicable) */
6882 base = mem_addr & PAGE_MASK;
6883 offs = mem_addr - base;
6884 ioremap_ptr = ioremap(base, PAGE_SIZE);
6887 mem_ptr = ioremap_ptr + offs;
6893 /* found a controller */
6894 ha = kzalloc(sizeof (ips_ha_t), GFP_KERNEL);
6896 IPS_PRINTK(KERN_WARNING, pci_dev,
6897 "Unable to allocate temporary ha struct\n");
6901 ips_sh[index] = NULL;
6905 /* Store info in HA structure */
6906 ha->io_addr = io_addr;
6907 ha->io_len = io_len;
6908 ha->mem_addr = mem_addr;
6909 ha->mem_len = mem_len;
6910 ha->mem_ptr = mem_ptr;
6911 ha->ioremap_ptr = ioremap_ptr;
6912 ha->host_num = (uint32_t) index;
6913 ha->slot_num = PCI_SLOT(pci_dev->devfn);
6914 ha->pcidev = pci_dev;
6917 * Set the pci_dev's dma_mask. Not all adapters support 64bit
6918 * addressing so don't enable it if the adapter can't support
6919 * it! Also, don't use 64bit addressing if dma addresses
6920 * are guaranteed to be < 4G.
6922 if (sizeof(dma_addr_t) > 4 && IPS_HAS_ENH_SGLIST(ha) &&
6923 !dma_set_mask(&ha->pcidev->dev, DMA_BIT_MASK(64))) {
6924 (ha)->flags |= IPS_HA_ENH_SG;
6926 if (dma_set_mask(&ha->pcidev->dev, DMA_BIT_MASK(32)) != 0) {
6927 printk(KERN_WARNING "Unable to set DMA Mask\n");
6928 return ips_abort_init(ha, index);
6931 if(ips_cd_boot && !ips_FlashData){
6932 ips_FlashData = dma_alloc_coherent(&pci_dev->dev,
6933 PAGE_SIZE << 7, &ips_flashbusaddr, GFP_KERNEL);
6936 ha->enq = dma_alloc_coherent(&pci_dev->dev, sizeof (IPS_ENQ),
6937 &ha->enq_busaddr, GFP_KERNEL);
6939 IPS_PRINTK(KERN_WARNING, pci_dev,
6940 "Unable to allocate host inquiry structure\n");
6941 return ips_abort_init(ha, index);
6944 ha->adapt = dma_alloc_coherent(&pci_dev->dev,
6945 sizeof (IPS_ADAPTER) + sizeof (IPS_IO_CMD),
6946 &dma_address, GFP_KERNEL);
6948 IPS_PRINTK(KERN_WARNING, pci_dev,
6949 "Unable to allocate host adapt & dummy structures\n");
6950 return ips_abort_init(ha, index);
6952 ha->adapt->hw_status_start = dma_address;
6953 ha->dummy = (void *) (ha->adapt + 1);
6957 ha->logical_drive_info = dma_alloc_coherent(&pci_dev->dev,
6958 sizeof (IPS_LD_INFO), &dma_address, GFP_KERNEL);
6959 if (!ha->logical_drive_info) {
6960 IPS_PRINTK(KERN_WARNING, pci_dev,
6961 "Unable to allocate logical drive info structure\n");
6962 return ips_abort_init(ha, index);
6964 ha->logical_drive_info_dma_addr = dma_address;
6967 ha->conf = kmalloc(sizeof (IPS_CONF), GFP_KERNEL);
6970 IPS_PRINTK(KERN_WARNING, pci_dev,
6971 "Unable to allocate host conf structure\n");
6972 return ips_abort_init(ha, index);
6975 ha->nvram = kmalloc(sizeof (IPS_NVRAM_P5), GFP_KERNEL);
6978 IPS_PRINTK(KERN_WARNING, pci_dev,
6979 "Unable to allocate host NVRAM structure\n");
6980 return ips_abort_init(ha, index);
6983 ha->subsys = kmalloc(sizeof (IPS_SUBSYS), GFP_KERNEL);
6986 IPS_PRINTK(KERN_WARNING, pci_dev,
6987 "Unable to allocate host subsystem structure\n");
6988 return ips_abort_init(ha, index);
6991 /* the ioctl buffer is now used during adapter initialization, so its
6992 * successful allocation is now required */
6993 if (ips_ioctlsize < PAGE_SIZE)
6994 ips_ioctlsize = PAGE_SIZE;
6996 ha->ioctl_data = dma_alloc_coherent(&pci_dev->dev, ips_ioctlsize,
6997 &ha->ioctl_busaddr, GFP_KERNEL);
6998 ha->ioctl_len = ips_ioctlsize;
6999 if (!ha->ioctl_data) {
7000 IPS_PRINTK(KERN_WARNING, pci_dev,
7001 "Unable to allocate IOCTL data\n");
7002 return ips_abort_init(ha, index);
7008 ips_setup_funclist(ha);
7010 if ((IPS_IS_MORPHEUS(ha)) || (IPS_IS_MARCO(ha))) {
7011 /* If Morpheus appears dead, reset it */
7012 IsDead = readl(ha->mem_ptr + IPS_REG_I960_MSG1);
7013 if (IsDead == 0xDEADBEEF) {
7014 ips_reset_morpheus(ha);
7019 * Initialize the card if it isn't already
7022 if (!(*ha->func.isinit) (ha)) {
7023 if (!(*ha->func.init) (ha)) {
7025 * Initialization failed
7027 IPS_PRINTK(KERN_WARNING, pci_dev,
7028 "Unable to initialize controller\n");
7029 return ips_abort_init(ha, index);
7037 /*---------------------------------------------------------------------------*/
7038 /* Routine Name: ips_init_phase2 */
7040 /* Routine Description: */
7041 /* Adapter Initialization Phase 2 */
7044 /* 0 if Successful, else non-zero */
7045 /*---------------------------------------------------------------------------*/
7047 ips_init_phase2(int index)
7053 METHOD_TRACE("ips_init_phase2", 1);
7055 ips_ha[index] = NULL;
7059 /* Install the interrupt handler */
7060 if (request_irq(ha->pcidev->irq, do_ipsintr, IRQF_SHARED, ips_name, ha)) {
7061 IPS_PRINTK(KERN_WARNING, ha->pcidev,
7062 "Unable to install interrupt handler\n");
7063 return ips_abort_init(ha, index);
7067 * Allocate a temporary SCB for initialization
7070 if (!ips_allocatescbs(ha)) {
7071 IPS_PRINTK(KERN_WARNING, ha->pcidev,
7072 "Unable to allocate a CCB\n");
7073 free_irq(ha->pcidev->irq, ha);
7074 return ips_abort_init(ha, index);
7077 if (!ips_hainit(ha)) {
7078 IPS_PRINTK(KERN_WARNING, ha->pcidev,
7079 "Unable to initialize controller\n");
7080 free_irq(ha->pcidev->irq, ha);
7081 return ips_abort_init(ha, index);
7083 /* Free the temporary SCB */
7084 ips_deallocatescbs(ha, 1);
7087 if (!ips_allocatescbs(ha)) {
7088 IPS_PRINTK(KERN_WARNING, ha->pcidev,
7089 "Unable to allocate CCBs\n");
7090 free_irq(ha->pcidev->irq, ha);
7091 return ips_abort_init(ha, index);
7097 MODULE_LICENSE("GPL");
7098 MODULE_DESCRIPTION("IBM ServeRAID Adapter Driver " IPS_VER_STRING);
7099 MODULE_VERSION(IPS_VER_STRING);