]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/scsi/gdth.c
scm: lower SCM_MAX_FD
[net-next-2.6.git] / drivers / scsi / gdth.c
CommitLineData
1da177e4
LT
1/************************************************************************
2 * Linux driver for *
3 * ICP vortex GmbH: GDT ISA/EISA/PCI Disk Array Controllers *
4 * Intel Corporation: Storage RAID Controllers *
5 * *
6 * gdth.c *
cbd5f69b 7 * Copyright (C) 1995-06 ICP vortex GmbH, Achim Leubner *
1da177e4 8 * Copyright (C) 2002-04 Intel Corporation *
cbd5f69b 9 * Copyright (C) 2003-06 Adaptec Inc. *
1da177e4
LT
10 * <achim_leubner@adaptec.com> *
11 * *
12 * Additions/Fixes: *
13 * Boji Tony Kannanthanam <boji.t.kannanthanam@intel.com> *
14 * Johannes Dinner <johannes_dinner@adaptec.com> *
15 * *
16 * This program is free software; you can redistribute it and/or modify *
17 * it under the terms of the GNU General Public License as published *
18 * by the Free Software Foundation; either version 2 of the License, *
19 * or (at your option) any later version. *
20 * *
21 * This program is distributed in the hope that it will be useful, *
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
24 * GNU General Public License for more details. *
25 * *
26 * You should have received a copy of the GNU General Public License *
27 * along with this kernel; if not, write to the Free Software *
28 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *
29 * *
8d7a5da4 30 * Linux kernel 2.6.x supported *
1da177e4 31 * *
1da177e4
LT
32 ************************************************************************/
33
34/* All GDT Disk Array Controllers are fully supported by this driver.
35 * This includes the PCI/EISA/ISA SCSI Disk Array Controllers and the
36 * PCI Fibre Channel Disk Array Controllers. See gdth.h for a complete
37 * list of all controller types.
38 *
39 * If you have one or more GDT3000/3020 EISA controllers with
40 * controller BIOS disabled, you have to set the IRQ values with the
41 * command line option "gdth=irq1,irq2,...", where the irq1,irq2,... are
42 * the IRQ values for the EISA controllers.
43 *
44 * After the optional list of IRQ values, other possible
45 * command line options are:
46 * disable:Y disable driver
47 * disable:N enable driver
48 * reserve_mode:0 reserve no drives for the raw service
49 * reserve_mode:1 reserve all not init., removable drives
50 * reserve_mode:2 reserve all not init. drives
51 * reserve_list:h,b,t,l,h,b,t,l,... reserve particular drive(s) with
52 * h- controller no., b- channel no.,
53 * t- target ID, l- LUN
54 * reverse_scan:Y reverse scan order for PCI controllers
55 * reverse_scan:N scan PCI controllers like BIOS
56 * max_ids:x x - target ID count per channel (1..MAXID)
57 * rescan:Y rescan all channels/IDs
58 * rescan:N use all devices found until now
1da177e4
LT
59 * hdr_channel:x x - number of virtual bus for host drives
60 * shared_access:Y disable driver reserve/release protocol to
61 * access a shared resource from several nodes,
575c9687 62 * appropriate controller firmware required
1da177e4
LT
63 * shared_access:N enable driver reserve/release protocol
64 * probe_eisa_isa:Y scan for EISA/ISA controllers
65 * probe_eisa_isa:N do not scan for EISA/ISA controllers
66 * force_dma32:Y use only 32 bit DMA mode
67 * force_dma32:N use 64 bit DMA mode, if supported
68 *
69 * The default values are: "gdth=disable:N,reserve_mode:1,reverse_scan:N,
52759e6a 70 * max_ids:127,rescan:N,hdr_channel:0,
1da177e4
LT
71 * shared_access:Y,probe_eisa_isa:N,force_dma32:N".
72 * Here is another example: "gdth=reserve_list:0,1,2,0,0,1,3,0,rescan:Y".
73 *
74 * When loading the gdth driver as a module, the same options are available.
75 * You can set the IRQs with "IRQ=...". However, the syntax to specify the
76 * options changes slightly. You must replace all ',' between options
77 * with ' ' and all ':' with '=' and you must use
78 * '1' in place of 'Y' and '0' in place of 'N'.
79 *
80 * Default: "modprobe gdth disable=0 reserve_mode=1 reverse_scan=0
52759e6a 81 * max_ids=127 rescan=0 hdr_channel=0 shared_access=0
1da177e4
LT
82 * probe_eisa_isa=0 force_dma32=0"
83 * The other example: "modprobe gdth reserve_list=0,1,2,0,0,1,3,0 rescan=1".
84 */
85
86/* The meaning of the Scsi_Pointer members in this driver is as follows:
87 * ptr: Chaining
d35055a0
BH
88 * this_residual: unused
89 * buffer: unused
3892d88a 90 * dma_handle: unused
d35055a0 91 * buffers_residual: unused
3892d88a 92 * Status: unused
f842b64e
BH
93 * Message: unused
94 * have_data_in: unused
95 * sent_command: unused
96 * phase: unused
1da177e4
LT
97 */
98
99
100/* interrupt coalescing */
101/* #define INT_COAL */
102
103/* statistics */
104#define GDTH_STATISTICS
105
106#include <linux/module.h>
107
108#include <linux/version.h>
109#include <linux/kernel.h>
110#include <linux/types.h>
111#include <linux/pci.h>
112#include <linux/string.h>
113#include <linux/ctype.h>
114#include <linux/ioport.h>
115#include <linux/delay.h>
1da177e4
LT
116#include <linux/interrupt.h>
117#include <linux/in.h>
118#include <linux/proc_fs.h>
119#include <linux/time.h>
120#include <linux/timer.h>
910638ae 121#include <linux/dma-mapping.h>
835cc24a 122#include <linux/list.h>
c45d15d2 123#include <linux/mutex.h>
5a0e3ad6 124#include <linux/slab.h>
cbd5f69b 125
1da177e4
LT
126#ifdef GDTH_RTC
127#include <linux/mc146818rtc.h>
128#endif
129#include <linux/reboot.h>
130
131#include <asm/dma.h>
132#include <asm/system.h>
133#include <asm/io.h>
134#include <asm/uaccess.h>
135#include <linux/spinlock.h>
1da177e4 136#include <linux/blkdev.h>
3892d88a 137#include <linux/scatterlist.h>
1da177e4
LT
138
139#include "scsi.h"
140#include <scsi/scsi_host.h>
cbd5f69b 141#include "gdth.h"
1da177e4 142
c45d15d2 143static DEFINE_MUTEX(gdth_mutex);
1da177e4 144static void gdth_delay(int milliseconds);
1fe6dbf4 145static void gdth_eval_mapping(u32 size, u32 *cyls, int *heads, int *secs);
7d12e780 146static irqreturn_t gdth_interrupt(int irq, void *dev_id);
230e886e 147static irqreturn_t __gdth_interrupt(gdth_ha_str *ha,
10e1b4bc 148 int gdth_from_wait, int* pIndex);
1fe6dbf4 149static int gdth_sync_event(gdth_ha_str *ha, int service, u8 index,
45f1a41b
BH
150 Scsi_Cmnd *scp);
151static int gdth_async_event(gdth_ha_str *ha);
1da177e4
LT
152static void gdth_log_event(gdth_evt_data *dvr, char *buffer);
153
1fe6dbf4 154static void gdth_putq(gdth_ha_str *ha, Scsi_Cmnd *scp, u8 priority);
45f1a41b 155static void gdth_next(gdth_ha_str *ha);
1fe6dbf4 156static int gdth_fill_raw_cmd(gdth_ha_str *ha, Scsi_Cmnd *scp, u8 b);
45f1a41b 157static int gdth_special_cmd(gdth_ha_str *ha, Scsi_Cmnd *scp);
1fe6dbf4
DJ
158static gdth_evt_str *gdth_store_event(gdth_ha_str *ha, u16 source,
159 u16 idx, gdth_evt_data *evt);
1da177e4 160static int gdth_read_event(gdth_ha_str *ha, int handle, gdth_evt_str *estr);
1fe6dbf4 161static void gdth_readapp_event(gdth_ha_str *ha, u8 application,
1da177e4
LT
162 gdth_evt_str *estr);
163static void gdth_clear_events(void);
164
45f1a41b 165static void gdth_copy_internal_data(gdth_ha_str *ha, Scsi_Cmnd *scp,
1fe6dbf4 166 char *buffer, u16 count);
45f1a41b 167static int gdth_internal_cache_cmd(gdth_ha_str *ha, Scsi_Cmnd *scp);
1fe6dbf4 168static int gdth_fill_cache_cmd(gdth_ha_str *ha, Scsi_Cmnd *scp, u16 hdrive);
1da177e4 169
45f1a41b 170static void gdth_enable_int(gdth_ha_str *ha);
45f1a41b
BH
171static int gdth_test_busy(gdth_ha_str *ha);
172static int gdth_get_cmd_index(gdth_ha_str *ha);
173static void gdth_release_event(gdth_ha_str *ha);
1fe6dbf4
DJ
174static int gdth_wait(gdth_ha_str *ha, int index,u32 time);
175static int gdth_internal_cmd(gdth_ha_str *ha, u8 service, u16 opcode,
176 u32 p1, u64 p2,u64 p3);
45f1a41b 177static int gdth_search_drives(gdth_ha_str *ha);
1fe6dbf4 178static int gdth_analyse_hdrive(gdth_ha_str *ha, u16 hdrive);
1da177e4 179
45f1a41b 180static const char *gdth_ctr_name(gdth_ha_str *ha);
1da177e4
LT
181
182static int gdth_open(struct inode *inode, struct file *filep);
183static int gdth_close(struct inode *inode, struct file *filep);
f4927c45
AB
184static long gdth_unlocked_ioctl(struct file *filep, unsigned int cmd,
185 unsigned long arg);
1da177e4 186
45f1a41b 187static void gdth_flush(gdth_ha_str *ha);
cbd5f69b 188static int gdth_queuecommand(Scsi_Cmnd *scp,void (*done)(Scsi_Cmnd *));
3058d5de
BH
189static int __gdth_queuecommand(gdth_ha_str *ha, struct scsi_cmnd *scp,
190 struct gdth_cmndinfo *cmndinfo);
cbd5f69b 191static void gdth_scsi_done(struct scsi_cmnd *scp);
1da177e4
LT
192
193#ifdef DEBUG_GDTH
1fe6dbf4 194static u8 DebugState = DEBUG_GDTH;
1da177e4
LT
195
196#ifdef __SERIAL__
197#define MAX_SERBUF 160
198static void ser_init(void);
199static void ser_puts(char *str);
200static void ser_putc(char c);
201static int ser_printk(const char *fmt, ...);
202static char strbuf[MAX_SERBUF+1];
203#ifdef __COM2__
204#define COM_BASE 0x2f8
205#else
206#define COM_BASE 0x3f8
207#endif
208static void ser_init()
209{
210 unsigned port=COM_BASE;
211
212 outb(0x80,port+3);
213 outb(0,port+1);
214 /* 19200 Baud, if 9600: outb(12,port) */
215 outb(6, port);
216 outb(3,port+3);
217 outb(0,port+1);
218 /*
219 ser_putc('I');
220 ser_putc(' ');
221 */
222}
223
224static void ser_puts(char *str)
225{
226 char *ptr;
227
228 ser_init();
229 for (ptr=str;*ptr;++ptr)
230 ser_putc(*ptr);
231}
232
233static void ser_putc(char c)
234{
235 unsigned port=COM_BASE;
236
237 while ((inb(port+5) & 0x20)==0);
238 outb(c,port);
239 if (c==0x0a)
240 {
241 while ((inb(port+5) & 0x20)==0);
242 outb(0x0d,port);
243 }
244}
245
246static int ser_printk(const char *fmt, ...)
247{
248 va_list args;
249 int i;
250
251 va_start(args,fmt);
252 i = vsprintf(strbuf,fmt,args);
253 ser_puts(strbuf);
254 va_end(args);
255 return i;
256}
257
258#define TRACE(a) {if (DebugState==1) {ser_printk a;}}
259#define TRACE2(a) {if (DebugState==1 || DebugState==2) {ser_printk a;}}
260#define TRACE3(a) {if (DebugState!=0) {ser_printk a;}}
261
262#else /* !__SERIAL__ */
263#define TRACE(a) {if (DebugState==1) {printk a;}}
264#define TRACE2(a) {if (DebugState==1 || DebugState==2) {printk a;}}
265#define TRACE3(a) {if (DebugState!=0) {printk a;}}
266#endif
267
268#else /* !DEBUG */
269#define TRACE(a)
270#define TRACE2(a)
271#define TRACE3(a)
272#endif
273
274#ifdef GDTH_STATISTICS
1fe6dbf4 275static u32 max_rq=0, max_index=0, max_sg=0;
1da177e4 276#ifdef INT_COAL
1fe6dbf4 277static u32 max_int_coal=0;
1da177e4 278#endif
1fe6dbf4 279static u32 act_ints=0, act_ios=0, act_stats=0, act_rq=0;
1da177e4
LT
280static struct timer_list gdth_timer;
281#endif
282
1fe6dbf4 283#define PTR2USHORT(a) (u16)(unsigned long)(a)
6391a113
TK
284#define GDTOFFSOF(a,b) (size_t)&(((a*)0)->b)
285#define INDEX_OK(i,t) ((i)<ARRAY_SIZE(t))
1da177e4 286
1da177e4
LT
287#define BUS_L2P(a,b) ((b)>(a)->virt_bus ? (b-1):(b))
288
aed91cb5 289#ifdef CONFIG_ISA
1fe6dbf4 290static u8 gdth_drq_tab[4] = {5,6,7,7}; /* DRQ table */
aed91cb5 291#endif
c8e91b0a 292#if defined(CONFIG_EISA) || defined(CONFIG_ISA)
1fe6dbf4 293static u8 gdth_irq_tab[6] = {0,10,11,12,14,0}; /* IRQ table */
706a5d45 294#endif
1fe6dbf4 295static u8 gdth_polling; /* polling if TRUE */
1da177e4 296static int gdth_ctr_count = 0; /* controller count */
884f7fba 297static LIST_HEAD(gdth_instances); /* controller list */
1fe6dbf4 298static u8 gdth_write_through = FALSE; /* write through */
1da177e4
LT
299static gdth_evt_str ebuffer[MAX_EVENTS]; /* event buffer */
300static int elastidx;
301static int eoldidx;
302static int major;
303
304#define DIN 1 /* IN data direction */
305#define DOU 2 /* OUT data direction */
306#define DNO DIN /* no data transfer */
307#define DUN DIN /* unknown data direction */
1fe6dbf4 308static u8 gdth_direction_tab[0x100] = {
1da177e4
LT
309 DNO,DNO,DIN,DIN,DOU,DIN,DIN,DOU,DIN,DUN,DOU,DOU,DUN,DUN,DUN,DIN,
310 DNO,DIN,DIN,DOU,DIN,DOU,DNO,DNO,DOU,DNO,DIN,DNO,DIN,DOU,DNO,DUN,
311 DIN,DUN,DIN,DUN,DOU,DIN,DUN,DUN,DIN,DIN,DOU,DNO,DUN,DIN,DOU,DOU,
312 DOU,DOU,DOU,DNO,DIN,DNO,DNO,DIN,DOU,DOU,DOU,DOU,DIN,DOU,DIN,DOU,
313 DOU,DOU,DIN,DIN,DIN,DNO,DUN,DNO,DNO,DNO,DUN,DNO,DOU,DIN,DUN,DUN,
314 DUN,DUN,DUN,DUN,DUN,DOU,DUN,DUN,DUN,DUN,DIN,DUN,DUN,DUN,DUN,DUN,
315 DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,
316 DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,
317 DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DIN,DUN,DOU,DUN,DUN,DUN,DUN,DUN,
318 DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DIN,DUN,
319 DUN,DUN,DUN,DUN,DUN,DNO,DNO,DUN,DIN,DNO,DOU,DUN,DNO,DUN,DOU,DOU,
320 DOU,DOU,DOU,DNO,DUN,DIN,DOU,DIN,DIN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,
321 DUN,DUN,DOU,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,
322 DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,
323 DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DOU,DUN,DUN,DUN,DUN,DUN,
324 DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN,DUN
325};
326
327/* LILO and modprobe/insmod parameters */
328/* IRQ list for GDT3000/3020 EISA controllers */
329static int irq[MAXHA] __initdata =
330{0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
331 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff};
332/* disable driver flag */
333static int disable __initdata = 0;
334/* reserve flag */
335static int reserve_mode = 1;
336/* reserve list */
337static int reserve_list[MAX_RES_ARGS] =
338{0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
339 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
340 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff};
341/* scan order for PCI controllers */
342static int reverse_scan = 0;
343/* virtual channel for the host drives */
344static int hdr_channel = 0;
345/* max. IDs per channel */
346static int max_ids = MAXID;
347/* rescan all IDs */
348static int rescan = 0;
1da177e4
LT
349/* shared access */
350static int shared_access = 1;
351/* enable support for EISA and ISA controllers */
352static int probe_eisa_isa = 0;
353/* 64 bit DMA mode, support for drives > 2 TB, if force_dma32 = 0 */
354static int force_dma32 = 0;
355
356/* parameters for modprobe/insmod */
357module_param_array(irq, int, NULL, 0);
358module_param(disable, int, 0);
359module_param(reserve_mode, int, 0);
360module_param_array(reserve_list, int, NULL, 0);
361module_param(reverse_scan, int, 0);
362module_param(hdr_channel, int, 0);
363module_param(max_ids, int, 0);
364module_param(rescan, int, 0);
1da177e4
LT
365module_param(shared_access, int, 0);
366module_param(probe_eisa_isa, int, 0);
367module_param(force_dma32, int, 0);
368MODULE_AUTHOR("Achim Leubner");
369MODULE_LICENSE("GPL");
370
371/* ioctl interface */
00977a59 372static const struct file_operations gdth_fops = {
f4927c45 373 .unlocked_ioctl = gdth_unlocked_ioctl,
1da177e4
LT
374 .open = gdth_open,
375 .release = gdth_close,
6038f373 376 .llseek = noop_llseek,
1da177e4
LT
377};
378
379#include "gdth_proc.h"
380#include "gdth_proc.c"
381
884f7fba
BH
382static gdth_ha_str *gdth_find_ha(int hanum)
383{
384 gdth_ha_str *ha;
385
386 list_for_each_entry(ha, &gdth_instances, list)
387 if (hanum == ha->hanum)
388 return ha;
389
390 return NULL;
391}
392
3058d5de
BH
393static struct gdth_cmndinfo *gdth_get_cmndinfo(gdth_ha_str *ha)
394{
395 struct gdth_cmndinfo *priv = NULL;
1fe6dbf4 396 unsigned long flags;
3058d5de
BH
397 int i;
398
399 spin_lock_irqsave(&ha->smp_lock, flags);
400
401 for (i=0; i<GDTH_MAXCMDS; ++i) {
402 if (ha->cmndinfo[i].index == 0) {
403 priv = &ha->cmndinfo[i];
3058d5de 404 memset(priv, 0, sizeof(*priv));
ee54cc6a 405 priv->index = i+1;
3058d5de
BH
406 break;
407 }
408 }
409
410 spin_unlock_irqrestore(&ha->smp_lock, flags);
411
412 return priv;
413}
414
415static void gdth_put_cmndinfo(struct gdth_cmndinfo *priv)
416{
417 BUG_ON(!priv);
418 priv->index = 0;
419}
420
1da177e4
LT
421static void gdth_delay(int milliseconds)
422{
423 if (milliseconds == 0) {
424 udelay(1);
425 } else {
426 mdelay(milliseconds);
427 }
428}
429
cbd5f69b
LA
430static void gdth_scsi_done(struct scsi_cmnd *scp)
431{
3058d5de
BH
432 struct gdth_cmndinfo *cmndinfo = gdth_cmnd_priv(scp);
433 int internal_command = cmndinfo->internal_command;
434
b8bff2ae 435 TRACE2(("gdth_scsi_done()\n"));
cbd5f69b 436
3058d5de
BH
437 gdth_put_cmndinfo(cmndinfo);
438 scp->host_scribble = NULL;
439
440 if (internal_command)
b8bff2ae
MW
441 complete((struct completion *)scp->request);
442 else
443 scp->scsi_done(scp);
cbd5f69b
LA
444}
445
446int __gdth_execute(struct scsi_device *sdev, gdth_cmd_str *gdtcmd, char *cmnd,
447 int timeout, u32 *info)
448{
3058d5de 449 gdth_ha_str *ha = shost_priv(sdev->host);
cbd5f69b 450 Scsi_Cmnd *scp;
3058d5de 451 struct gdth_cmndinfo cmndinfo;
6e9a4738 452 DECLARE_COMPLETION_ONSTACK(wait);
cbd5f69b
LA
453 int rval;
454
bbfbbbc1 455 scp = kzalloc(sizeof(*scp), GFP_KERNEL);
cbd5f69b
LA
456 if (!scp)
457 return -ENOMEM;
bbfbbbc1 458
1b96f895
SS
459 scp->sense_buffer = kzalloc(SCSI_SENSE_BUFFERSIZE, GFP_KERNEL);
460 if (!scp->sense_buffer) {
461 kfree(scp);
462 return -ENOMEM;
463 }
464
cbd5f69b 465 scp->device = sdev;
3058d5de
BH
466 memset(&cmndinfo, 0, sizeof(cmndinfo));
467
beb40487
CH
468 /* use request field to save the ptr. to completion struct. */
469 scp->request = (struct request *)&wait;
cbd5f69b 470 scp->cmd_len = 12;
64a87b24 471 scp->cmnd = cmnd;
f842b64e 472 cmndinfo.priority = IOCTL_PRI;
ee54cc6a 473 cmndinfo.internal_cmd_str = gdtcmd;
3058d5de
BH
474 cmndinfo.internal_command = 1;
475
476 TRACE(("__gdth_execute() cmd 0x%x\n", scp->cmnd[0]));
477 __gdth_queuecommand(ha, scp, &cmndinfo);
478
cbd5f69b
LA
479 wait_for_completion(&wait);
480
f842b64e 481 rval = cmndinfo.status;
cbd5f69b 482 if (info)
f842b64e 483 *info = cmndinfo.info;
1b96f895 484 kfree(scp->sense_buffer);
cbd5f69b
LA
485 kfree(scp);
486 return rval;
487}
cbd5f69b
LA
488
489int gdth_execute(struct Scsi_Host *shost, gdth_cmd_str *gdtcmd, char *cmnd,
490 int timeout, u32 *info)
491{
492 struct scsi_device *sdev = scsi_get_host_dev(shost);
493 int rval = __gdth_execute(sdev, gdtcmd, cmnd, timeout, info);
494
495 scsi_free_host_dev(sdev);
496 return rval;
497}
498
1fe6dbf4 499static void gdth_eval_mapping(u32 size, u32 *cyls, int *heads, int *secs)
1da177e4
LT
500{
501 *cyls = size /HEADS/SECS;
502 if (*cyls <= MAXCYLS) {
503 *heads = HEADS;
504 *secs = SECS;
505 } else { /* too high for 64*32 */
506 *cyls = size /MEDHEADS/MEDSECS;
507 if (*cyls <= MAXCYLS) {
508 *heads = MEDHEADS;
509 *secs = MEDSECS;
510 } else { /* too high for 127*63 */
511 *cyls = size /BIGHEADS/BIGSECS;
512 *heads = BIGHEADS;
513 *secs = BIGSECS;
514 }
515 }
516}
517
518/* controller search and initialization functions */
706a5d45 519#ifdef CONFIG_EISA
1fe6dbf4 520static int __init gdth_search_eisa(u16 eisa_adr)
1da177e4 521{
1fe6dbf4 522 u32 id;
1da177e4
LT
523
524 TRACE(("gdth_search_eisa() adr. %x\n",eisa_adr));
525 id = inl(eisa_adr+ID0REG);
526 if (id == GDT3A_ID || id == GDT3B_ID) { /* GDT3000A or GDT3000B */
527 if ((inb(eisa_adr+EISAREG) & 8) == 0)
528 return 0; /* not EISA configured */
529 return 1;
530 }
531 if (id == GDT3_ID) /* GDT3000 */
532 return 1;
533
534 return 0;
535}
706a5d45 536#endif /* CONFIG_EISA */
1da177e4 537
aed91cb5 538#ifdef CONFIG_ISA
1fe6dbf4 539static int __init gdth_search_isa(u32 bios_adr)
1da177e4
LT
540{
541 void __iomem *addr;
1fe6dbf4 542 u32 id;
1da177e4
LT
543
544 TRACE(("gdth_search_isa() bios adr. %x\n",bios_adr));
1fe6dbf4 545 if ((addr = ioremap(bios_adr+BIOS_ID_OFFS, sizeof(u32))) != NULL) {
a52667f3 546 id = readl(addr);
1da177e4
LT
547 iounmap(addr);
548 if (id == GDT2_ID) /* GDT2000 */
549 return 1;
550 }
551 return 0;
552}
aed91cb5 553#endif /* CONFIG_ISA */
1da177e4 554
8514ef27 555#ifdef CONFIG_PCI
8514ef27 556
1fe6dbf4 557static bool gdth_search_vortex(u16 device)
1da177e4 558{
cff26806
JG
559 if (device <= PCI_DEVICE_ID_VORTEX_GDT6555)
560 return true;
561 if (device >= PCI_DEVICE_ID_VORTEX_GDT6x17RP &&
562 device <= PCI_DEVICE_ID_VORTEX_GDTMAXRP)
563 return true;
564 if (device == PCI_DEVICE_ID_VORTEX_GDTNEWRX ||
565 device == PCI_DEVICE_ID_VORTEX_GDTNEWRX2)
566 return true;
567 return false;
1da177e4
LT
568}
569
cff26806
JG
570static int gdth_pci_probe_one(gdth_pci_str *pcistr, gdth_ha_str **ha_out);
571static int gdth_pci_init_one(struct pci_dev *pdev,
572 const struct pci_device_id *ent);
573static void gdth_pci_remove_one(struct pci_dev *pdev);
574static void gdth_remove_one(gdth_ha_str *ha);
575
1da177e4
LT
576/* Vortex only makes RAID controllers.
577 * We do not really want to specify all 550 ids here, so wildcard match.
578 */
cff26806
JG
579static const struct pci_device_id gdthtable[] = {
580 { PCI_VDEVICE(VORTEX, PCI_ANY_ID) },
581 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_SRC) },
582 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_SRC_XSCALE) },
583 { } /* terminate list */
1da177e4 584};
cff26806 585MODULE_DEVICE_TABLE(pci, gdthtable);
1da177e4 586
cff26806
JG
587static struct pci_driver gdth_pci_driver = {
588 .name = "gdth",
589 .id_table = gdthtable,
590 .probe = gdth_pci_init_one,
591 .remove = gdth_pci_remove_one,
592};
593
ced7172a 594static void __devexit gdth_pci_remove_one(struct pci_dev *pdev)
1da177e4 595{
cff26806
JG
596 gdth_ha_str *ha = pci_get_drvdata(pdev);
597
598 pci_set_drvdata(pdev, NULL);
599
600 list_del(&ha->list);
601 gdth_remove_one(ha);
602
603 pci_disable_device(pdev);
604}
605
ced7172a 606static int __devinit gdth_pci_init_one(struct pci_dev *pdev,
cff26806
JG
607 const struct pci_device_id *ent)
608{
1fe6dbf4
DJ
609 u16 vendor = pdev->vendor;
610 u16 device = pdev->device;
611 unsigned long base0, base1, base2;
cff26806
JG
612 int rc;
613 gdth_pci_str gdth_pcistr;
614 gdth_ha_str *ha = NULL;
1da177e4 615
cff26806
JG
616 TRACE(("gdth_search_dev() cnt %d vendor %x device %x\n",
617 gdth_ctr_count, vendor, device));
1da177e4 618
cff26806
JG
619 memset(&gdth_pcistr, 0, sizeof(gdth_pcistr));
620
621 if (vendor == PCI_VENDOR_ID_VORTEX && !gdth_search_vortex(device))
622 return -ENODEV;
623
624 rc = pci_enable_device(pdev);
625 if (rc)
626 return rc;
627
628 if (gdth_ctr_count >= MAXHA)
629 return -EBUSY;
99109301 630
1da177e4 631 /* GDT PCI controller found, resources are already in pdev */
cff26806 632 gdth_pcistr.pdev = pdev;
1da177e4
LT
633 base0 = pci_resource_flags(pdev, 0);
634 base1 = pci_resource_flags(pdev, 1);
635 base2 = pci_resource_flags(pdev, 2);
636 if (device <= PCI_DEVICE_ID_VORTEX_GDT6000B || /* GDT6000/B */
637 device >= PCI_DEVICE_ID_VORTEX_GDT6x17RP) { /* MPR */
638 if (!(base0 & IORESOURCE_MEM))
cff26806
JG
639 return -ENODEV;
640 gdth_pcistr.dpmem = pci_resource_start(pdev, 0);
1da177e4
LT
641 } else { /* GDT6110, GDT6120, .. */
642 if (!(base0 & IORESOURCE_MEM) ||
643 !(base2 & IORESOURCE_MEM) ||
644 !(base1 & IORESOURCE_IO))
cff26806
JG
645 return -ENODEV;
646 gdth_pcistr.dpmem = pci_resource_start(pdev, 2);
647 gdth_pcistr.io = pci_resource_start(pdev, 1);
1da177e4
LT
648 }
649 TRACE2(("Controller found at %d/%d, irq %d, dpmem 0x%lx\n",
cff26806
JG
650 gdth_pcistr.pdev->bus->number,
651 PCI_SLOT(gdth_pcistr.pdev->devfn),
652 gdth_pcistr.irq,
653 gdth_pcistr.dpmem));
1da177e4 654
cff26806
JG
655 rc = gdth_pci_probe_one(&gdth_pcistr, &ha);
656 if (rc)
657 return rc;
1da177e4 658
cff26806 659 return 0;
1da177e4 660}
8514ef27 661#endif /* CONFIG_PCI */
1da177e4 662
706a5d45 663#ifdef CONFIG_EISA
1fe6dbf4 664static int __init gdth_init_eisa(u16 eisa_adr,gdth_ha_str *ha)
1da177e4 665{
1fe6dbf4
DJ
666 u32 retries,id;
667 u8 prot_ver,eisacf,i,irq_found;
1da177e4
LT
668
669 TRACE(("gdth_init_eisa() adr. %x\n",eisa_adr));
670
671 /* disable board interrupts, deinitialize services */
672 outb(0xff,eisa_adr+EDOORREG);
673 outb(0x00,eisa_adr+EDENABREG);
674 outb(0x00,eisa_adr+EINTENABREG);
675
676 outb(0xff,eisa_adr+LDOORREG);
677 retries = INIT_RETRIES;
678 gdth_delay(20);
679 while (inb(eisa_adr+EDOORREG) != 0xff) {
680 if (--retries == 0) {
681 printk("GDT-EISA: Initialization error (DEINIT failed)\n");
682 return 0;
683 }
684 gdth_delay(1);
685 TRACE2(("wait for DEINIT: retries=%d\n",retries));
686 }
687 prot_ver = inb(eisa_adr+MAILBOXREG);
688 outb(0xff,eisa_adr+EDOORREG);
689 if (prot_ver != PROTOCOL_VERSION) {
690 printk("GDT-EISA: Illegal protocol version\n");
691 return 0;
692 }
693 ha->bmic = eisa_adr;
1fe6dbf4 694 ha->brd_phys = (u32)eisa_adr >> 12;
1da177e4
LT
695
696 outl(0,eisa_adr+MAILBOXREG);
697 outl(0,eisa_adr+MAILBOXREG+4);
698 outl(0,eisa_adr+MAILBOXREG+8);
699 outl(0,eisa_adr+MAILBOXREG+12);
700
701 /* detect IRQ */
702 if ((id = inl(eisa_adr+ID0REG)) == GDT3_ID) {
703 ha->oem_id = OEM_ID_ICP;
704 ha->type = GDT_EISA;
705 ha->stype = id;
706 outl(1,eisa_adr+MAILBOXREG+8);
707 outb(0xfe,eisa_adr+LDOORREG);
708 retries = INIT_RETRIES;
709 gdth_delay(20);
710 while (inb(eisa_adr+EDOORREG) != 0xfe) {
711 if (--retries == 0) {
712 printk("GDT-EISA: Initialization error (get IRQ failed)\n");
713 return 0;
714 }
715 gdth_delay(1);
716 }
717 ha->irq = inb(eisa_adr+MAILBOXREG);
718 outb(0xff,eisa_adr+EDOORREG);
719 TRACE2(("GDT3000/3020: IRQ=%d\n",ha->irq));
720 /* check the result */
721 if (ha->irq == 0) {
722 TRACE2(("Unknown IRQ, use IRQ table from cmd line !\n"));
723 for (i = 0, irq_found = FALSE;
724 i < MAXHA && irq[i] != 0xff; ++i) {
725 if (irq[i]==10 || irq[i]==11 || irq[i]==12 || irq[i]==14) {
726 irq_found = TRUE;
727 break;
728 }
729 }
730 if (irq_found) {
731 ha->irq = irq[i];
732 irq[i] = 0;
733 printk("GDT-EISA: Can not detect controller IRQ,\n");
734 printk("Use IRQ setting from command line (IRQ = %d)\n",
735 ha->irq);
736 } else {
737 printk("GDT-EISA: Initialization error (unknown IRQ), Enable\n");
738 printk("the controller BIOS or use command line parameters\n");
739 return 0;
740 }
741 }
742 } else {
743 eisacf = inb(eisa_adr+EISAREG) & 7;
744 if (eisacf > 4) /* level triggered */
745 eisacf -= 4;
746 ha->irq = gdth_irq_tab[eisacf];
747 ha->oem_id = OEM_ID_ICP;
748 ha->type = GDT_EISA;
749 ha->stype = id;
750 }
751
752 ha->dma64_support = 0;
753 return 1;
754}
706a5d45 755#endif /* CONFIG_EISA */
1da177e4 756
aed91cb5 757#ifdef CONFIG_ISA
1fe6dbf4 758static int __init gdth_init_isa(u32 bios_adr,gdth_ha_str *ha)
1da177e4
LT
759{
760 register gdt2_dpram_str __iomem *dp2_ptr;
761 int i;
1fe6dbf4
DJ
762 u8 irq_drq,prot_ver;
763 u32 retries;
1da177e4
LT
764
765 TRACE(("gdth_init_isa() bios adr. %x\n",bios_adr));
766
767 ha->brd = ioremap(bios_adr, sizeof(gdt2_dpram_str));
768 if (ha->brd == NULL) {
769 printk("GDT-ISA: Initialization error (DPMEM remap error)\n");
770 return 0;
771 }
772 dp2_ptr = ha->brd;
a52667f3 773 writeb(1, &dp2_ptr->io.memlock); /* switch off write protection */
1da177e4
LT
774 /* reset interface area */
775 memset_io(&dp2_ptr->u, 0, sizeof(dp2_ptr->u));
a52667f3 776 if (readl(&dp2_ptr->u) != 0) {
1da177e4
LT
777 printk("GDT-ISA: Initialization error (DPMEM write error)\n");
778 iounmap(ha->brd);
779 return 0;
780 }
781
782 /* disable board interrupts, read DRQ and IRQ */
a52667f3
JG
783 writeb(0xff, &dp2_ptr->io.irqdel);
784 writeb(0x00, &dp2_ptr->io.irqen);
785 writeb(0x00, &dp2_ptr->u.ic.S_Status);
786 writeb(0x00, &dp2_ptr->u.ic.Cmd_Index);
1da177e4 787
a52667f3 788 irq_drq = readb(&dp2_ptr->io.rq);
1da177e4
LT
789 for (i=0; i<3; ++i) {
790 if ((irq_drq & 1)==0)
791 break;
792 irq_drq >>= 1;
793 }
794 ha->drq = gdth_drq_tab[i];
795
a52667f3 796 irq_drq = readb(&dp2_ptr->io.rq) >> 3;
1da177e4
LT
797 for (i=1; i<5; ++i) {
798 if ((irq_drq & 1)==0)
799 break;
800 irq_drq >>= 1;
801 }
802 ha->irq = gdth_irq_tab[i];
803
804 /* deinitialize services */
a52667f3
JG
805 writel(bios_adr, &dp2_ptr->u.ic.S_Info[0]);
806 writeb(0xff, &dp2_ptr->u.ic.S_Cmd_Indx);
807 writeb(0, &dp2_ptr->io.event);
1da177e4
LT
808 retries = INIT_RETRIES;
809 gdth_delay(20);
a52667f3 810 while (readb(&dp2_ptr->u.ic.S_Status) != 0xff) {
1da177e4
LT
811 if (--retries == 0) {
812 printk("GDT-ISA: Initialization error (DEINIT failed)\n");
813 iounmap(ha->brd);
814 return 0;
815 }
816 gdth_delay(1);
817 }
1fe6dbf4 818 prot_ver = (u8)readl(&dp2_ptr->u.ic.S_Info[0]);
a52667f3
JG
819 writeb(0, &dp2_ptr->u.ic.Status);
820 writeb(0xff, &dp2_ptr->io.irqdel);
1da177e4
LT
821 if (prot_ver != PROTOCOL_VERSION) {
822 printk("GDT-ISA: Illegal protocol version\n");
823 iounmap(ha->brd);
824 return 0;
825 }
826
827 ha->oem_id = OEM_ID_ICP;
828 ha->type = GDT_ISA;
829 ha->ic_all_size = sizeof(dp2_ptr->u);
830 ha->stype= GDT2_ID;
831 ha->brd_phys = bios_adr >> 4;
832
833 /* special request to controller BIOS */
a52667f3
JG
834 writel(0x00, &dp2_ptr->u.ic.S_Info[0]);
835 writel(0x00, &dp2_ptr->u.ic.S_Info[1]);
836 writel(0x01, &dp2_ptr->u.ic.S_Info[2]);
837 writel(0x00, &dp2_ptr->u.ic.S_Info[3]);
838 writeb(0xfe, &dp2_ptr->u.ic.S_Cmd_Indx);
839 writeb(0, &dp2_ptr->io.event);
1da177e4
LT
840 retries = INIT_RETRIES;
841 gdth_delay(20);
a52667f3 842 while (readb(&dp2_ptr->u.ic.S_Status) != 0xfe) {
1da177e4
LT
843 if (--retries == 0) {
844 printk("GDT-ISA: Initialization error\n");
845 iounmap(ha->brd);
846 return 0;
847 }
848 gdth_delay(1);
849 }
a52667f3
JG
850 writeb(0, &dp2_ptr->u.ic.Status);
851 writeb(0xff, &dp2_ptr->io.irqdel);
1da177e4
LT
852
853 ha->dma64_support = 0;
854 return 1;
855}
aed91cb5 856#endif /* CONFIG_ISA */
1da177e4 857
8514ef27 858#ifdef CONFIG_PCI
ced7172a 859static int __devinit gdth_init_pci(struct pci_dev *pdev, gdth_pci_str *pcistr,
cff26806 860 gdth_ha_str *ha)
1da177e4
LT
861{
862 register gdt6_dpram_str __iomem *dp6_ptr;
863 register gdt6c_dpram_str __iomem *dp6c_ptr;
864 register gdt6m_dpram_str __iomem *dp6m_ptr;
1fe6dbf4
DJ
865 u32 retries;
866 u8 prot_ver;
867 u16 command;
1da177e4
LT
868 int i, found = FALSE;
869
870 TRACE(("gdth_init_pci()\n"));
871
4c9c8d78 872 if (pdev->vendor == PCI_VENDOR_ID_INTEL)
1da177e4
LT
873 ha->oem_id = OEM_ID_INTEL;
874 else
875 ha->oem_id = OEM_ID_ICP;
4c9c8d78 876 ha->brd_phys = (pdev->bus->number << 8) | (pdev->devfn & 0xf8);
1fe6dbf4 877 ha->stype = (u32)pdev->device;
4c9c8d78
JG
878 ha->irq = pdev->irq;
879 ha->pdev = pdev;
1da177e4 880
8e9a8a0d 881 if (ha->pdev->device <= PCI_DEVICE_ID_VORTEX_GDT6000B) { /* GDT6000/B */
1da177e4
LT
882 TRACE2(("init_pci() dpmem %lx irq %d\n",pcistr->dpmem,ha->irq));
883 ha->brd = ioremap(pcistr->dpmem, sizeof(gdt6_dpram_str));
884 if (ha->brd == NULL) {
885 printk("GDT-PCI: Initialization error (DPMEM remap error)\n");
886 return 0;
887 }
888 /* check and reset interface area */
889 dp6_ptr = ha->brd;
a52667f3
JG
890 writel(DPMEM_MAGIC, &dp6_ptr->u);
891 if (readl(&dp6_ptr->u) != DPMEM_MAGIC) {
1da177e4
LT
892 printk("GDT-PCI: Cannot access DPMEM at 0x%lx (shadowed?)\n",
893 pcistr->dpmem);
894 found = FALSE;
895 for (i = 0xC8000; i < 0xE8000; i += 0x4000) {
896 iounmap(ha->brd);
1fe6dbf4 897 ha->brd = ioremap(i, sizeof(u16));
1da177e4
LT
898 if (ha->brd == NULL) {
899 printk("GDT-PCI: Initialization error (DPMEM remap error)\n");
900 return 0;
901 }
a52667f3 902 if (readw(ha->brd) != 0xffff) {
1da177e4
LT
903 TRACE2(("init_pci_old() address 0x%x busy\n", i));
904 continue;
905 }
906 iounmap(ha->brd);
4c9c8d78 907 pci_write_config_dword(pdev, PCI_BASE_ADDRESS_0, i);
1da177e4
LT
908 ha->brd = ioremap(i, sizeof(gdt6_dpram_str));
909 if (ha->brd == NULL) {
910 printk("GDT-PCI: Initialization error (DPMEM remap error)\n");
911 return 0;
912 }
913 dp6_ptr = ha->brd;
a52667f3
JG
914 writel(DPMEM_MAGIC, &dp6_ptr->u);
915 if (readl(&dp6_ptr->u) == DPMEM_MAGIC) {
1da177e4
LT
916 printk("GDT-PCI: Use free address at 0x%x\n", i);
917 found = TRUE;
918 break;
919 }
920 }
921 if (!found) {
922 printk("GDT-PCI: No free address found!\n");
923 iounmap(ha->brd);
924 return 0;
925 }
926 }
927 memset_io(&dp6_ptr->u, 0, sizeof(dp6_ptr->u));
a52667f3 928 if (readl(&dp6_ptr->u) != 0) {
1da177e4
LT
929 printk("GDT-PCI: Initialization error (DPMEM write error)\n");
930 iounmap(ha->brd);
931 return 0;
932 }
933
934 /* disable board interrupts, deinit services */
a52667f3
JG
935 writeb(0xff, &dp6_ptr->io.irqdel);
936 writeb(0x00, &dp6_ptr->io.irqen);
937 writeb(0x00, &dp6_ptr->u.ic.S_Status);
938 writeb(0x00, &dp6_ptr->u.ic.Cmd_Index);
939
940 writel(pcistr->dpmem, &dp6_ptr->u.ic.S_Info[0]);
941 writeb(0xff, &dp6_ptr->u.ic.S_Cmd_Indx);
942 writeb(0, &dp6_ptr->io.event);
1da177e4
LT
943 retries = INIT_RETRIES;
944 gdth_delay(20);
a52667f3 945 while (readb(&dp6_ptr->u.ic.S_Status) != 0xff) {
1da177e4
LT
946 if (--retries == 0) {
947 printk("GDT-PCI: Initialization error (DEINIT failed)\n");
948 iounmap(ha->brd);
949 return 0;
950 }
951 gdth_delay(1);
952 }
1fe6dbf4 953 prot_ver = (u8)readl(&dp6_ptr->u.ic.S_Info[0]);
a52667f3
JG
954 writeb(0, &dp6_ptr->u.ic.S_Status);
955 writeb(0xff, &dp6_ptr->io.irqdel);
1da177e4
LT
956 if (prot_ver != PROTOCOL_VERSION) {
957 printk("GDT-PCI: Illegal protocol version\n");
958 iounmap(ha->brd);
959 return 0;
960 }
961
962 ha->type = GDT_PCI;
963 ha->ic_all_size = sizeof(dp6_ptr->u);
964
965 /* special command to controller BIOS */
a52667f3
JG
966 writel(0x00, &dp6_ptr->u.ic.S_Info[0]);
967 writel(0x00, &dp6_ptr->u.ic.S_Info[1]);
968 writel(0x00, &dp6_ptr->u.ic.S_Info[2]);
969 writel(0x00, &dp6_ptr->u.ic.S_Info[3]);
970 writeb(0xfe, &dp6_ptr->u.ic.S_Cmd_Indx);
971 writeb(0, &dp6_ptr->io.event);
1da177e4
LT
972 retries = INIT_RETRIES;
973 gdth_delay(20);
a52667f3 974 while (readb(&dp6_ptr->u.ic.S_Status) != 0xfe) {
1da177e4
LT
975 if (--retries == 0) {
976 printk("GDT-PCI: Initialization error\n");
977 iounmap(ha->brd);
978 return 0;
979 }
980 gdth_delay(1);
981 }
a52667f3
JG
982 writeb(0, &dp6_ptr->u.ic.S_Status);
983 writeb(0xff, &dp6_ptr->io.irqdel);
1da177e4
LT
984
985 ha->dma64_support = 0;
986
8e9a8a0d 987 } else if (ha->pdev->device <= PCI_DEVICE_ID_VORTEX_GDT6555) { /* GDT6110, ... */
1da177e4
LT
988 ha->plx = (gdt6c_plx_regs *)pcistr->io;
989 TRACE2(("init_pci_new() dpmem %lx irq %d\n",
990 pcistr->dpmem,ha->irq));
991 ha->brd = ioremap(pcistr->dpmem, sizeof(gdt6c_dpram_str));
992 if (ha->brd == NULL) {
993 printk("GDT-PCI: Initialization error (DPMEM remap error)\n");
994 iounmap(ha->brd);
995 return 0;
996 }
997 /* check and reset interface area */
998 dp6c_ptr = ha->brd;
a52667f3
JG
999 writel(DPMEM_MAGIC, &dp6c_ptr->u);
1000 if (readl(&dp6c_ptr->u) != DPMEM_MAGIC) {
1da177e4
LT
1001 printk("GDT-PCI: Cannot access DPMEM at 0x%lx (shadowed?)\n",
1002 pcistr->dpmem);
1003 found = FALSE;
1004 for (i = 0xC8000; i < 0xE8000; i += 0x4000) {
1005 iounmap(ha->brd);
1fe6dbf4 1006 ha->brd = ioremap(i, sizeof(u16));
1da177e4
LT
1007 if (ha->brd == NULL) {
1008 printk("GDT-PCI: Initialization error (DPMEM remap error)\n");
1009 return 0;
1010 }
a52667f3 1011 if (readw(ha->brd) != 0xffff) {
1da177e4
LT
1012 TRACE2(("init_pci_plx() address 0x%x busy\n", i));
1013 continue;
1014 }
1015 iounmap(ha->brd);
4c9c8d78 1016 pci_write_config_dword(pdev, PCI_BASE_ADDRESS_2, i);
1da177e4
LT
1017 ha->brd = ioremap(i, sizeof(gdt6c_dpram_str));
1018 if (ha->brd == NULL) {
1019 printk("GDT-PCI: Initialization error (DPMEM remap error)\n");
1020 return 0;
1021 }
1022 dp6c_ptr = ha->brd;
a52667f3
JG
1023 writel(DPMEM_MAGIC, &dp6c_ptr->u);
1024 if (readl(&dp6c_ptr->u) == DPMEM_MAGIC) {
1da177e4
LT
1025 printk("GDT-PCI: Use free address at 0x%x\n", i);
1026 found = TRUE;
1027 break;
1028 }
1029 }
1030 if (!found) {
1031 printk("GDT-PCI: No free address found!\n");
1032 iounmap(ha->brd);
1033 return 0;
1034 }
1035 }
1036 memset_io(&dp6c_ptr->u, 0, sizeof(dp6c_ptr->u));
a52667f3 1037 if (readl(&dp6c_ptr->u) != 0) {
1da177e4
LT
1038 printk("GDT-PCI: Initialization error (DPMEM write error)\n");
1039 iounmap(ha->brd);
1040 return 0;
1041 }
1042
1043 /* disable board interrupts, deinit services */
1044 outb(0x00,PTR2USHORT(&ha->plx->control1));
1045 outb(0xff,PTR2USHORT(&ha->plx->edoor_reg));
1046
a52667f3
JG
1047 writeb(0x00, &dp6c_ptr->u.ic.S_Status);
1048 writeb(0x00, &dp6c_ptr->u.ic.Cmd_Index);
1da177e4 1049
a52667f3
JG
1050 writel(pcistr->dpmem, &dp6c_ptr->u.ic.S_Info[0]);
1051 writeb(0xff, &dp6c_ptr->u.ic.S_Cmd_Indx);
1da177e4
LT
1052
1053 outb(1,PTR2USHORT(&ha->plx->ldoor_reg));
1054
1055 retries = INIT_RETRIES;
1056 gdth_delay(20);
a52667f3 1057 while (readb(&dp6c_ptr->u.ic.S_Status) != 0xff) {
1da177e4
LT
1058 if (--retries == 0) {
1059 printk("GDT-PCI: Initialization error (DEINIT failed)\n");
1060 iounmap(ha->brd);
1061 return 0;
1062 }
1063 gdth_delay(1);
1064 }
1fe6dbf4 1065 prot_ver = (u8)readl(&dp6c_ptr->u.ic.S_Info[0]);
a52667f3 1066 writeb(0, &dp6c_ptr->u.ic.Status);
1da177e4
LT
1067 if (prot_ver != PROTOCOL_VERSION) {
1068 printk("GDT-PCI: Illegal protocol version\n");
1069 iounmap(ha->brd);
1070 return 0;
1071 }
1072
1073 ha->type = GDT_PCINEW;
1074 ha->ic_all_size = sizeof(dp6c_ptr->u);
1075
1076 /* special command to controller BIOS */
a52667f3
JG
1077 writel(0x00, &dp6c_ptr->u.ic.S_Info[0]);
1078 writel(0x00, &dp6c_ptr->u.ic.S_Info[1]);
1079 writel(0x00, &dp6c_ptr->u.ic.S_Info[2]);
1080 writel(0x00, &dp6c_ptr->u.ic.S_Info[3]);
1081 writeb(0xfe, &dp6c_ptr->u.ic.S_Cmd_Indx);
1da177e4
LT
1082
1083 outb(1,PTR2USHORT(&ha->plx->ldoor_reg));
1084
1085 retries = INIT_RETRIES;
1086 gdth_delay(20);
a52667f3 1087 while (readb(&dp6c_ptr->u.ic.S_Status) != 0xfe) {
1da177e4
LT
1088 if (--retries == 0) {
1089 printk("GDT-PCI: Initialization error\n");
1090 iounmap(ha->brd);
1091 return 0;
1092 }
1093 gdth_delay(1);
1094 }
a52667f3 1095 writeb(0, &dp6c_ptr->u.ic.S_Status);
1da177e4
LT
1096
1097 ha->dma64_support = 0;
1098
1099 } else { /* MPR */
1100 TRACE2(("init_pci_mpr() dpmem %lx irq %d\n",pcistr->dpmem,ha->irq));
1101 ha->brd = ioremap(pcistr->dpmem, sizeof(gdt6m_dpram_str));
1102 if (ha->brd == NULL) {
1103 printk("GDT-PCI: Initialization error (DPMEM remap error)\n");
1104 return 0;
1105 }
1106
1107 /* manipulate config. space to enable DPMEM, start RP controller */
4c9c8d78 1108 pci_read_config_word(pdev, PCI_COMMAND, &command);
1da177e4 1109 command |= 6;
4c9c8d78
JG
1110 pci_write_config_word(pdev, PCI_COMMAND, command);
1111 if (pci_resource_start(pdev, 8) == 1UL)
1112 pci_resource_start(pdev, 8) = 0UL;
1da177e4 1113 i = 0xFEFF0001UL;
4c9c8d78 1114 pci_write_config_dword(pdev, PCI_ROM_ADDRESS, i);
1da177e4 1115 gdth_delay(1);
4c9c8d78
JG
1116 pci_write_config_dword(pdev, PCI_ROM_ADDRESS,
1117 pci_resource_start(pdev, 8));
1da177e4
LT
1118
1119 dp6m_ptr = ha->brd;
1120
1121 /* Ensure that it is safe to access the non HW portions of DPMEM.
1122 * Aditional check needed for Xscale based RAID controllers */
a52667f3 1123 while( ((int)readb(&dp6m_ptr->i960r.sema0_reg) ) & 3 )
1da177e4
LT
1124 gdth_delay(1);
1125
1126 /* check and reset interface area */
a52667f3
JG
1127 writel(DPMEM_MAGIC, &dp6m_ptr->u);
1128 if (readl(&dp6m_ptr->u) != DPMEM_MAGIC) {
1da177e4
LT
1129 printk("GDT-PCI: Cannot access DPMEM at 0x%lx (shadowed?)\n",
1130 pcistr->dpmem);
1131 found = FALSE;
1132 for (i = 0xC8000; i < 0xE8000; i += 0x4000) {
1133 iounmap(ha->brd);
1fe6dbf4 1134 ha->brd = ioremap(i, sizeof(u16));
1da177e4
LT
1135 if (ha->brd == NULL) {
1136 printk("GDT-PCI: Initialization error (DPMEM remap error)\n");
1137 return 0;
1138 }
a52667f3 1139 if (readw(ha->brd) != 0xffff) {
1da177e4
LT
1140 TRACE2(("init_pci_mpr() address 0x%x busy\n", i));
1141 continue;
1142 }
1143 iounmap(ha->brd);
4c9c8d78 1144 pci_write_config_dword(pdev, PCI_BASE_ADDRESS_0, i);
1da177e4
LT
1145 ha->brd = ioremap(i, sizeof(gdt6m_dpram_str));
1146 if (ha->brd == NULL) {
1147 printk("GDT-PCI: Initialization error (DPMEM remap error)\n");
1148 return 0;
1149 }
1150 dp6m_ptr = ha->brd;
a52667f3
JG
1151 writel(DPMEM_MAGIC, &dp6m_ptr->u);
1152 if (readl(&dp6m_ptr->u) == DPMEM_MAGIC) {
1da177e4
LT
1153 printk("GDT-PCI: Use free address at 0x%x\n", i);
1154 found = TRUE;
1155 break;
1156 }
1157 }
1158 if (!found) {
1159 printk("GDT-PCI: No free address found!\n");
1160 iounmap(ha->brd);
1161 return 0;
1162 }
1163 }
1164 memset_io(&dp6m_ptr->u, 0, sizeof(dp6m_ptr->u));
1165
1166 /* disable board interrupts, deinit services */
a52667f3 1167 writeb(readb(&dp6m_ptr->i960r.edoor_en_reg) | 4,
1da177e4 1168 &dp6m_ptr->i960r.edoor_en_reg);
a52667f3
JG
1169 writeb(0xff, &dp6m_ptr->i960r.edoor_reg);
1170 writeb(0x00, &dp6m_ptr->u.ic.S_Status);
1171 writeb(0x00, &dp6m_ptr->u.ic.Cmd_Index);
1da177e4 1172
a52667f3
JG
1173 writel(pcistr->dpmem, &dp6m_ptr->u.ic.S_Info[0]);
1174 writeb(0xff, &dp6m_ptr->u.ic.S_Cmd_Indx);
1175 writeb(1, &dp6m_ptr->i960r.ldoor_reg);
1da177e4
LT
1176 retries = INIT_RETRIES;
1177 gdth_delay(20);
a52667f3 1178 while (readb(&dp6m_ptr->u.ic.S_Status) != 0xff) {
1da177e4
LT
1179 if (--retries == 0) {
1180 printk("GDT-PCI: Initialization error (DEINIT failed)\n");
1181 iounmap(ha->brd);
1182 return 0;
1183 }
1184 gdth_delay(1);
1185 }
1fe6dbf4 1186 prot_ver = (u8)readl(&dp6m_ptr->u.ic.S_Info[0]);
a52667f3 1187 writeb(0, &dp6m_ptr->u.ic.S_Status);
1da177e4
LT
1188 if (prot_ver != PROTOCOL_VERSION) {
1189 printk("GDT-PCI: Illegal protocol version\n");
1190 iounmap(ha->brd);
1191 return 0;
1192 }
1193
1194 ha->type = GDT_PCIMPR;
1195 ha->ic_all_size = sizeof(dp6m_ptr->u);
1196
1197 /* special command to controller BIOS */
a52667f3
JG
1198 writel(0x00, &dp6m_ptr->u.ic.S_Info[0]);
1199 writel(0x00, &dp6m_ptr->u.ic.S_Info[1]);
1200 writel(0x00, &dp6m_ptr->u.ic.S_Info[2]);
1201 writel(0x00, &dp6m_ptr->u.ic.S_Info[3]);
1202 writeb(0xfe, &dp6m_ptr->u.ic.S_Cmd_Indx);
1203 writeb(1, &dp6m_ptr->i960r.ldoor_reg);
1da177e4
LT
1204 retries = INIT_RETRIES;
1205 gdth_delay(20);
a52667f3 1206 while (readb(&dp6m_ptr->u.ic.S_Status) != 0xfe) {
1da177e4
LT
1207 if (--retries == 0) {
1208 printk("GDT-PCI: Initialization error\n");
1209 iounmap(ha->brd);
1210 return 0;
1211 }
1212 gdth_delay(1);
1213 }
a52667f3 1214 writeb(0, &dp6m_ptr->u.ic.S_Status);
1da177e4
LT
1215
1216 /* read FW version to detect 64-bit DMA support */
a52667f3
JG
1217 writeb(0xfd, &dp6m_ptr->u.ic.S_Cmd_Indx);
1218 writeb(1, &dp6m_ptr->i960r.ldoor_reg);
1da177e4
LT
1219 retries = INIT_RETRIES;
1220 gdth_delay(20);
a52667f3 1221 while (readb(&dp6m_ptr->u.ic.S_Status) != 0xfd) {
1da177e4
LT
1222 if (--retries == 0) {
1223 printk("GDT-PCI: Initialization error (DEINIT failed)\n");
1224 iounmap(ha->brd);
1225 return 0;
1226 }
1227 gdth_delay(1);
1228 }
1fe6dbf4 1229 prot_ver = (u8)(readl(&dp6m_ptr->u.ic.S_Info[0]) >> 16);
a52667f3 1230 writeb(0, &dp6m_ptr->u.ic.S_Status);
1da177e4
LT
1231 if (prot_ver < 0x2b) /* FW < x.43: no 64-bit DMA support */
1232 ha->dma64_support = 0;
1233 else
1234 ha->dma64_support = 1;
1235 }
1236
1237 return 1;
1238}
8514ef27 1239#endif /* CONFIG_PCI */
1da177e4
LT
1240
1241/* controller protocol functions */
1242
ced7172a 1243static void __devinit gdth_enable_int(gdth_ha_str *ha)
1da177e4 1244{
1fe6dbf4 1245 unsigned long flags;
1da177e4
LT
1246 gdt2_dpram_str __iomem *dp2_ptr;
1247 gdt6_dpram_str __iomem *dp6_ptr;
1248 gdt6m_dpram_str __iomem *dp6m_ptr;
1249
45f1a41b 1250 TRACE(("gdth_enable_int() hanum %d\n",ha->hanum));
1da177e4
LT
1251 spin_lock_irqsave(&ha->smp_lock, flags);
1252
1253 if (ha->type == GDT_EISA) {
1254 outb(0xff, ha->bmic + EDOORREG);
1255 outb(0xff, ha->bmic + EDENABREG);
1256 outb(0x01, ha->bmic + EINTENABREG);
1257 } else if (ha->type == GDT_ISA) {
1258 dp2_ptr = ha->brd;
a52667f3
JG
1259 writeb(1, &dp2_ptr->io.irqdel);
1260 writeb(0, &dp2_ptr->u.ic.Cmd_Index);
1261 writeb(1, &dp2_ptr->io.irqen);
1da177e4
LT
1262 } else if (ha->type == GDT_PCI) {
1263 dp6_ptr = ha->brd;
a52667f3
JG
1264 writeb(1, &dp6_ptr->io.irqdel);
1265 writeb(0, &dp6_ptr->u.ic.Cmd_Index);
1266 writeb(1, &dp6_ptr->io.irqen);
1da177e4
LT
1267 } else if (ha->type == GDT_PCINEW) {
1268 outb(0xff, PTR2USHORT(&ha->plx->edoor_reg));
1269 outb(0x03, PTR2USHORT(&ha->plx->control1));
1270 } else if (ha->type == GDT_PCIMPR) {
1271 dp6m_ptr = ha->brd;
a52667f3
JG
1272 writeb(0xff, &dp6m_ptr->i960r.edoor_reg);
1273 writeb(readb(&dp6m_ptr->i960r.edoor_en_reg) & ~4,
1da177e4
LT
1274 &dp6m_ptr->i960r.edoor_en_reg);
1275 }
1276 spin_unlock_irqrestore(&ha->smp_lock, flags);
1277}
1278
10e1b4bc 1279/* return IStatus if interrupt was from this card else 0 */
1fe6dbf4 1280static u8 gdth_get_status(gdth_ha_str *ha)
1da177e4 1281{
1fe6dbf4 1282 u8 IStatus = 0;
10e1b4bc 1283
230e886e 1284 TRACE(("gdth_get_status() irq %d ctr_count %d\n", ha->irq, gdth_ctr_count));
1da177e4 1285
1da177e4 1286 if (ha->type == GDT_EISA)
1fe6dbf4 1287 IStatus = inb((u16)ha->bmic + EDOORREG);
1da177e4 1288 else if (ha->type == GDT_ISA)
10e1b4bc 1289 IStatus =
a52667f3 1290 readb(&((gdt2_dpram_str __iomem *)ha->brd)->u.ic.Cmd_Index);
1da177e4 1291 else if (ha->type == GDT_PCI)
10e1b4bc 1292 IStatus =
a52667f3 1293 readb(&((gdt6_dpram_str __iomem *)ha->brd)->u.ic.Cmd_Index);
1da177e4 1294 else if (ha->type == GDT_PCINEW)
10e1b4bc 1295 IStatus = inb(PTR2USHORT(&ha->plx->edoor_reg));
1da177e4 1296 else if (ha->type == GDT_PCIMPR)
10e1b4bc 1297 IStatus =
a52667f3 1298 readb(&((gdt6m_dpram_str __iomem *)ha->brd)->i960r.edoor_reg);
10e1b4bc
BH
1299
1300 return IStatus;
1da177e4 1301}
10e1b4bc 1302
45f1a41b 1303static int gdth_test_busy(gdth_ha_str *ha)
1da177e4 1304{
1da177e4
LT
1305 register int gdtsema0 = 0;
1306
45f1a41b
BH
1307 TRACE(("gdth_test_busy() hanum %d\n", ha->hanum));
1308
1da177e4
LT
1309 if (ha->type == GDT_EISA)
1310 gdtsema0 = (int)inb(ha->bmic + SEMA0REG);
1311 else if (ha->type == GDT_ISA)
a52667f3 1312 gdtsema0 = (int)readb(&((gdt2_dpram_str __iomem *)ha->brd)->u.ic.Sema0);
1da177e4 1313 else if (ha->type == GDT_PCI)
a52667f3 1314 gdtsema0 = (int)readb(&((gdt6_dpram_str __iomem *)ha->brd)->u.ic.Sema0);
1da177e4
LT
1315 else if (ha->type == GDT_PCINEW)
1316 gdtsema0 = (int)inb(PTR2USHORT(&ha->plx->sema0_reg));
1317 else if (ha->type == GDT_PCIMPR)
1318 gdtsema0 =
a52667f3 1319 (int)readb(&((gdt6m_dpram_str __iomem *)ha->brd)->i960r.sema0_reg);
1da177e4
LT
1320
1321 return (gdtsema0 & 1);
1322}
1323
1324
45f1a41b 1325static int gdth_get_cmd_index(gdth_ha_str *ha)
1da177e4 1326{
1da177e4
LT
1327 int i;
1328
45f1a41b 1329 TRACE(("gdth_get_cmd_index() hanum %d\n", ha->hanum));
1da177e4 1330
1da177e4
LT
1331 for (i=0; i<GDTH_MAXCMDS; ++i) {
1332 if (ha->cmd_tab[i].cmnd == UNUSED_CMND) {
1333 ha->cmd_tab[i].cmnd = ha->pccb->RequestBuffer;
1334 ha->cmd_tab[i].service = ha->pccb->Service;
1fe6dbf4 1335 ha->pccb->CommandIndex = (u32)i+2;
1da177e4
LT
1336 return (i+2);
1337 }
1338 }
1339 return 0;
1340}
1341
1342
45f1a41b 1343static void gdth_set_sema0(gdth_ha_str *ha)
1da177e4 1344{
45f1a41b 1345 TRACE(("gdth_set_sema0() hanum %d\n", ha->hanum));
1da177e4 1346
1da177e4
LT
1347 if (ha->type == GDT_EISA) {
1348 outb(1, ha->bmic + SEMA0REG);
1349 } else if (ha->type == GDT_ISA) {
a52667f3 1350 writeb(1, &((gdt2_dpram_str __iomem *)ha->brd)->u.ic.Sema0);
1da177e4 1351 } else if (ha->type == GDT_PCI) {
a52667f3 1352 writeb(1, &((gdt6_dpram_str __iomem *)ha->brd)->u.ic.Sema0);
1da177e4
LT
1353 } else if (ha->type == GDT_PCINEW) {
1354 outb(1, PTR2USHORT(&ha->plx->sema0_reg));
1355 } else if (ha->type == GDT_PCIMPR) {
a52667f3 1356 writeb(1, &((gdt6m_dpram_str __iomem *)ha->brd)->i960r.sema0_reg);
1da177e4
LT
1357 }
1358}
1359
1360
45f1a41b 1361static void gdth_copy_command(gdth_ha_str *ha)
1da177e4 1362{
1da177e4
LT
1363 register gdth_cmd_str *cmd_ptr;
1364 register gdt6m_dpram_str __iomem *dp6m_ptr;
1365 register gdt6c_dpram_str __iomem *dp6c_ptr;
1366 gdt6_dpram_str __iomem *dp6_ptr;
1367 gdt2_dpram_str __iomem *dp2_ptr;
1fe6dbf4 1368 u16 cp_count,dp_offset,cmd_no;
1da177e4 1369
45f1a41b 1370 TRACE(("gdth_copy_command() hanum %d\n", ha->hanum));
1da177e4 1371
1da177e4
LT
1372 cp_count = ha->cmd_len;
1373 dp_offset= ha->cmd_offs_dpmem;
1374 cmd_no = ha->cmd_cnt;
1375 cmd_ptr = ha->pccb;
1376
1377 ++ha->cmd_cnt;
1378 if (ha->type == GDT_EISA)
1379 return; /* no DPMEM, no copy */
1380
1381 /* set cpcount dword aligned */
1382 if (cp_count & 3)
1383 cp_count += (4 - (cp_count & 3));
1384
1385 ha->cmd_offs_dpmem += cp_count;
1386
1387 /* set offset and service, copy command to DPMEM */
1388 if (ha->type == GDT_ISA) {
1389 dp2_ptr = ha->brd;
a52667f3 1390 writew(dp_offset + DPMEM_COMMAND_OFFSET,
1da177e4 1391 &dp2_ptr->u.ic.comm_queue[cmd_no].offset);
1fe6dbf4 1392 writew((u16)cmd_ptr->Service,
1da177e4
LT
1393 &dp2_ptr->u.ic.comm_queue[cmd_no].serv_id);
1394 memcpy_toio(&dp2_ptr->u.ic.gdt_dpr_cmd[dp_offset],cmd_ptr,cp_count);
1395 } else if (ha->type == GDT_PCI) {
1396 dp6_ptr = ha->brd;
a52667f3 1397 writew(dp_offset + DPMEM_COMMAND_OFFSET,
1da177e4 1398 &dp6_ptr->u.ic.comm_queue[cmd_no].offset);
1fe6dbf4 1399 writew((u16)cmd_ptr->Service,
1da177e4
LT
1400 &dp6_ptr->u.ic.comm_queue[cmd_no].serv_id);
1401 memcpy_toio(&dp6_ptr->u.ic.gdt_dpr_cmd[dp_offset],cmd_ptr,cp_count);
1402 } else if (ha->type == GDT_PCINEW) {
1403 dp6c_ptr = ha->brd;
a52667f3 1404 writew(dp_offset + DPMEM_COMMAND_OFFSET,
1da177e4 1405 &dp6c_ptr->u.ic.comm_queue[cmd_no].offset);
1fe6dbf4 1406 writew((u16)cmd_ptr->Service,
1da177e4
LT
1407 &dp6c_ptr->u.ic.comm_queue[cmd_no].serv_id);
1408 memcpy_toio(&dp6c_ptr->u.ic.gdt_dpr_cmd[dp_offset],cmd_ptr,cp_count);
1409 } else if (ha->type == GDT_PCIMPR) {
1410 dp6m_ptr = ha->brd;
a52667f3 1411 writew(dp_offset + DPMEM_COMMAND_OFFSET,
1da177e4 1412 &dp6m_ptr->u.ic.comm_queue[cmd_no].offset);
1fe6dbf4 1413 writew((u16)cmd_ptr->Service,
1da177e4
LT
1414 &dp6m_ptr->u.ic.comm_queue[cmd_no].serv_id);
1415 memcpy_toio(&dp6m_ptr->u.ic.gdt_dpr_cmd[dp_offset],cmd_ptr,cp_count);
1416 }
1417}
1418
1419
45f1a41b 1420static void gdth_release_event(gdth_ha_str *ha)
1da177e4 1421{
45f1a41b 1422 TRACE(("gdth_release_event() hanum %d\n", ha->hanum));
1da177e4
LT
1423
1424#ifdef GDTH_STATISTICS
1425 {
1fe6dbf4 1426 u32 i,j;
1da177e4
LT
1427 for (i=0,j=0; j<GDTH_MAXCMDS; ++j) {
1428 if (ha->cmd_tab[j].cmnd != UNUSED_CMND)
1429 ++i;
1430 }
1431 if (max_index < i) {
1432 max_index = i;
1fe6dbf4 1433 TRACE3(("GDT: max_index = %d\n",(u16)i));
1da177e4
LT
1434 }
1435 }
1436#endif
1437
1438 if (ha->pccb->OpCode == GDT_INIT)
1439 ha->pccb->Service |= 0x80;
1440
1441 if (ha->type == GDT_EISA) {
1442 if (ha->pccb->OpCode == GDT_INIT) /* store DMA buffer */
1443 outl(ha->ccb_phys, ha->bmic + MAILBOXREG);
1444 outb(ha->pccb->Service, ha->bmic + LDOORREG);
1445 } else if (ha->type == GDT_ISA) {
a52667f3 1446 writeb(0, &((gdt2_dpram_str __iomem *)ha->brd)->io.event);
1da177e4 1447 } else if (ha->type == GDT_PCI) {
a52667f3 1448 writeb(0, &((gdt6_dpram_str __iomem *)ha->brd)->io.event);
1da177e4
LT
1449 } else if (ha->type == GDT_PCINEW) {
1450 outb(1, PTR2USHORT(&ha->plx->ldoor_reg));
1451 } else if (ha->type == GDT_PCIMPR) {
a52667f3 1452 writeb(1, &((gdt6m_dpram_str __iomem *)ha->brd)->i960r.ldoor_reg);
1da177e4
LT
1453 }
1454}
1455
1fe6dbf4 1456static int gdth_wait(gdth_ha_str *ha, int index, u32 time)
1da177e4 1457{
1da177e4 1458 int answer_found = FALSE;
10e1b4bc 1459 int wait_index = 0;
1da177e4 1460
45f1a41b 1461 TRACE(("gdth_wait() hanum %d index %d time %d\n", ha->hanum, index, time));
1da177e4 1462
1da177e4
LT
1463 if (index == 0)
1464 return 1; /* no wait required */
1465
1da177e4 1466 do {
230e886e 1467 __gdth_interrupt(ha, true, &wait_index);
10e1b4bc 1468 if (wait_index == index) {
1da177e4
LT
1469 answer_found = TRUE;
1470 break;
1471 }
1472 gdth_delay(1);
1473 } while (--time);
45f1a41b
BH
1474
1475 while (gdth_test_busy(ha))
1da177e4
LT
1476 gdth_delay(0);
1477
1478 return (answer_found);
1479}
1480
1481
1fe6dbf4
DJ
1482static int gdth_internal_cmd(gdth_ha_str *ha, u8 service, u16 opcode,
1483 u32 p1, u64 p2, u64 p3)
1da177e4 1484{
1da177e4
LT
1485 register gdth_cmd_str *cmd_ptr;
1486 int retries,index;
1487
1488 TRACE2(("gdth_internal_cmd() service %d opcode %d\n",service,opcode));
1489
1da177e4
LT
1490 cmd_ptr = ha->pccb;
1491 memset((char*)cmd_ptr,0,sizeof(gdth_cmd_str));
1492
1493 /* make command */
1494 for (retries = INIT_RETRIES;;) {
1495 cmd_ptr->Service = service;
1496 cmd_ptr->RequestBuffer = INTERNAL_CMND;
45f1a41b 1497 if (!(index=gdth_get_cmd_index(ha))) {
1da177e4
LT
1498 TRACE(("GDT: No free command index found\n"));
1499 return 0;
1500 }
45f1a41b 1501 gdth_set_sema0(ha);
1da177e4
LT
1502 cmd_ptr->OpCode = opcode;
1503 cmd_ptr->BoardNode = LOCALBOARD;
1504 if (service == CACHESERVICE) {
1505 if (opcode == GDT_IOCTL) {
1506 cmd_ptr->u.ioctl.subfunc = p1;
1fe6dbf4
DJ
1507 cmd_ptr->u.ioctl.channel = (u32)p2;
1508 cmd_ptr->u.ioctl.param_size = (u16)p3;
1da177e4
LT
1509 cmd_ptr->u.ioctl.p_param = ha->scratch_phys;
1510 } else {
1511 if (ha->cache_feat & GDT_64BIT) {
1fe6dbf4 1512 cmd_ptr->u.cache64.DeviceNo = (u16)p1;
1da177e4
LT
1513 cmd_ptr->u.cache64.BlockNo = p2;
1514 } else {
1fe6dbf4
DJ
1515 cmd_ptr->u.cache.DeviceNo = (u16)p1;
1516 cmd_ptr->u.cache.BlockNo = (u32)p2;
1da177e4
LT
1517 }
1518 }
1519 } else if (service == SCSIRAWSERVICE) {
1520 if (ha->raw_feat & GDT_64BIT) {
1521 cmd_ptr->u.raw64.direction = p1;
1fe6dbf4
DJ
1522 cmd_ptr->u.raw64.bus = (u8)p2;
1523 cmd_ptr->u.raw64.target = (u8)p3;
1524 cmd_ptr->u.raw64.lun = (u8)(p3 >> 8);
1da177e4
LT
1525 } else {
1526 cmd_ptr->u.raw.direction = p1;
1fe6dbf4
DJ
1527 cmd_ptr->u.raw.bus = (u8)p2;
1528 cmd_ptr->u.raw.target = (u8)p3;
1529 cmd_ptr->u.raw.lun = (u8)(p3 >> 8);
1da177e4
LT
1530 }
1531 } else if (service == SCREENSERVICE) {
1532 if (opcode == GDT_REALTIME) {
1fe6dbf4
DJ
1533 *(u32 *)&cmd_ptr->u.screen.su.data[0] = p1;
1534 *(u32 *)&cmd_ptr->u.screen.su.data[4] = (u32)p2;
1535 *(u32 *)&cmd_ptr->u.screen.su.data[8] = (u32)p3;
1da177e4
LT
1536 }
1537 }
1538 ha->cmd_len = sizeof(gdth_cmd_str);
1539 ha->cmd_offs_dpmem = 0;
1540 ha->cmd_cnt = 0;
45f1a41b
BH
1541 gdth_copy_command(ha);
1542 gdth_release_event(ha);
1da177e4 1543 gdth_delay(20);
45f1a41b 1544 if (!gdth_wait(ha, index, INIT_TIMEOUT)) {
1da177e4
LT
1545 printk("GDT: Initialization error (timeout service %d)\n",service);
1546 return 0;
1547 }
1548 if (ha->status != S_BSY || --retries == 0)
1549 break;
1550 gdth_delay(1);
1551 }
1552
1553 return (ha->status != S_OK ? 0:1);
1554}
1555
1556
1557/* search for devices */
1558
ced7172a 1559static int __devinit gdth_search_drives(gdth_ha_str *ha)
1da177e4 1560{
1fe6dbf4 1561 u16 cdev_cnt, i;
1da177e4 1562 int ok;
1fe6dbf4 1563 u32 bus_no, drv_cnt, drv_no, j;
1da177e4
LT
1564 gdth_getch_str *chn;
1565 gdth_drlist_str *drl;
1566 gdth_iochan_str *ioc;
1567 gdth_raw_iochan_str *iocr;
1568 gdth_arcdl_str *alst;
1569 gdth_alist_str *alst2;
1570 gdth_oem_str_ioctl *oemstr;
1571#ifdef INT_COAL
1572 gdth_perf_modes *pmod;
1573#endif
1574
1575#ifdef GDTH_RTC
1fe6dbf4
DJ
1576 u8 rtc[12];
1577 unsigned long flags;
1da177e4
LT
1578#endif
1579
45f1a41b 1580 TRACE(("gdth_search_drives() hanum %d\n", ha->hanum));
1da177e4
LT
1581 ok = 0;
1582
1583 /* initialize controller services, at first: screen service */
1584 ha->screen_feat = 0;
1585 if (!force_dma32) {
45f1a41b 1586 ok = gdth_internal_cmd(ha, SCREENSERVICE, GDT_X_INIT_SCR, 0, 0, 0);
1da177e4
LT
1587 if (ok)
1588 ha->screen_feat = GDT_64BIT;
1589 }
1fe6dbf4 1590 if (force_dma32 || (!ok && ha->status == (u16)S_NOFUNC))
45f1a41b 1591 ok = gdth_internal_cmd(ha, SCREENSERVICE, GDT_INIT, 0, 0, 0);
1da177e4
LT
1592 if (!ok) {
1593 printk("GDT-HA %d: Initialization error screen service (code %d)\n",
45f1a41b 1594 ha->hanum, ha->status);
1da177e4
LT
1595 return 0;
1596 }
1597 TRACE2(("gdth_search_drives(): SCREENSERVICE initialized\n"));
1598
1599#ifdef GDTH_RTC
1600 /* read realtime clock info, send to controller */
1601 /* 1. wait for the falling edge of update flag */
1602 spin_lock_irqsave(&rtc_lock, flags);
1603 for (j = 0; j < 1000000; ++j)
1604 if (CMOS_READ(RTC_FREQ_SELECT) & RTC_UIP)
1605 break;
1606 for (j = 0; j < 1000000; ++j)
1607 if (!(CMOS_READ(RTC_FREQ_SELECT) & RTC_UIP))
1608 break;
1609 /* 2. read info */
1610 do {
1611 for (j = 0; j < 12; ++j)
1612 rtc[j] = CMOS_READ(j);
1613 } while (rtc[0] != CMOS_READ(0));
7a960b76 1614 spin_unlock_irqrestore(&rtc_lock, flags);
1fe6dbf4
DJ
1615 TRACE2(("gdth_search_drives(): RTC: %x/%x/%x\n",*(u32 *)&rtc[0],
1616 *(u32 *)&rtc[4], *(u32 *)&rtc[8]));
1da177e4 1617 /* 3. send to controller firmware */
1fe6dbf4
DJ
1618 gdth_internal_cmd(ha, SCREENSERVICE, GDT_REALTIME, *(u32 *)&rtc[0],
1619 *(u32 *)&rtc[4], *(u32 *)&rtc[8]);
1da177e4
LT
1620#endif
1621
1622 /* unfreeze all IOs */
45f1a41b 1623 gdth_internal_cmd(ha, CACHESERVICE, GDT_UNFREEZE_IO, 0, 0, 0);
1da177e4
LT
1624
1625 /* initialize cache service */
1626 ha->cache_feat = 0;
1627 if (!force_dma32) {
45f1a41b
BH
1628 ok = gdth_internal_cmd(ha, CACHESERVICE, GDT_X_INIT_HOST, LINUX_OS,
1629 0, 0);
1da177e4
LT
1630 if (ok)
1631 ha->cache_feat = GDT_64BIT;
1632 }
1fe6dbf4 1633 if (force_dma32 || (!ok && ha->status == (u16)S_NOFUNC))
45f1a41b 1634 ok = gdth_internal_cmd(ha, CACHESERVICE, GDT_INIT, LINUX_OS, 0, 0);
1da177e4
LT
1635 if (!ok) {
1636 printk("GDT-HA %d: Initialization error cache service (code %d)\n",
45f1a41b 1637 ha->hanum, ha->status);
1da177e4
LT
1638 return 0;
1639 }
1640 TRACE2(("gdth_search_drives(): CACHESERVICE initialized\n"));
1fe6dbf4 1641 cdev_cnt = (u16)ha->info;
1da177e4
LT
1642 ha->fw_vers = ha->service;
1643
1644#ifdef INT_COAL
1645 if (ha->type == GDT_PCIMPR) {
1646 /* set perf. modes */
1647 pmod = (gdth_perf_modes *)ha->pscratch;
1648 pmod->version = 1;
1649 pmod->st_mode = 1; /* enable one status buffer */
1fe6dbf4 1650 *((u64 *)&pmod->st_buff_addr1) = ha->coal_stat_phys;
1da177e4
LT
1651 pmod->st_buff_indx1 = COALINDEX;
1652 pmod->st_buff_addr2 = 0;
1653 pmod->st_buff_u_addr2 = 0;
1654 pmod->st_buff_indx2 = 0;
1655 pmod->st_buff_size = sizeof(gdth_coal_status) * MAXOFFSETS;
1656 pmod->cmd_mode = 0; // disable all cmd buffers
1657 pmod->cmd_buff_addr1 = 0;
1658 pmod->cmd_buff_u_addr1 = 0;
1659 pmod->cmd_buff_indx1 = 0;
1660 pmod->cmd_buff_addr2 = 0;
1661 pmod->cmd_buff_u_addr2 = 0;
1662 pmod->cmd_buff_indx2 = 0;
1663 pmod->cmd_buff_size = 0;
1664 pmod->reserved1 = 0;
1665 pmod->reserved2 = 0;
45f1a41b 1666 if (gdth_internal_cmd(ha, CACHESERVICE, GDT_IOCTL, SET_PERF_MODES,
1da177e4 1667 INVALID_CHANNEL,sizeof(gdth_perf_modes))) {
45f1a41b 1668 printk("GDT-HA %d: Interrupt coalescing activated\n", ha->hanum);
1da177e4
LT
1669 }
1670 }
1671#endif
1672
1673 /* detect number of buses - try new IOCTL */
1674 iocr = (gdth_raw_iochan_str *)ha->pscratch;
1675 iocr->hdr.version = 0xffffffff;
1676 iocr->hdr.list_entries = MAXBUS;
1677 iocr->hdr.first_chan = 0;
1678 iocr->hdr.last_chan = MAXBUS-1;
1679 iocr->hdr.list_offset = GDTOFFSOF(gdth_raw_iochan_str, list[0]);
45f1a41b 1680 if (gdth_internal_cmd(ha, CACHESERVICE, GDT_IOCTL, IOCHAN_RAW_DESC,
1da177e4
LT
1681 INVALID_CHANNEL,sizeof(gdth_raw_iochan_str))) {
1682 TRACE2(("IOCHAN_RAW_DESC supported!\n"));
1683 ha->bus_cnt = iocr->hdr.chan_count;
1684 for (bus_no = 0; bus_no < ha->bus_cnt; ++bus_no) {
1685 if (iocr->list[bus_no].proc_id < MAXID)
1686 ha->bus_id[bus_no] = iocr->list[bus_no].proc_id;
1687 else
1688 ha->bus_id[bus_no] = 0xff;
1689 }
1690 } else {
1691 /* old method */
1692 chn = (gdth_getch_str *)ha->pscratch;
1693 for (bus_no = 0; bus_no < MAXBUS; ++bus_no) {
1694 chn->channel_no = bus_no;
45f1a41b 1695 if (!gdth_internal_cmd(ha, CACHESERVICE, GDT_IOCTL,
1da177e4
LT
1696 SCSI_CHAN_CNT | L_CTRL_PATTERN,
1697 IO_CHANNEL | INVALID_CHANNEL,
1698 sizeof(gdth_getch_str))) {
1699 if (bus_no == 0) {
1700 printk("GDT-HA %d: Error detecting channel count (0x%x)\n",
45f1a41b 1701 ha->hanum, ha->status);
1da177e4
LT
1702 return 0;
1703 }
1704 break;
1705 }
1706 if (chn->siop_id < MAXID)
1707 ha->bus_id[bus_no] = chn->siop_id;
1708 else
1709 ha->bus_id[bus_no] = 0xff;
1710 }
1fe6dbf4 1711 ha->bus_cnt = (u8)bus_no;
1da177e4
LT
1712 }
1713 TRACE2(("gdth_search_drives() %d channels\n",ha->bus_cnt));
1714
1715 /* read cache configuration */
45f1a41b 1716 if (!gdth_internal_cmd(ha, CACHESERVICE, GDT_IOCTL, CACHE_INFO,
1da177e4
LT
1717 INVALID_CHANNEL,sizeof(gdth_cinfo_str))) {
1718 printk("GDT-HA %d: Initialization error cache service (code %d)\n",
45f1a41b 1719 ha->hanum, ha->status);
1da177e4
LT
1720 return 0;
1721 }
1722 ha->cpar = ((gdth_cinfo_str *)ha->pscratch)->cpar;
1723 TRACE2(("gdth_search_drives() cinfo: vs %x sta %d str %d dw %d b %d\n",
1724 ha->cpar.version,ha->cpar.state,ha->cpar.strategy,
1725 ha->cpar.write_back,ha->cpar.block_size));
1726
1727 /* read board info and features */
1728 ha->more_proc = FALSE;
45f1a41b 1729 if (gdth_internal_cmd(ha, CACHESERVICE, GDT_IOCTL, BOARD_INFO,
1da177e4
LT
1730 INVALID_CHANNEL,sizeof(gdth_binfo_str))) {
1731 memcpy(&ha->binfo, (gdth_binfo_str *)ha->pscratch,
1732 sizeof(gdth_binfo_str));
45f1a41b 1733 if (gdth_internal_cmd(ha, CACHESERVICE, GDT_IOCTL, BOARD_FEATURES,
1da177e4
LT
1734 INVALID_CHANNEL,sizeof(gdth_bfeat_str))) {
1735 TRACE2(("BOARD_INFO/BOARD_FEATURES supported\n"));
1736 ha->bfeat = *(gdth_bfeat_str *)ha->pscratch;
1737 ha->more_proc = TRUE;
1738 }
1739 } else {
1740 TRACE2(("BOARD_INFO requires firmware >= 1.10/2.08\n"));
45f1a41b 1741 strcpy(ha->binfo.type_string, gdth_ctr_name(ha));
1da177e4
LT
1742 }
1743 TRACE2(("Controller name: %s\n",ha->binfo.type_string));
1744
1745 /* read more informations */
1746 if (ha->more_proc) {
1747 /* physical drives, channel addresses */
1748 ioc = (gdth_iochan_str *)ha->pscratch;
1749 ioc->hdr.version = 0xffffffff;
1750 ioc->hdr.list_entries = MAXBUS;
1751 ioc->hdr.first_chan = 0;
1752 ioc->hdr.last_chan = MAXBUS-1;
1753 ioc->hdr.list_offset = GDTOFFSOF(gdth_iochan_str, list[0]);
45f1a41b 1754 if (gdth_internal_cmd(ha, CACHESERVICE, GDT_IOCTL, IOCHAN_DESC,
1da177e4
LT
1755 INVALID_CHANNEL,sizeof(gdth_iochan_str))) {
1756 for (bus_no = 0; bus_no < ha->bus_cnt; ++bus_no) {
1757 ha->raw[bus_no].address = ioc->list[bus_no].address;
1758 ha->raw[bus_no].local_no = ioc->list[bus_no].local_no;
1759 }
1760 } else {
1761 for (bus_no = 0; bus_no < ha->bus_cnt; ++bus_no) {
1762 ha->raw[bus_no].address = IO_CHANNEL;
1763 ha->raw[bus_no].local_no = bus_no;
1764 }
1765 }
1766 for (bus_no = 0; bus_no < ha->bus_cnt; ++bus_no) {
1767 chn = (gdth_getch_str *)ha->pscratch;
1768 chn->channel_no = ha->raw[bus_no].local_no;
45f1a41b 1769 if (gdth_internal_cmd(ha, CACHESERVICE, GDT_IOCTL,
1da177e4
LT
1770 SCSI_CHAN_CNT | L_CTRL_PATTERN,
1771 ha->raw[bus_no].address | INVALID_CHANNEL,
1772 sizeof(gdth_getch_str))) {
1773 ha->raw[bus_no].pdev_cnt = chn->drive_cnt;
1774 TRACE2(("Channel %d: %d phys. drives\n",
1775 bus_no,chn->drive_cnt));
1776 }
1777 if (ha->raw[bus_no].pdev_cnt > 0) {
1778 drl = (gdth_drlist_str *)ha->pscratch;
1779 drl->sc_no = ha->raw[bus_no].local_no;
1780 drl->sc_cnt = ha->raw[bus_no].pdev_cnt;
45f1a41b 1781 if (gdth_internal_cmd(ha, CACHESERVICE, GDT_IOCTL,
1da177e4
LT
1782 SCSI_DR_LIST | L_CTRL_PATTERN,
1783 ha->raw[bus_no].address | INVALID_CHANNEL,
1784 sizeof(gdth_drlist_str))) {
1785 for (j = 0; j < ha->raw[bus_no].pdev_cnt; ++j)
1786 ha->raw[bus_no].id_list[j] = drl->sc_list[j];
1787 } else {
1788 ha->raw[bus_no].pdev_cnt = 0;
1789 }
1790 }
1791 }
1792
1793 /* logical drives */
45f1a41b 1794 if (gdth_internal_cmd(ha, CACHESERVICE, GDT_IOCTL, CACHE_DRV_CNT,
1fe6dbf4
DJ
1795 INVALID_CHANNEL,sizeof(u32))) {
1796 drv_cnt = *(u32 *)ha->pscratch;
45f1a41b 1797 if (gdth_internal_cmd(ha, CACHESERVICE, GDT_IOCTL, CACHE_DRV_LIST,
1fe6dbf4 1798 INVALID_CHANNEL,drv_cnt * sizeof(u32))) {
1da177e4 1799 for (j = 0; j < drv_cnt; ++j) {
1fe6dbf4 1800 drv_no = ((u32 *)ha->pscratch)[j];
1da177e4
LT
1801 if (drv_no < MAX_LDRIVES) {
1802 ha->hdr[drv_no].is_logdrv = TRUE;
1803 TRACE2(("Drive %d is log. drive\n",drv_no));
1804 }
1805 }
1806 }
1807 alst = (gdth_arcdl_str *)ha->pscratch;
1808 alst->entries_avail = MAX_LDRIVES;
1809 alst->first_entry = 0;
1810 alst->list_offset = GDTOFFSOF(gdth_arcdl_str, list[0]);
45f1a41b 1811 if (gdth_internal_cmd(ha, CACHESERVICE, GDT_IOCTL,
1da177e4
LT
1812 ARRAY_DRV_LIST2 | LA_CTRL_PATTERN,
1813 INVALID_CHANNEL, sizeof(gdth_arcdl_str) +
1814 (alst->entries_avail-1) * sizeof(gdth_alist_str))) {
1815 for (j = 0; j < alst->entries_init; ++j) {
1816 ha->hdr[j].is_arraydrv = alst->list[j].is_arrayd;
1817 ha->hdr[j].is_master = alst->list[j].is_master;
1818 ha->hdr[j].is_parity = alst->list[j].is_parity;
1819 ha->hdr[j].is_hotfix = alst->list[j].is_hotfix;
1820 ha->hdr[j].master_no = alst->list[j].cd_handle;
1821 }
45f1a41b 1822 } else if (gdth_internal_cmd(ha, CACHESERVICE, GDT_IOCTL,
1da177e4
LT
1823 ARRAY_DRV_LIST | LA_CTRL_PATTERN,
1824 0, 35 * sizeof(gdth_alist_str))) {
1825 for (j = 0; j < 35; ++j) {
1826 alst2 = &((gdth_alist_str *)ha->pscratch)[j];
1827 ha->hdr[j].is_arraydrv = alst2->is_arrayd;
1828 ha->hdr[j].is_master = alst2->is_master;
1829 ha->hdr[j].is_parity = alst2->is_parity;
1830 ha->hdr[j].is_hotfix = alst2->is_hotfix;
1831 ha->hdr[j].master_no = alst2->cd_handle;
1832 }
1833 }
1834 }
1835 }
1836
1837 /* initialize raw service */
1838 ha->raw_feat = 0;
1839 if (!force_dma32) {
45f1a41b 1840 ok = gdth_internal_cmd(ha, SCSIRAWSERVICE, GDT_X_INIT_RAW, 0, 0, 0);
1da177e4
LT
1841 if (ok)
1842 ha->raw_feat = GDT_64BIT;
1843 }
1fe6dbf4 1844 if (force_dma32 || (!ok && ha->status == (u16)S_NOFUNC))
45f1a41b 1845 ok = gdth_internal_cmd(ha, SCSIRAWSERVICE, GDT_INIT, 0, 0, 0);
1da177e4
LT
1846 if (!ok) {
1847 printk("GDT-HA %d: Initialization error raw service (code %d)\n",
45f1a41b 1848 ha->hanum, ha->status);
1da177e4
LT
1849 return 0;
1850 }
1851 TRACE2(("gdth_search_drives(): RAWSERVICE initialized\n"));
1852
1853 /* set/get features raw service (scatter/gather) */
45f1a41b
BH
1854 if (gdth_internal_cmd(ha, SCSIRAWSERVICE, GDT_SET_FEAT, SCATTER_GATHER,
1855 0, 0)) {
1da177e4 1856 TRACE2(("gdth_search_drives(): set features RAWSERVICE OK\n"));
45f1a41b 1857 if (gdth_internal_cmd(ha, SCSIRAWSERVICE, GDT_GET_FEAT, 0, 0, 0)) {
1da177e4
LT
1858 TRACE2(("gdth_search_dr(): get feat RAWSERVICE %d\n",
1859 ha->info));
1fe6dbf4 1860 ha->raw_feat |= (u16)ha->info;
1da177e4
LT
1861 }
1862 }
1863
1864 /* set/get features cache service (equal to raw service) */
45f1a41b 1865 if (gdth_internal_cmd(ha, CACHESERVICE, GDT_SET_FEAT, 0,
1da177e4
LT
1866 SCATTER_GATHER,0)) {
1867 TRACE2(("gdth_search_drives(): set features CACHESERVICE OK\n"));
45f1a41b 1868 if (gdth_internal_cmd(ha, CACHESERVICE, GDT_GET_FEAT, 0, 0, 0)) {
1da177e4
LT
1869 TRACE2(("gdth_search_dr(): get feat CACHESERV. %d\n",
1870 ha->info));
1fe6dbf4 1871 ha->cache_feat |= (u16)ha->info;
1da177e4
LT
1872 }
1873 }
1874
1875 /* reserve drives for raw service */
1876 if (reserve_mode != 0) {
45f1a41b 1877 gdth_internal_cmd(ha, SCSIRAWSERVICE, GDT_RESERVE_ALL,
1da177e4
LT
1878 reserve_mode == 1 ? 1 : 3, 0, 0);
1879 TRACE2(("gdth_search_drives(): RESERVE_ALL code %d\n",
1880 ha->status));
1881 }
1882 for (i = 0; i < MAX_RES_ARGS; i += 4) {
45f1a41b 1883 if (reserve_list[i] == ha->hanum && reserve_list[i+1] < ha->bus_cnt &&
1da177e4
LT
1884 reserve_list[i+2] < ha->tid_cnt && reserve_list[i+3] < MAXLUN) {
1885 TRACE2(("gdth_search_drives(): reserve ha %d bus %d id %d lun %d\n",
1886 reserve_list[i], reserve_list[i+1],
1887 reserve_list[i+2], reserve_list[i+3]));
45f1a41b 1888 if (!gdth_internal_cmd(ha, SCSIRAWSERVICE, GDT_RESERVE, 0,
1da177e4
LT
1889 reserve_list[i+1], reserve_list[i+2] |
1890 (reserve_list[i+3] << 8))) {
1891 printk("GDT-HA %d: Error raw service (RESERVE, code %d)\n",
45f1a41b 1892 ha->hanum, ha->status);
1da177e4
LT
1893 }
1894 }
1895 }
1896
1897 /* Determine OEM string using IOCTL */
1898 oemstr = (gdth_oem_str_ioctl *)ha->pscratch;
1899 oemstr->params.ctl_version = 0x01;
1900 oemstr->params.buffer_size = sizeof(oemstr->text);
45f1a41b 1901 if (gdth_internal_cmd(ha, CACHESERVICE, GDT_IOCTL,
1da177e4
LT
1902 CACHE_READ_OEM_STRING_RECORD,INVALID_CHANNEL,
1903 sizeof(gdth_oem_str_ioctl))) {
1904 TRACE2(("gdth_search_drives(): CACHE_READ_OEM_STRING_RECORD OK\n"));
1905 printk("GDT-HA %d: Vendor: %s Name: %s\n",
45f1a41b 1906 ha->hanum, oemstr->text.oem_company_name, ha->binfo.type_string);
1da177e4 1907 /* Save the Host Drive inquiry data */
1da177e4
LT
1908 strlcpy(ha->oem_name,oemstr->text.scsi_host_drive_inquiry_vendor_id,
1909 sizeof(ha->oem_name));
1da177e4
LT
1910 } else {
1911 /* Old method, based on PCI ID */
1912 TRACE2(("gdth_search_drives(): CACHE_READ_OEM_STRING_RECORD failed\n"));
1913 printk("GDT-HA %d: Name: %s\n",
45f1a41b 1914 ha->hanum, ha->binfo.type_string);
1da177e4
LT
1915 if (ha->oem_id == OEM_ID_INTEL)
1916 strlcpy(ha->oem_name,"Intel ", sizeof(ha->oem_name));
1917 else
1918 strlcpy(ha->oem_name,"ICP ", sizeof(ha->oem_name));
1da177e4
LT
1919 }
1920
1921 /* scanning for host drives */
1922 for (i = 0; i < cdev_cnt; ++i)
45f1a41b 1923 gdth_analyse_hdrive(ha, i);
1da177e4
LT
1924
1925 TRACE(("gdth_search_drives() OK\n"));
1926 return 1;
1927}
1928
1fe6dbf4 1929static int gdth_analyse_hdrive(gdth_ha_str *ha, u16 hdrive)
1da177e4 1930{
1fe6dbf4 1931 u32 drv_cyls;
1da177e4
LT
1932 int drv_hds, drv_secs;
1933
45f1a41b 1934 TRACE(("gdth_analyse_hdrive() hanum %d drive %d\n", ha->hanum, hdrive));
1da177e4
LT
1935 if (hdrive >= MAX_HDRIVES)
1936 return 0;
1da177e4 1937
45f1a41b 1938 if (!gdth_internal_cmd(ha, CACHESERVICE, GDT_INFO, hdrive, 0, 0))
1da177e4
LT
1939 return 0;
1940 ha->hdr[hdrive].present = TRUE;
1941 ha->hdr[hdrive].size = ha->info;
1942
1943 /* evaluate mapping (sectors per head, heads per cylinder) */
1944 ha->hdr[hdrive].size &= ~SECS32;
1945 if (ha->info2 == 0) {
1946 gdth_eval_mapping(ha->hdr[hdrive].size,&drv_cyls,&drv_hds,&drv_secs);
1947 } else {
1948 drv_hds = ha->info2 & 0xff;
1949 drv_secs = (ha->info2 >> 8) & 0xff;
1fe6dbf4 1950 drv_cyls = (u32)ha->hdr[hdrive].size / drv_hds / drv_secs;
1da177e4 1951 }
1fe6dbf4
DJ
1952 ha->hdr[hdrive].heads = (u8)drv_hds;
1953 ha->hdr[hdrive].secs = (u8)drv_secs;
1da177e4
LT
1954 /* round size */
1955 ha->hdr[hdrive].size = drv_cyls * drv_hds * drv_secs;
1956
1957 if (ha->cache_feat & GDT_64BIT) {
45f1a41b 1958 if (gdth_internal_cmd(ha, CACHESERVICE, GDT_X_INFO, hdrive, 0, 0)
1da177e4 1959 && ha->info2 != 0) {
1fe6dbf4 1960 ha->hdr[hdrive].size = ((u64)ha->info2 << 32) | ha->info;
1da177e4
LT
1961 }
1962 }
1963 TRACE2(("gdth_search_dr() cdr. %d size %d hds %d scs %d\n",
1964 hdrive,ha->hdr[hdrive].size,drv_hds,drv_secs));
1965
1966 /* get informations about device */
45f1a41b 1967 if (gdth_internal_cmd(ha, CACHESERVICE, GDT_DEVTYPE, hdrive, 0, 0)) {
1da177e4
LT
1968 TRACE2(("gdth_search_dr() cache drive %d devtype %d\n",
1969 hdrive,ha->info));
1fe6dbf4 1970 ha->hdr[hdrive].devtype = (u16)ha->info;
1da177e4
LT
1971 }
1972
1973 /* cluster info */
45f1a41b 1974 if (gdth_internal_cmd(ha, CACHESERVICE, GDT_CLUST_INFO, hdrive, 0, 0)) {
1da177e4
LT
1975 TRACE2(("gdth_search_dr() cache drive %d cluster info %d\n",
1976 hdrive,ha->info));
1977 if (!shared_access)
1fe6dbf4 1978 ha->hdr[hdrive].cluster_type = (u8)ha->info;
1da177e4
LT
1979 }
1980
1981 /* R/W attributes */
45f1a41b 1982 if (gdth_internal_cmd(ha, CACHESERVICE, GDT_RW_ATTRIBS, hdrive, 0, 0)) {
1da177e4
LT
1983 TRACE2(("gdth_search_dr() cache drive %d r/w attrib. %d\n",
1984 hdrive,ha->info));
1fe6dbf4 1985 ha->hdr[hdrive].rw_attribs = (u8)ha->info;
1da177e4
LT
1986 }
1987
1988 return 1;
1989}
1990
1991
1992/* command queueing/sending functions */
1993
1fe6dbf4 1994static void gdth_putq(gdth_ha_str *ha, Scsi_Cmnd *scp, u8 priority)
1da177e4 1995{
3058d5de 1996 struct gdth_cmndinfo *cmndinfo = gdth_cmnd_priv(scp);
1da177e4
LT
1997 register Scsi_Cmnd *pscp;
1998 register Scsi_Cmnd *nscp;
1fe6dbf4 1999 unsigned long flags;
1da177e4
LT
2000
2001 TRACE(("gdth_putq() priority %d\n",priority));
1da177e4
LT
2002 spin_lock_irqsave(&ha->smp_lock, flags);
2003
242f9dcb 2004 if (!cmndinfo->internal_command)
f842b64e 2005 cmndinfo->priority = priority;
1da177e4
LT
2006
2007 if (ha->req_first==NULL) {
2008 ha->req_first = scp; /* queue was empty */
2009 scp->SCp.ptr = NULL;
2010 } else { /* queue not empty */
2011 pscp = ha->req_first;
2012 nscp = (Scsi_Cmnd *)pscp->SCp.ptr;
2013 /* priority: 0-highest,..,0xff-lowest */
f842b64e 2014 while (nscp && gdth_cmnd_priv(nscp)->priority <= priority) {
1da177e4
LT
2015 pscp = nscp;
2016 nscp = (Scsi_Cmnd *)pscp->SCp.ptr;
2017 }
2018 pscp->SCp.ptr = (char *)scp;
2019 scp->SCp.ptr = (char *)nscp;
2020 }
2021 spin_unlock_irqrestore(&ha->smp_lock, flags);
2022
2023#ifdef GDTH_STATISTICS
2024 flags = 0;
2025 for (nscp=ha->req_first; nscp; nscp=(Scsi_Cmnd*)nscp->SCp.ptr)
2026 ++flags;
2027 if (max_rq < flags) {
2028 max_rq = flags;
1fe6dbf4 2029 TRACE3(("GDT: max_rq = %d\n",(u16)max_rq));
1da177e4
LT
2030 }
2031#endif
2032}
2033
45f1a41b 2034static void gdth_next(gdth_ha_str *ha)
1da177e4 2035{
1da177e4
LT
2036 register Scsi_Cmnd *pscp;
2037 register Scsi_Cmnd *nscp;
1fe6dbf4
DJ
2038 u8 b, t, l, firsttime;
2039 u8 this_cmd, next_cmd;
2040 unsigned long flags = 0;
1da177e4
LT
2041 int cmd_index;
2042
45f1a41b 2043 TRACE(("gdth_next() hanum %d\n", ha->hanum));
1da177e4
LT
2044 if (!gdth_polling)
2045 spin_lock_irqsave(&ha->smp_lock, flags);
2046
2047 ha->cmd_cnt = ha->cmd_offs_dpmem = 0;
2048 this_cmd = firsttime = TRUE;
2049 next_cmd = gdth_polling ? FALSE:TRUE;
2050 cmd_index = 0;
2051
2052 for (nscp = pscp = ha->req_first; nscp; nscp = (Scsi_Cmnd *)nscp->SCp.ptr) {
f842b64e 2053 struct gdth_cmndinfo *nscp_cmndinfo = gdth_cmnd_priv(nscp);
1da177e4
LT
2054 if (nscp != pscp && nscp != (Scsi_Cmnd *)pscp->SCp.ptr)
2055 pscp = (Scsi_Cmnd *)pscp->SCp.ptr;
f842b64e 2056 if (!nscp_cmndinfo->internal_command) {
52759e6a 2057 b = nscp->device->channel;
cbd5f69b
LA
2058 t = nscp->device->id;
2059 l = nscp->device->lun;
f842b64e 2060 if (nscp_cmndinfo->priority >= DEFAULT_PRI) {
cbd5f69b
LA
2061 if ((b != ha->virt_bus && ha->raw[BUS_L2P(ha,b)].lock) ||
2062 (b == ha->virt_bus && t < MAX_HDRIVES && ha->hdr[t].lock))
2063 continue;
2064 }
2065 } else
2066 b = t = l = 0;
1da177e4
LT
2067
2068 if (firsttime) {
45f1a41b
BH
2069 if (gdth_test_busy(ha)) { /* controller busy ? */
2070 TRACE(("gdth_next() controller %d busy !\n", ha->hanum));
1da177e4
LT
2071 if (!gdth_polling) {
2072 spin_unlock_irqrestore(&ha->smp_lock, flags);
2073 return;
2074 }
45f1a41b 2075 while (gdth_test_busy(ha))
1da177e4
LT
2076 gdth_delay(1);
2077 }
2078 firsttime = FALSE;
2079 }
2080
f842b64e
BH
2081 if (!nscp_cmndinfo->internal_command) {
2082 if (nscp_cmndinfo->phase == -1) {
2083 nscp_cmndinfo->phase = CACHESERVICE; /* default: cache svc. */
1da177e4
LT
2084 if (nscp->cmnd[0] == TEST_UNIT_READY) {
2085 TRACE2(("TEST_UNIT_READY Bus %d Id %d LUN %d\n",
2086 b, t, l));
2087 /* TEST_UNIT_READY -> set scan mode */
2088 if ((ha->scan_mode & 0x0f) == 0) {
2089 if (b == 0 && t == 0 && l == 0) {
2090 ha->scan_mode |= 1;
2091 TRACE2(("Scan mode: 0x%x\n", ha->scan_mode));
2092 }
2093 } else if ((ha->scan_mode & 0x0f) == 1) {
2094 if (b == 0 && ((t == 0 && l == 1) ||
2095 (t == 1 && l == 0))) {
f842b64e
BH
2096 nscp_cmndinfo->OpCode = GDT_SCAN_START;
2097 nscp_cmndinfo->phase = ((ha->scan_mode & 0x10 ? 1:0) << 8)
1da177e4
LT
2098 | SCSIRAWSERVICE;
2099 ha->scan_mode = 0x12;
2100 TRACE2(("Scan mode: 0x%x (SCAN_START)\n",
2101 ha->scan_mode));
2102 } else {
2103 ha->scan_mode &= 0x10;
2104 TRACE2(("Scan mode: 0x%x\n", ha->scan_mode));
2105 }
2106 } else if (ha->scan_mode == 0x12) {
2107 if (b == ha->bus_cnt && t == ha->tid_cnt-1) {
f842b64e
BH
2108 nscp_cmndinfo->phase = SCSIRAWSERVICE;
2109 nscp_cmndinfo->OpCode = GDT_SCAN_END;
1da177e4
LT
2110 ha->scan_mode &= 0x10;
2111 TRACE2(("Scan mode: 0x%x (SCAN_END)\n",
2112 ha->scan_mode));
2113 }
2114 }
2115 }
2116 if (b == ha->virt_bus && nscp->cmnd[0] != INQUIRY &&
2117 nscp->cmnd[0] != READ_CAPACITY && nscp->cmnd[0] != MODE_SENSE &&
2118 (ha->hdr[t].cluster_type & CLUSTER_DRIVE)) {
2119 /* always GDT_CLUST_INFO! */
f842b64e 2120 nscp_cmndinfo->OpCode = GDT_CLUST_INFO;
1da177e4
LT
2121 }
2122 }
2123 }
2124
f842b64e
BH
2125 if (nscp_cmndinfo->OpCode != -1) {
2126 if ((nscp_cmndinfo->phase & 0xff) == CACHESERVICE) {
45f1a41b 2127 if (!(cmd_index=gdth_fill_cache_cmd(ha, nscp, t)))
1da177e4
LT
2128 this_cmd = FALSE;
2129 next_cmd = FALSE;
f842b64e 2130 } else if ((nscp_cmndinfo->phase & 0xff) == SCSIRAWSERVICE) {
45f1a41b 2131 if (!(cmd_index=gdth_fill_raw_cmd(ha, nscp, BUS_L2P(ha, b))))
1da177e4
LT
2132 this_cmd = FALSE;
2133 next_cmd = FALSE;
2134 } else {
2135 memset((char*)nscp->sense_buffer,0,16);
2136 nscp->sense_buffer[0] = 0x70;
2137 nscp->sense_buffer[2] = NOT_READY;
2138 nscp->result = (DID_OK << 16) | (CHECK_CONDITION << 1);
f842b64e
BH
2139 if (!nscp_cmndinfo->wait_for_completion)
2140 nscp_cmndinfo->wait_for_completion++;
1da177e4 2141 else
b8bff2ae 2142 gdth_scsi_done(nscp);
1da177e4 2143 }
3058d5de 2144 } else if (gdth_cmnd_priv(nscp)->internal_command) {
45f1a41b 2145 if (!(cmd_index=gdth_special_cmd(ha, nscp)))
1da177e4
LT
2146 this_cmd = FALSE;
2147 next_cmd = FALSE;
2148 } else if (b != ha->virt_bus) {
2149 if (ha->raw[BUS_L2P(ha,b)].io_cnt[t] >= GDTH_MAX_RAW ||
45f1a41b 2150 !(cmd_index=gdth_fill_raw_cmd(ha, nscp, BUS_L2P(ha, b))))
1da177e4
LT
2151 this_cmd = FALSE;
2152 else
2153 ha->raw[BUS_L2P(ha,b)].io_cnt[t]++;
2154 } else if (t >= MAX_HDRIVES || !ha->hdr[t].present || l != 0) {
2155 TRACE2(("Command 0x%x to bus %d id %d lun %d -> IGNORE\n",
2156 nscp->cmnd[0], b, t, l));
2157 nscp->result = DID_BAD_TARGET << 16;
f842b64e
BH
2158 if (!nscp_cmndinfo->wait_for_completion)
2159 nscp_cmndinfo->wait_for_completion++;
1da177e4 2160 else
b8bff2ae 2161 gdth_scsi_done(nscp);
1da177e4
LT
2162 } else {
2163 switch (nscp->cmnd[0]) {
2164 case TEST_UNIT_READY:
2165 case INQUIRY:
2166 case REQUEST_SENSE:
2167 case READ_CAPACITY:
2168 case VERIFY:
2169 case START_STOP:
2170 case MODE_SENSE:
2171 case SERVICE_ACTION_IN:
2172 TRACE(("cache cmd %x/%x/%x/%x/%x/%x\n",nscp->cmnd[0],
2173 nscp->cmnd[1],nscp->cmnd[2],nscp->cmnd[3],
2174 nscp->cmnd[4],nscp->cmnd[5]));
2175 if (ha->hdr[t].media_changed && nscp->cmnd[0] != INQUIRY) {
2176 /* return UNIT_ATTENTION */
2177 TRACE2(("cmd 0x%x target %d: UNIT_ATTENTION\n",
2178 nscp->cmnd[0], t));
2179 ha->hdr[t].media_changed = FALSE;
2180 memset((char*)nscp->sense_buffer,0,16);
2181 nscp->sense_buffer[0] = 0x70;
2182 nscp->sense_buffer[2] = UNIT_ATTENTION;
2183 nscp->result = (DID_OK << 16) | (CHECK_CONDITION << 1);
f842b64e
BH
2184 if (!nscp_cmndinfo->wait_for_completion)
2185 nscp_cmndinfo->wait_for_completion++;
1da177e4 2186 else
b8bff2ae 2187 gdth_scsi_done(nscp);
45f1a41b 2188 } else if (gdth_internal_cache_cmd(ha, nscp))
b8bff2ae 2189 gdth_scsi_done(nscp);
1da177e4
LT
2190 break;
2191
2192 case ALLOW_MEDIUM_REMOVAL:
2193 TRACE(("cache cmd %x/%x/%x/%x/%x/%x\n",nscp->cmnd[0],
2194 nscp->cmnd[1],nscp->cmnd[2],nscp->cmnd[3],
2195 nscp->cmnd[4],nscp->cmnd[5]));
2196 if ( (nscp->cmnd[4]&1) && !(ha->hdr[t].devtype&1) ) {
2197 TRACE(("Prevent r. nonremov. drive->do nothing\n"));
2198 nscp->result = DID_OK << 16;
2199 nscp->sense_buffer[0] = 0;
f842b64e
BH
2200 if (!nscp_cmndinfo->wait_for_completion)
2201 nscp_cmndinfo->wait_for_completion++;
1da177e4 2202 else
b8bff2ae 2203 gdth_scsi_done(nscp);
1da177e4
LT
2204 } else {
2205 nscp->cmnd[3] = (ha->hdr[t].devtype&1) ? 1:0;
2206 TRACE(("Prevent/allow r. %d rem. drive %d\n",
2207 nscp->cmnd[4],nscp->cmnd[3]));
45f1a41b 2208 if (!(cmd_index=gdth_fill_cache_cmd(ha, nscp, t)))
1da177e4
LT
2209 this_cmd = FALSE;
2210 }
2211 break;
2212
2213 case RESERVE:
2214 case RELEASE:
2215 TRACE2(("cache cmd %s\n",nscp->cmnd[0] == RESERVE ?
2216 "RESERVE" : "RELEASE"));
45f1a41b 2217 if (!(cmd_index=gdth_fill_cache_cmd(ha, nscp, t)))
1da177e4
LT
2218 this_cmd = FALSE;
2219 break;
2220
2221 case READ_6:
2222 case WRITE_6:
2223 case READ_10:
2224 case WRITE_10:
2225 case READ_16:
2226 case WRITE_16:
2227 if (ha->hdr[t].media_changed) {
2228 /* return UNIT_ATTENTION */
2229 TRACE2(("cmd 0x%x target %d: UNIT_ATTENTION\n",
2230 nscp->cmnd[0], t));
2231 ha->hdr[t].media_changed = FALSE;
2232 memset((char*)nscp->sense_buffer,0,16);
2233 nscp->sense_buffer[0] = 0x70;
2234 nscp->sense_buffer[2] = UNIT_ATTENTION;
2235 nscp->result = (DID_OK << 16) | (CHECK_CONDITION << 1);
f842b64e
BH
2236 if (!nscp_cmndinfo->wait_for_completion)
2237 nscp_cmndinfo->wait_for_completion++;
1da177e4 2238 else
b8bff2ae 2239 gdth_scsi_done(nscp);
45f1a41b 2240 } else if (!(cmd_index=gdth_fill_cache_cmd(ha, nscp, t)))
1da177e4
LT
2241 this_cmd = FALSE;
2242 break;
2243
2244 default:
2245 TRACE2(("cache cmd %x/%x/%x/%x/%x/%x unknown\n",nscp->cmnd[0],
2246 nscp->cmnd[1],nscp->cmnd[2],nscp->cmnd[3],
2247 nscp->cmnd[4],nscp->cmnd[5]));
2248 printk("GDT-HA %d: Unknown SCSI command 0x%x to cache service !\n",
45f1a41b 2249 ha->hanum, nscp->cmnd[0]);
1da177e4 2250 nscp->result = DID_ABORT << 16;
f842b64e
BH
2251 if (!nscp_cmndinfo->wait_for_completion)
2252 nscp_cmndinfo->wait_for_completion++;
1da177e4 2253 else
b8bff2ae 2254 gdth_scsi_done(nscp);
1da177e4
LT
2255 break;
2256 }
2257 }
2258
2259 if (!this_cmd)
2260 break;
2261 if (nscp == ha->req_first)
2262 ha->req_first = pscp = (Scsi_Cmnd *)nscp->SCp.ptr;
2263 else
2264 pscp->SCp.ptr = nscp->SCp.ptr;
2265 if (!next_cmd)
2266 break;
2267 }
2268
2269 if (ha->cmd_cnt > 0) {
45f1a41b 2270 gdth_release_event(ha);
1da177e4
LT
2271 }
2272
2273 if (!gdth_polling)
2274 spin_unlock_irqrestore(&ha->smp_lock, flags);
2275
2276 if (gdth_polling && ha->cmd_cnt > 0) {
45f1a41b 2277 if (!gdth_wait(ha, cmd_index, POLL_TIMEOUT))
1da177e4 2278 printk("GDT-HA %d: Command %d timed out !\n",
45f1a41b 2279 ha->hanum, cmd_index);
1da177e4
LT
2280 }
2281}
3892d88a
BH
2282
2283/*
2284 * gdth_copy_internal_data() - copy to/from a buffer onto a scsi_cmnd's
2285 * buffers, kmap_atomic() as needed.
2286 */
45f1a41b 2287static void gdth_copy_internal_data(gdth_ha_str *ha, Scsi_Cmnd *scp,
1fe6dbf4 2288 char *buffer, u16 count)
1da177e4 2289{
1fe6dbf4
DJ
2290 u16 cpcount,i, max_sg = scsi_sg_count(scp);
2291 u16 cpsum,cpnow;
1da177e4 2292 struct scatterlist *sl;
1da177e4
LT
2293 char *address;
2294
1fe6dbf4 2295 cpcount = min_t(u16, count, scsi_bufflen(scp));
1da177e4 2296
3892d88a
BH
2297 if (cpcount) {
2298 cpsum=0;
2299 scsi_for_each_sg(scp, sl, max_sg, i) {
cbd5f69b 2300 unsigned long flags;
1fe6dbf4 2301 cpnow = (u16)sl->length;
1da177e4 2302 TRACE(("copy_internal() now %d sum %d count %d %d\n",
d35055a0 2303 cpnow, cpsum, cpcount, scsi_bufflen(scp)));
1da177e4
LT
2304 if (cpsum+cpnow > cpcount)
2305 cpnow = cpcount - cpsum;
2306 cpsum += cpnow;
45711f1a 2307 if (!sg_page(sl)) {
1da177e4 2308 printk("GDT-HA %d: invalid sc/gt element in gdth_copy_internal_data()\n",
45f1a41b 2309 ha->hanum);
1da177e4
LT
2310 return;
2311 }
cbd5f69b 2312 local_irq_save(flags);
45711f1a 2313 address = kmap_atomic(sg_page(sl), KM_BIO_SRC_IRQ) + sl->offset;
ee54cc6a 2314 memcpy(address, buffer, cpnow);
45711f1a 2315 flush_dcache_page(sg_page(sl));
cbd5f69b 2316 kunmap_atomic(address, KM_BIO_SRC_IRQ);
cbd5f69b 2317 local_irq_restore(flags);
1da177e4
LT
2318 if (cpsum == cpcount)
2319 break;
2320 buffer += cpnow;
2321 }
3892d88a
BH
2322 } else if (count) {
2323 printk("GDT-HA %d: SCSI command with no buffers but data transfer expected!\n",
2324 ha->hanum);
2325 WARN_ON(1);
1da177e4
LT
2326 }
2327}
2328
45f1a41b 2329static int gdth_internal_cache_cmd(gdth_ha_str *ha, Scsi_Cmnd *scp)
1da177e4 2330{
1fe6dbf4 2331 u8 t;
1da177e4
LT
2332 gdth_inq_data inq;
2333 gdth_rdcap_data rdc;
2334 gdth_sense_data sd;
2335 gdth_modep_data mpd;
f842b64e 2336 struct gdth_cmndinfo *cmndinfo = gdth_cmnd_priv(scp);
1da177e4 2337
1da177e4
LT
2338 t = scp->device->id;
2339 TRACE(("gdth_internal_cache_cmd() cmd 0x%x hdrive %d\n",
2340 scp->cmnd[0],t));
2341
2342 scp->result = DID_OK << 16;
2343 scp->sense_buffer[0] = 0;
2344
2345 switch (scp->cmnd[0]) {
2346 case TEST_UNIT_READY:
2347 case VERIFY:
2348 case START_STOP:
2349 TRACE2(("Test/Verify/Start hdrive %d\n",t));
2350 break;
2351
2352 case INQUIRY:
2353 TRACE2(("Inquiry hdrive %d devtype %d\n",
2354 t,ha->hdr[t].devtype));
2355 inq.type_qual = (ha->hdr[t].devtype&4) ? TYPE_ROM:TYPE_DISK;
2356 /* you can here set all disks to removable, if you want to do
2357 a flush using the ALLOW_MEDIUM_REMOVAL command */
2358 inq.modif_rmb = 0x00;
2359 if ((ha->hdr[t].devtype & 1) ||
2360 (ha->hdr[t].cluster_type & CLUSTER_DRIVE))
2361 inq.modif_rmb = 0x80;
2362 inq.version = 2;
2363 inq.resp_aenc = 2;
2364 inq.add_length= 32;
2365 strcpy(inq.vendor,ha->oem_name);
2366 sprintf(inq.product,"Host Drive #%02d",t);
2367 strcpy(inq.revision," ");
ee54cc6a 2368 gdth_copy_internal_data(ha, scp, (char*)&inq, sizeof(gdth_inq_data));
1da177e4
LT
2369 break;
2370
2371 case REQUEST_SENSE:
2372 TRACE2(("Request sense hdrive %d\n",t));
2373 sd.errorcode = 0x70;
2374 sd.segno = 0x00;
2375 sd.key = NO_SENSE;
2376 sd.info = 0;
2377 sd.add_length= 0;
ee54cc6a 2378 gdth_copy_internal_data(ha, scp, (char*)&sd, sizeof(gdth_sense_data));
1da177e4
LT
2379 break;
2380
2381 case MODE_SENSE:
2382 TRACE2(("Mode sense hdrive %d\n",t));
2383 memset((char*)&mpd,0,sizeof(gdth_modep_data));
2384 mpd.hd.data_length = sizeof(gdth_modep_data);
2385 mpd.hd.dev_par = (ha->hdr[t].devtype&2) ? 0x80:0;
2386 mpd.hd.bd_length = sizeof(mpd.bd);
2387 mpd.bd.block_length[0] = (SECTOR_SIZE & 0x00ff0000) >> 16;
2388 mpd.bd.block_length[1] = (SECTOR_SIZE & 0x0000ff00) >> 8;
2389 mpd.bd.block_length[2] = (SECTOR_SIZE & 0x000000ff);
ee54cc6a 2390 gdth_copy_internal_data(ha, scp, (char*)&mpd, sizeof(gdth_modep_data));
1da177e4
LT
2391 break;
2392
2393 case READ_CAPACITY:
2394 TRACE2(("Read capacity hdrive %d\n",t));
1fe6dbf4 2395 if (ha->hdr[t].size > (u64)0xffffffff)
1da177e4
LT
2396 rdc.last_block_no = 0xffffffff;
2397 else
2398 rdc.last_block_no = cpu_to_be32(ha->hdr[t].size-1);
2399 rdc.block_length = cpu_to_be32(SECTOR_SIZE);
ee54cc6a 2400 gdth_copy_internal_data(ha, scp, (char*)&rdc, sizeof(gdth_rdcap_data));
1da177e4
LT
2401 break;
2402
2403 case SERVICE_ACTION_IN:
2404 if ((scp->cmnd[1] & 0x1f) == SAI_READ_CAPACITY_16 &&
2405 (ha->cache_feat & GDT_64BIT)) {
2406 gdth_rdcap16_data rdc16;
2407
2408 TRACE2(("Read capacity (16) hdrive %d\n",t));
2409 rdc16.last_block_no = cpu_to_be64(ha->hdr[t].size-1);
2410 rdc16.block_length = cpu_to_be32(SECTOR_SIZE);
45f1a41b 2411 gdth_copy_internal_data(ha, scp, (char*)&rdc16,
ee54cc6a 2412 sizeof(gdth_rdcap16_data));
1da177e4
LT
2413 } else {
2414 scp->result = DID_ABORT << 16;
2415 }
2416 break;
2417
2418 default:
2419 TRACE2(("Internal cache cmd 0x%x unknown\n",scp->cmnd[0]));
2420 break;
2421 }
2422
f842b64e
BH
2423 if (!cmndinfo->wait_for_completion)
2424 cmndinfo->wait_for_completion++;
1da177e4
LT
2425 else
2426 return 1;
2427
2428 return 0;
2429}
45f1a41b 2430
1fe6dbf4 2431static int gdth_fill_cache_cmd(gdth_ha_str *ha, Scsi_Cmnd *scp, u16 hdrive)
1da177e4 2432{
1da177e4 2433 register gdth_cmd_str *cmdp;
f842b64e 2434 struct gdth_cmndinfo *cmndinfo = gdth_cmnd_priv(scp);
1fe6dbf4
DJ
2435 u32 cnt, blockcnt;
2436 u64 no, blockno;
1da177e4 2437 int i, cmd_index, read_write, sgcnt, mode64;
1da177e4 2438
1da177e4
LT
2439 cmdp = ha->pccb;
2440 TRACE(("gdth_fill_cache_cmd() cmd 0x%x cmdsize %d hdrive %d\n",
2441 scp->cmnd[0],scp->cmd_len,hdrive));
2442
2443 if (ha->type==GDT_EISA && ha->cmd_cnt>0)
2444 return 0;
2445
2446 mode64 = (ha->cache_feat & GDT_64BIT) ? TRUE : FALSE;
2447 /* test for READ_16, WRITE_16 if !mode64 ? ---
2448 not required, should not occur due to error return on
2449 READ_CAPACITY_16 */
2450
2451 cmdp->Service = CACHESERVICE;
2452 cmdp->RequestBuffer = scp;
2453 /* search free command index */
45f1a41b 2454 if (!(cmd_index=gdth_get_cmd_index(ha))) {
1da177e4
LT
2455 TRACE(("GDT: No free command index found\n"));
2456 return 0;
2457 }
2458 /* if it's the first command, set command semaphore */
2459 if (ha->cmd_cnt == 0)
45f1a41b 2460 gdth_set_sema0(ha);
1da177e4
LT
2461
2462 /* fill command */
2463 read_write = 0;
f842b64e
BH
2464 if (cmndinfo->OpCode != -1)
2465 cmdp->OpCode = cmndinfo->OpCode; /* special cache cmd. */
1da177e4
LT
2466 else if (scp->cmnd[0] == RESERVE)
2467 cmdp->OpCode = GDT_RESERVE_DRV;
2468 else if (scp->cmnd[0] == RELEASE)
2469 cmdp->OpCode = GDT_RELEASE_DRV;
2470 else if (scp->cmnd[0] == ALLOW_MEDIUM_REMOVAL) {
2471 if (scp->cmnd[4] & 1) /* prevent ? */
2472 cmdp->OpCode = GDT_MOUNT;
2473 else if (scp->cmnd[3] & 1) /* removable drive ? */
2474 cmdp->OpCode = GDT_UNMOUNT;
2475 else
2476 cmdp->OpCode = GDT_FLUSH;
2477 } else if (scp->cmnd[0] == WRITE_6 || scp->cmnd[0] == WRITE_10 ||
2478 scp->cmnd[0] == WRITE_12 || scp->cmnd[0] == WRITE_16
2479 ) {
2480 read_write = 1;
2481 if (gdth_write_through || ((ha->hdr[hdrive].rw_attribs & 1) &&
2482 (ha->cache_feat & GDT_WR_THROUGH)))
2483 cmdp->OpCode = GDT_WRITE_THR;
2484 else
2485 cmdp->OpCode = GDT_WRITE;
2486 } else {
2487 read_write = 2;
2488 cmdp->OpCode = GDT_READ;
2489 }
2490
2491 cmdp->BoardNode = LOCALBOARD;
2492 if (mode64) {
2493 cmdp->u.cache64.DeviceNo = hdrive;
2494 cmdp->u.cache64.BlockNo = 1;
2495 cmdp->u.cache64.sg_canz = 0;
2496 } else {
2497 cmdp->u.cache.DeviceNo = hdrive;
2498 cmdp->u.cache.BlockNo = 1;
2499 cmdp->u.cache.sg_canz = 0;
2500 }
2501
2502 if (read_write) {
2503 if (scp->cmd_len == 16) {
1fe6dbf4 2504 memcpy(&no, &scp->cmnd[2], sizeof(u64));
1da177e4 2505 blockno = be64_to_cpu(no);
1fe6dbf4 2506 memcpy(&cnt, &scp->cmnd[10], sizeof(u32));
1da177e4
LT
2507 blockcnt = be32_to_cpu(cnt);
2508 } else if (scp->cmd_len == 10) {
1fe6dbf4 2509 memcpy(&no, &scp->cmnd[2], sizeof(u32));
1da177e4 2510 blockno = be32_to_cpu(no);
1fe6dbf4 2511 memcpy(&cnt, &scp->cmnd[7], sizeof(u16));
1da177e4
LT
2512 blockcnt = be16_to_cpu(cnt);
2513 } else {
1fe6dbf4 2514 memcpy(&no, &scp->cmnd[0], sizeof(u32));
1da177e4
LT
2515 blockno = be32_to_cpu(no) & 0x001fffffUL;
2516 blockcnt= scp->cmnd[4]==0 ? 0x100 : scp->cmnd[4];
2517 }
2518 if (mode64) {
2519 cmdp->u.cache64.BlockNo = blockno;
2520 cmdp->u.cache64.BlockCnt = blockcnt;
2521 } else {
1fe6dbf4 2522 cmdp->u.cache.BlockNo = (u32)blockno;
1da177e4
LT
2523 cmdp->u.cache.BlockCnt = blockcnt;
2524 }
2525
d35055a0 2526 if (scsi_bufflen(scp)) {
f842b64e 2527 cmndinfo->dma_dir = (read_write == 1 ?
1da177e4 2528 PCI_DMA_TODEVICE : PCI_DMA_FROMDEVICE);
d35055a0 2529 sgcnt = pci_map_sg(ha->pdev, scsi_sglist(scp), scsi_sg_count(scp),
3892d88a 2530 cmndinfo->dma_dir);
1da177e4 2531 if (mode64) {
3892d88a
BH
2532 struct scatterlist *sl;
2533
1fe6dbf4 2534 cmdp->u.cache64.DestAddr= (u64)-1;
1da177e4 2535 cmdp->u.cache64.sg_canz = sgcnt;
3892d88a 2536 scsi_for_each_sg(scp, sl, sgcnt, i) {
1da177e4
LT
2537 cmdp->u.cache64.sg_lst[i].sg_ptr = sg_dma_address(sl);
2538#ifdef GDTH_DMA_STATISTICS
1fe6dbf4 2539 if (cmdp->u.cache64.sg_lst[i].sg_ptr > (u64)0xffffffff)
1da177e4
LT
2540 ha->dma64_cnt++;
2541 else
2542 ha->dma32_cnt++;
2543#endif
2544 cmdp->u.cache64.sg_lst[i].sg_len = sg_dma_len(sl);
2545 }
2546 } else {
3892d88a
BH
2547 struct scatterlist *sl;
2548
1da177e4
LT
2549 cmdp->u.cache.DestAddr= 0xffffffff;
2550 cmdp->u.cache.sg_canz = sgcnt;
3892d88a 2551 scsi_for_each_sg(scp, sl, sgcnt, i) {
1da177e4
LT
2552 cmdp->u.cache.sg_lst[i].sg_ptr = sg_dma_address(sl);
2553#ifdef GDTH_DMA_STATISTICS
2554 ha->dma32_cnt++;
2555#endif
2556 cmdp->u.cache.sg_lst[i].sg_len = sg_dma_len(sl);
2557 }
2558 }
2559
2560#ifdef GDTH_STATISTICS
1fe6dbf4
DJ
2561 if (max_sg < (u32)sgcnt) {
2562 max_sg = (u32)sgcnt;
1da177e4
LT
2563 TRACE3(("GDT: max_sg = %d\n",max_sg));
2564 }
2565#endif
2566
1da177e4
LT
2567 }
2568 }
2569 /* evaluate command size, check space */
2570 if (mode64) {
2571 TRACE(("cache cmd: addr. %x sganz %x sgptr0 %x sglen0 %x\n",
2572 cmdp->u.cache64.DestAddr,cmdp->u.cache64.sg_canz,
2573 cmdp->u.cache64.sg_lst[0].sg_ptr,
2574 cmdp->u.cache64.sg_lst[0].sg_len));
2575 TRACE(("cache cmd: cmd %d blockno. %d, blockcnt %d\n",
2576 cmdp->OpCode,cmdp->u.cache64.BlockNo,cmdp->u.cache64.BlockCnt));
2577 ha->cmd_len = GDTOFFSOF(gdth_cmd_str,u.cache64.sg_lst) +
1fe6dbf4 2578 (u16)cmdp->u.cache64.sg_canz * sizeof(gdth_sg64_str);
1da177e4
LT
2579 } else {
2580 TRACE(("cache cmd: addr. %x sganz %x sgptr0 %x sglen0 %x\n",
2581 cmdp->u.cache.DestAddr,cmdp->u.cache.sg_canz,
2582 cmdp->u.cache.sg_lst[0].sg_ptr,
2583 cmdp->u.cache.sg_lst[0].sg_len));
2584 TRACE(("cache cmd: cmd %d blockno. %d, blockcnt %d\n",
2585 cmdp->OpCode,cmdp->u.cache.BlockNo,cmdp->u.cache.BlockCnt));
2586 ha->cmd_len = GDTOFFSOF(gdth_cmd_str,u.cache.sg_lst) +
1fe6dbf4 2587 (u16)cmdp->u.cache.sg_canz * sizeof(gdth_sg_str);
1da177e4
LT
2588 }
2589 if (ha->cmd_len & 3)
2590 ha->cmd_len += (4 - (ha->cmd_len & 3));
2591
2592 if (ha->cmd_cnt > 0) {
2593 if ((ha->cmd_offs_dpmem + ha->cmd_len + DPMEM_COMMAND_OFFSET) >
2594 ha->ic_all_size) {
2595 TRACE2(("gdth_fill_cache() DPMEM overflow\n"));
2596 ha->cmd_tab[cmd_index-2].cmnd = UNUSED_CMND;
2597 return 0;
2598 }
2599 }
2600
2601 /* copy command */
45f1a41b 2602 gdth_copy_command(ha);
1da177e4
LT
2603 return cmd_index;
2604}
2605
1fe6dbf4 2606static int gdth_fill_raw_cmd(gdth_ha_str *ha, Scsi_Cmnd *scp, u8 b)
1da177e4 2607{
1da177e4 2608 register gdth_cmd_str *cmdp;
1fe6dbf4 2609 u16 i;
3892d88a 2610 dma_addr_t sense_paddr;
1da177e4 2611 int cmd_index, sgcnt, mode64;
1fe6dbf4 2612 u8 t,l;
1da177e4 2613 struct page *page;
1fe6dbf4 2614 unsigned long offset;
3058d5de 2615 struct gdth_cmndinfo *cmndinfo;
1da177e4 2616
1da177e4
LT
2617 t = scp->device->id;
2618 l = scp->device->lun;
2619 cmdp = ha->pccb;
2620 TRACE(("gdth_fill_raw_cmd() cmd 0x%x bus %d ID %d LUN %d\n",
2621 scp->cmnd[0],b,t,l));
2622
2623 if (ha->type==GDT_EISA && ha->cmd_cnt>0)
2624 return 0;
2625
2626 mode64 = (ha->raw_feat & GDT_64BIT) ? TRUE : FALSE;
2627
2628 cmdp->Service = SCSIRAWSERVICE;
2629 cmdp->RequestBuffer = scp;
2630 /* search free command index */
45f1a41b 2631 if (!(cmd_index=gdth_get_cmd_index(ha))) {
1da177e4
LT
2632 TRACE(("GDT: No free command index found\n"));
2633 return 0;
2634 }
2635 /* if it's the first command, set command semaphore */
2636 if (ha->cmd_cnt == 0)
45f1a41b 2637 gdth_set_sema0(ha);
1da177e4 2638
3058d5de 2639 cmndinfo = gdth_cmnd_priv(scp);
1da177e4 2640 /* fill command */
f842b64e
BH
2641 if (cmndinfo->OpCode != -1) {
2642 cmdp->OpCode = cmndinfo->OpCode; /* special raw cmd. */
1da177e4
LT
2643 cmdp->BoardNode = LOCALBOARD;
2644 if (mode64) {
f842b64e 2645 cmdp->u.raw64.direction = (cmndinfo->phase >> 8);
1da177e4
LT
2646 TRACE2(("special raw cmd 0x%x param 0x%x\n",
2647 cmdp->OpCode, cmdp->u.raw64.direction));
2648 /* evaluate command size */
2649 ha->cmd_len = GDTOFFSOF(gdth_cmd_str,u.raw64.sg_lst);
2650 } else {
f842b64e 2651 cmdp->u.raw.direction = (cmndinfo->phase >> 8);
1da177e4
LT
2652 TRACE2(("special raw cmd 0x%x param 0x%x\n",
2653 cmdp->OpCode, cmdp->u.raw.direction));
2654 /* evaluate command size */
2655 ha->cmd_len = GDTOFFSOF(gdth_cmd_str,u.raw.sg_lst);
2656 }
2657
2658 } else {
2659 page = virt_to_page(scp->sense_buffer);
1fe6dbf4 2660 offset = (unsigned long)scp->sense_buffer & ~PAGE_MASK;
1da177e4
LT
2661 sense_paddr = pci_map_page(ha->pdev,page,offset,
2662 16,PCI_DMA_FROMDEVICE);
3058d5de
BH
2663
2664 cmndinfo->sense_paddr = sense_paddr;
1da177e4
LT
2665 cmdp->OpCode = GDT_WRITE; /* always */
2666 cmdp->BoardNode = LOCALBOARD;
2667 if (mode64) {
2668 cmdp->u.raw64.reserved = 0;
2669 cmdp->u.raw64.mdisc_time = 0;
2670 cmdp->u.raw64.mcon_time = 0;
2671 cmdp->u.raw64.clen = scp->cmd_len;
2672 cmdp->u.raw64.target = t;
2673 cmdp->u.raw64.lun = l;
2674 cmdp->u.raw64.bus = b;
2675 cmdp->u.raw64.priority = 0;
d35055a0 2676 cmdp->u.raw64.sdlen = scsi_bufflen(scp);
1da177e4
LT
2677 cmdp->u.raw64.sense_len = 16;
2678 cmdp->u.raw64.sense_data = sense_paddr;
2679 cmdp->u.raw64.direction =
2680 gdth_direction_tab[scp->cmnd[0]]==DOU ? GDTH_DATA_OUT:GDTH_DATA_IN;
2681 memcpy(cmdp->u.raw64.cmd,scp->cmnd,16);
bb9ba31c 2682 cmdp->u.raw64.sg_ranz = 0;
1da177e4
LT
2683 } else {
2684 cmdp->u.raw.reserved = 0;
2685 cmdp->u.raw.mdisc_time = 0;
2686 cmdp->u.raw.mcon_time = 0;
2687 cmdp->u.raw.clen = scp->cmd_len;
2688 cmdp->u.raw.target = t;
2689 cmdp->u.raw.lun = l;
2690 cmdp->u.raw.bus = b;
2691 cmdp->u.raw.priority = 0;
2692 cmdp->u.raw.link_p = 0;
d35055a0 2693 cmdp->u.raw.sdlen = scsi_bufflen(scp);
1da177e4
LT
2694 cmdp->u.raw.sense_len = 16;
2695 cmdp->u.raw.sense_data = sense_paddr;
2696 cmdp->u.raw.direction =
2697 gdth_direction_tab[scp->cmnd[0]]==DOU ? GDTH_DATA_OUT:GDTH_DATA_IN;
2698 memcpy(cmdp->u.raw.cmd,scp->cmnd,12);
bb9ba31c 2699 cmdp->u.raw.sg_ranz = 0;
1da177e4
LT
2700 }
2701
d35055a0 2702 if (scsi_bufflen(scp)) {
f842b64e 2703 cmndinfo->dma_dir = PCI_DMA_BIDIRECTIONAL;
d35055a0 2704 sgcnt = pci_map_sg(ha->pdev, scsi_sglist(scp), scsi_sg_count(scp),
3892d88a 2705 cmndinfo->dma_dir);
1da177e4 2706 if (mode64) {
3892d88a
BH
2707 struct scatterlist *sl;
2708
1fe6dbf4 2709 cmdp->u.raw64.sdata = (u64)-1;
1da177e4 2710 cmdp->u.raw64.sg_ranz = sgcnt;
3892d88a 2711 scsi_for_each_sg(scp, sl, sgcnt, i) {
1da177e4
LT
2712 cmdp->u.raw64.sg_lst[i].sg_ptr = sg_dma_address(sl);
2713#ifdef GDTH_DMA_STATISTICS
1fe6dbf4 2714 if (cmdp->u.raw64.sg_lst[i].sg_ptr > (u64)0xffffffff)
1da177e4
LT
2715 ha->dma64_cnt++;
2716 else
2717 ha->dma32_cnt++;
2718#endif
2719 cmdp->u.raw64.sg_lst[i].sg_len = sg_dma_len(sl);
2720 }
2721 } else {
3892d88a
BH
2722 struct scatterlist *sl;
2723
1da177e4
LT
2724 cmdp->u.raw.sdata = 0xffffffff;
2725 cmdp->u.raw.sg_ranz = sgcnt;
3892d88a 2726 scsi_for_each_sg(scp, sl, sgcnt, i) {
1da177e4
LT
2727 cmdp->u.raw.sg_lst[i].sg_ptr = sg_dma_address(sl);
2728#ifdef GDTH_DMA_STATISTICS
2729 ha->dma32_cnt++;
2730#endif
2731 cmdp->u.raw.sg_lst[i].sg_len = sg_dma_len(sl);
2732 }
2733 }
2734
2735#ifdef GDTH_STATISTICS
2736 if (max_sg < sgcnt) {
2737 max_sg = sgcnt;
2738 TRACE3(("GDT: max_sg = %d\n",sgcnt));
2739 }
2740#endif
2741
1da177e4
LT
2742 }
2743 if (mode64) {
2744 TRACE(("raw cmd: addr. %x sganz %x sgptr0 %x sglen0 %x\n",
2745 cmdp->u.raw64.sdata,cmdp->u.raw64.sg_ranz,
2746 cmdp->u.raw64.sg_lst[0].sg_ptr,
2747 cmdp->u.raw64.sg_lst[0].sg_len));
2748 /* evaluate command size */
2749 ha->cmd_len = GDTOFFSOF(gdth_cmd_str,u.raw64.sg_lst) +
1fe6dbf4 2750 (u16)cmdp->u.raw64.sg_ranz * sizeof(gdth_sg64_str);
1da177e4
LT
2751 } else {
2752 TRACE(("raw cmd: addr. %x sganz %x sgptr0 %x sglen0 %x\n",
2753 cmdp->u.raw.sdata,cmdp->u.raw.sg_ranz,
2754 cmdp->u.raw.sg_lst[0].sg_ptr,
2755 cmdp->u.raw.sg_lst[0].sg_len));
2756 /* evaluate command size */
2757 ha->cmd_len = GDTOFFSOF(gdth_cmd_str,u.raw.sg_lst) +
1fe6dbf4 2758 (u16)cmdp->u.raw.sg_ranz * sizeof(gdth_sg_str);
1da177e4
LT
2759 }
2760 }
2761 /* check space */
2762 if (ha->cmd_len & 3)
2763 ha->cmd_len += (4 - (ha->cmd_len & 3));
2764
2765 if (ha->cmd_cnt > 0) {
2766 if ((ha->cmd_offs_dpmem + ha->cmd_len + DPMEM_COMMAND_OFFSET) >
2767 ha->ic_all_size) {
2768 TRACE2(("gdth_fill_raw() DPMEM overflow\n"));
2769 ha->cmd_tab[cmd_index-2].cmnd = UNUSED_CMND;
2770 return 0;
2771 }
2772 }
2773
2774 /* copy command */
45f1a41b 2775 gdth_copy_command(ha);
1da177e4
LT
2776 return cmd_index;
2777}
2778
45f1a41b 2779static int gdth_special_cmd(gdth_ha_str *ha, Scsi_Cmnd *scp)
1da177e4 2780{
1da177e4 2781 register gdth_cmd_str *cmdp;
ee54cc6a 2782 struct gdth_cmndinfo *cmndinfo = gdth_cmnd_priv(scp);
1da177e4
LT
2783 int cmd_index;
2784
1da177e4
LT
2785 cmdp= ha->pccb;
2786 TRACE2(("gdth_special_cmd(): "));
2787
2788 if (ha->type==GDT_EISA && ha->cmd_cnt>0)
2789 return 0;
2790
ee54cc6a 2791 *cmdp = *cmndinfo->internal_cmd_str;
1da177e4
LT
2792 cmdp->RequestBuffer = scp;
2793
2794 /* search free command index */
45f1a41b 2795 if (!(cmd_index=gdth_get_cmd_index(ha))) {
1da177e4
LT
2796 TRACE(("GDT: No free command index found\n"));
2797 return 0;
2798 }
2799
2800 /* if it's the first command, set command semaphore */
2801 if (ha->cmd_cnt == 0)
45f1a41b 2802 gdth_set_sema0(ha);
1da177e4
LT
2803
2804 /* evaluate command size, check space */
2805 if (cmdp->OpCode == GDT_IOCTL) {
2806 TRACE2(("IOCTL\n"));
2807 ha->cmd_len =
1fe6dbf4 2808 GDTOFFSOF(gdth_cmd_str,u.ioctl.p_param) + sizeof(u64);
1da177e4
LT
2809 } else if (cmdp->Service == CACHESERVICE) {
2810 TRACE2(("cache command %d\n",cmdp->OpCode));
2811 if (ha->cache_feat & GDT_64BIT)
2812 ha->cmd_len =
2813 GDTOFFSOF(gdth_cmd_str,u.cache64.sg_lst) + sizeof(gdth_sg64_str);
2814 else
2815 ha->cmd_len =
2816 GDTOFFSOF(gdth_cmd_str,u.cache.sg_lst) + sizeof(gdth_sg_str);
2817 } else if (cmdp->Service == SCSIRAWSERVICE) {
2818 TRACE2(("raw command %d\n",cmdp->OpCode));
2819 if (ha->raw_feat & GDT_64BIT)
2820 ha->cmd_len =
2821 GDTOFFSOF(gdth_cmd_str,u.raw64.sg_lst) + sizeof(gdth_sg64_str);
2822 else
2823 ha->cmd_len =
2824 GDTOFFSOF(gdth_cmd_str,u.raw.sg_lst) + sizeof(gdth_sg_str);
2825 }
2826
2827 if (ha->cmd_len & 3)
2828 ha->cmd_len += (4 - (ha->cmd_len & 3));
2829
2830 if (ha->cmd_cnt > 0) {
2831 if ((ha->cmd_offs_dpmem + ha->cmd_len + DPMEM_COMMAND_OFFSET) >
2832 ha->ic_all_size) {
2833 TRACE2(("gdth_special_cmd() DPMEM overflow\n"));
2834 ha->cmd_tab[cmd_index-2].cmnd = UNUSED_CMND;
2835 return 0;
2836 }
2837 }
2838
2839 /* copy command */
45f1a41b 2840 gdth_copy_command(ha);
1da177e4
LT
2841 return cmd_index;
2842}
2843
2844
2845/* Controller event handling functions */
1fe6dbf4
DJ
2846static gdth_evt_str *gdth_store_event(gdth_ha_str *ha, u16 source,
2847 u16 idx, gdth_evt_data *evt)
1da177e4
LT
2848{
2849 gdth_evt_str *e;
2850 struct timeval tv;
2851
2852 /* no GDTH_LOCK_HA() ! */
2853 TRACE2(("gdth_store_event() source %d idx %d\n", source, idx));
2854 if (source == 0) /* no source -> no event */
2855 return NULL;
2856
2857 if (ebuffer[elastidx].event_source == source &&
2858 ebuffer[elastidx].event_idx == idx &&
2859 ((evt->size != 0 && ebuffer[elastidx].event_data.size != 0 &&
2860 !memcmp((char *)&ebuffer[elastidx].event_data.eu,
2861 (char *)&evt->eu, evt->size)) ||
2862 (evt->size == 0 && ebuffer[elastidx].event_data.size == 0 &&
2863 !strcmp((char *)&ebuffer[elastidx].event_data.event_string,
2864 (char *)&evt->event_string)))) {
2865 e = &ebuffer[elastidx];
2866 do_gettimeofday(&tv);
2867 e->last_stamp = tv.tv_sec;
2868 ++e->same_count;
2869 } else {
2870 if (ebuffer[elastidx].event_source != 0) { /* entry not free ? */
2871 ++elastidx;
2872 if (elastidx == MAX_EVENTS)
2873 elastidx = 0;
2874 if (elastidx == eoldidx) { /* reached mark ? */
2875 ++eoldidx;
2876 if (eoldidx == MAX_EVENTS)
2877 eoldidx = 0;
2878 }
2879 }
2880 e = &ebuffer[elastidx];
2881 e->event_source = source;
2882 e->event_idx = idx;
2883 do_gettimeofday(&tv);
2884 e->first_stamp = e->last_stamp = tv.tv_sec;
2885 e->same_count = 1;
2886 e->event_data = *evt;
2887 e->application = 0;
2888 }
2889 return e;
2890}
2891
2892static int gdth_read_event(gdth_ha_str *ha, int handle, gdth_evt_str *estr)
2893{
2894 gdth_evt_str *e;
2895 int eindex;
1fe6dbf4 2896 unsigned long flags;
1da177e4
LT
2897
2898 TRACE2(("gdth_read_event() handle %d\n", handle));
2899 spin_lock_irqsave(&ha->smp_lock, flags);
2900 if (handle == -1)
2901 eindex = eoldidx;
2902 else
2903 eindex = handle;
2904 estr->event_source = 0;
2905
690e7448 2906 if (eindex < 0 || eindex >= MAX_EVENTS) {
1da177e4
LT
2907 spin_unlock_irqrestore(&ha->smp_lock, flags);
2908 return eindex;
2909 }
2910 e = &ebuffer[eindex];
2911 if (e->event_source != 0) {
2912 if (eindex != elastidx) {
2913 if (++eindex == MAX_EVENTS)
2914 eindex = 0;
2915 } else {
2916 eindex = -1;
2917 }
2918 memcpy(estr, e, sizeof(gdth_evt_str));
2919 }
2920 spin_unlock_irqrestore(&ha->smp_lock, flags);
2921 return eindex;
2922}
2923
2924static void gdth_readapp_event(gdth_ha_str *ha,
1fe6dbf4 2925 u8 application, gdth_evt_str *estr)
1da177e4
LT
2926{
2927 gdth_evt_str *e;
2928 int eindex;
1fe6dbf4
DJ
2929 unsigned long flags;
2930 u8 found = FALSE;
1da177e4
LT
2931
2932 TRACE2(("gdth_readapp_event() app. %d\n", application));
2933 spin_lock_irqsave(&ha->smp_lock, flags);
2934 eindex = eoldidx;
2935 for (;;) {
2936 e = &ebuffer[eindex];
2937 if (e->event_source == 0)
2938 break;
2939 if ((e->application & application) == 0) {
2940 e->application |= application;
2941 found = TRUE;
2942 break;
2943 }
2944 if (eindex == elastidx)
2945 break;
2946 if (++eindex == MAX_EVENTS)
2947 eindex = 0;
2948 }
2949 if (found)
2950 memcpy(estr, e, sizeof(gdth_evt_str));
2951 else
2952 estr->event_source = 0;
2953 spin_unlock_irqrestore(&ha->smp_lock, flags);
2954}
2955
2956static void gdth_clear_events(void)
2957{
2958 TRACE(("gdth_clear_events()"));
2959
2960 eoldidx = elastidx = 0;
2961 ebuffer[0].event_source = 0;
2962}
2963
2964
2965/* SCSI interface functions */
2966
230e886e 2967static irqreturn_t __gdth_interrupt(gdth_ha_str *ha,
10e1b4bc 2968 int gdth_from_wait, int* pIndex)
1da177e4 2969{
1da177e4
LT
2970 gdt6m_dpram_str __iomem *dp6m_ptr = NULL;
2971 gdt6_dpram_str __iomem *dp6_ptr;
2972 gdt2_dpram_str __iomem *dp2_ptr;
2973 Scsi_Cmnd *scp;
10e1b4bc 2974 int rval, i;
1fe6dbf4
DJ
2975 u8 IStatus;
2976 u16 Service;
2977 unsigned long flags = 0;
1da177e4
LT
2978#ifdef INT_COAL
2979 int coalesced = FALSE;
2980 int next = FALSE;
2981 gdth_coal_status *pcs = NULL;
2982 int act_int_coal = 0;
2983#endif
2984
230e886e 2985 TRACE(("gdth_interrupt() IRQ %d\n", ha->irq));
1da177e4
LT
2986
2987 /* if polling and not from gdth_wait() -> return */
2988 if (gdth_polling) {
2989 if (!gdth_from_wait) {
2990 return IRQ_HANDLED;
2991 }
2992 }
2993
2994 if (!gdth_polling)
10e1b4bc 2995 spin_lock_irqsave(&ha->smp_lock, flags);
1da177e4
LT
2996
2997 /* search controller */
230e886e
JG
2998 IStatus = gdth_get_status(ha);
2999 if (IStatus == 0) {
1da177e4
LT
3000 /* spurious interrupt */
3001 if (!gdth_polling)
10e1b4bc
BH
3002 spin_unlock_irqrestore(&ha->smp_lock, flags);
3003 return IRQ_HANDLED;
1da177e4 3004 }
1da177e4
LT
3005
3006#ifdef GDTH_STATISTICS
3007 ++act_ints;
3008#endif
3009
3010#ifdef INT_COAL
3011 /* See if the fw is returning coalesced status */
3012 if (IStatus == COALINDEX) {
3013 /* Coalesced status. Setup the initial status
3014 buffer pointer and flags */
3015 pcs = ha->coal_stat;
3016 coalesced = TRUE;
3017 next = TRUE;
3018 }
3019
3020 do {
3021 if (coalesced) {
3022 /* For coalesced requests all status
3023 information is found in the status buffer */
1fe6dbf4 3024 IStatus = (u8)(pcs->status & 0xff);
1da177e4
LT
3025 }
3026#endif
3027
3028 if (ha->type == GDT_EISA) {
3029 if (IStatus & 0x80) { /* error flag */
3030 IStatus &= ~0x80;
3031 ha->status = inw(ha->bmic + MAILBOXREG+8);
3032 TRACE2(("gdth_interrupt() error %d/%d\n",IStatus,ha->status));
3033 } else /* no error */
3034 ha->status = S_OK;
3035 ha->info = inl(ha->bmic + MAILBOXREG+12);
3036 ha->service = inw(ha->bmic + MAILBOXREG+10);
3037 ha->info2 = inl(ha->bmic + MAILBOXREG+4);
3038
3039 outb(0xff, ha->bmic + EDOORREG); /* acknowledge interrupt */
3040 outb(0x00, ha->bmic + SEMA1REG); /* reset status semaphore */
3041 } else if (ha->type == GDT_ISA) {
3042 dp2_ptr = ha->brd;
3043 if (IStatus & 0x80) { /* error flag */
3044 IStatus &= ~0x80;
a52667f3 3045 ha->status = readw(&dp2_ptr->u.ic.Status);
1da177e4
LT
3046 TRACE2(("gdth_interrupt() error %d/%d\n",IStatus,ha->status));
3047 } else /* no error */
3048 ha->status = S_OK;
a52667f3
JG
3049 ha->info = readl(&dp2_ptr->u.ic.Info[0]);
3050 ha->service = readw(&dp2_ptr->u.ic.Service);
3051 ha->info2 = readl(&dp2_ptr->u.ic.Info[1]);
1da177e4 3052
a52667f3
JG
3053 writeb(0xff, &dp2_ptr->io.irqdel); /* acknowledge interrupt */
3054 writeb(0, &dp2_ptr->u.ic.Cmd_Index);/* reset command index */
3055 writeb(0, &dp2_ptr->io.Sema1); /* reset status semaphore */
1da177e4
LT
3056 } else if (ha->type == GDT_PCI) {
3057 dp6_ptr = ha->brd;
3058 if (IStatus & 0x80) { /* error flag */
3059 IStatus &= ~0x80;
a52667f3 3060 ha->status = readw(&dp6_ptr->u.ic.Status);
1da177e4
LT
3061 TRACE2(("gdth_interrupt() error %d/%d\n",IStatus,ha->status));
3062 } else /* no error */
3063 ha->status = S_OK;
a52667f3
JG
3064 ha->info = readl(&dp6_ptr->u.ic.Info[0]);
3065 ha->service = readw(&dp6_ptr->u.ic.Service);
3066 ha->info2 = readl(&dp6_ptr->u.ic.Info[1]);
1da177e4 3067
a52667f3
JG
3068 writeb(0xff, &dp6_ptr->io.irqdel); /* acknowledge interrupt */
3069 writeb(0, &dp6_ptr->u.ic.Cmd_Index);/* reset command index */
3070 writeb(0, &dp6_ptr->io.Sema1); /* reset status semaphore */
1da177e4
LT
3071 } else if (ha->type == GDT_PCINEW) {
3072 if (IStatus & 0x80) { /* error flag */
3073 IStatus &= ~0x80;
3074 ha->status = inw(PTR2USHORT(&ha->plx->status));
3075 TRACE2(("gdth_interrupt() error %d/%d\n",IStatus,ha->status));
3076 } else
3077 ha->status = S_OK;
3078 ha->info = inl(PTR2USHORT(&ha->plx->info[0]));
3079 ha->service = inw(PTR2USHORT(&ha->plx->service));
3080 ha->info2 = inl(PTR2USHORT(&ha->plx->info[1]));
3081
3082 outb(0xff, PTR2USHORT(&ha->plx->edoor_reg));
3083 outb(0x00, PTR2USHORT(&ha->plx->sema1_reg));
3084 } else if (ha->type == GDT_PCIMPR) {
3085 dp6m_ptr = ha->brd;
3086 if (IStatus & 0x80) { /* error flag */
3087 IStatus &= ~0x80;
3088#ifdef INT_COAL
3089 if (coalesced)
107e716b 3090 ha->status = pcs->ext_status & 0xffff;
1da177e4
LT
3091 else
3092#endif
a52667f3 3093 ha->status = readw(&dp6m_ptr->i960r.status);
1da177e4
LT
3094 TRACE2(("gdth_interrupt() error %d/%d\n",IStatus,ha->status));
3095 } else /* no error */
3096 ha->status = S_OK;
3097#ifdef INT_COAL
3098 /* get information */
3099 if (coalesced) {
3100 ha->info = pcs->info0;
3101 ha->info2 = pcs->info1;
107e716b 3102 ha->service = (pcs->ext_status >> 16) & 0xffff;
1da177e4
LT
3103 } else
3104#endif
3105 {
a52667f3
JG
3106 ha->info = readl(&dp6m_ptr->i960r.info[0]);
3107 ha->service = readw(&dp6m_ptr->i960r.service);
3108 ha->info2 = readl(&dp6m_ptr->i960r.info[1]);
1da177e4
LT
3109 }
3110 /* event string */
3111 if (IStatus == ASYNCINDEX) {
3112 if (ha->service != SCREENSERVICE &&
3113 (ha->fw_vers & 0xff) >= 0x1a) {
a52667f3 3114 ha->dvr.severity = readb
1da177e4
LT
3115 (&((gdt6m_dpram_str __iomem *)ha->brd)->i960r.severity);
3116 for (i = 0; i < 256; ++i) {
a52667f3 3117 ha->dvr.event_string[i] = readb
1da177e4
LT
3118 (&((gdt6m_dpram_str __iomem *)ha->brd)->i960r.evt_str[i]);
3119 if (ha->dvr.event_string[i] == 0)
3120 break;
3121 }
3122 }
3123 }
3124#ifdef INT_COAL
3125 /* Make sure that non coalesced interrupts get cleared
3126 before being handled by gdth_async_event/gdth_sync_event */
3127 if (!coalesced)
3128#endif
3129 {
a52667f3
JG
3130 writeb(0xff, &dp6m_ptr->i960r.edoor_reg);
3131 writeb(0, &dp6m_ptr->i960r.sema1_reg);
1da177e4
LT
3132 }
3133 } else {
3134 TRACE2(("gdth_interrupt() unknown controller type\n"));
3135 if (!gdth_polling)
10e1b4bc 3136 spin_unlock_irqrestore(&ha->smp_lock, flags);
1da177e4
LT
3137 return IRQ_HANDLED;
3138 }
3139
3140 TRACE(("gdth_interrupt() index %d stat %d info %d\n",
3141 IStatus,ha->status,ha->info));
3142
3143 if (gdth_from_wait) {
10e1b4bc 3144 *pIndex = (int)IStatus;
1da177e4
LT
3145 }
3146
3147 if (IStatus == ASYNCINDEX) {
3148 TRACE2(("gdth_interrupt() async. event\n"));
45f1a41b 3149 gdth_async_event(ha);
1da177e4 3150 if (!gdth_polling)
10e1b4bc 3151 spin_unlock_irqrestore(&ha->smp_lock, flags);
45f1a41b 3152 gdth_next(ha);
1da177e4
LT
3153 return IRQ_HANDLED;
3154 }
3155
3156 if (IStatus == SPEZINDEX) {
3157 TRACE2(("Service unknown or not initialized !\n"));
3158 ha->dvr.size = sizeof(ha->dvr.eu.driver);
10e1b4bc 3159 ha->dvr.eu.driver.ionode = ha->hanum;
1da177e4
LT
3160 gdth_store_event(ha, ES_DRIVER, 4, &ha->dvr);
3161 if (!gdth_polling)
10e1b4bc 3162 spin_unlock_irqrestore(&ha->smp_lock, flags);
1da177e4
LT
3163 return IRQ_HANDLED;
3164 }
3165 scp = ha->cmd_tab[IStatus-2].cmnd;
3166 Service = ha->cmd_tab[IStatus-2].service;
3167 ha->cmd_tab[IStatus-2].cmnd = UNUSED_CMND;
3168 if (scp == UNUSED_CMND) {
3169 TRACE2(("gdth_interrupt() index to unused command (%d)\n",IStatus));
3170 ha->dvr.size = sizeof(ha->dvr.eu.driver);
10e1b4bc 3171 ha->dvr.eu.driver.ionode = ha->hanum;
1da177e4
LT
3172 ha->dvr.eu.driver.index = IStatus;
3173 gdth_store_event(ha, ES_DRIVER, 1, &ha->dvr);
3174 if (!gdth_polling)
10e1b4bc 3175 spin_unlock_irqrestore(&ha->smp_lock, flags);
1da177e4
LT
3176 return IRQ_HANDLED;
3177 }
3178 if (scp == INTERNAL_CMND) {
3179 TRACE(("gdth_interrupt() answer to internal command\n"));
3180 if (!gdth_polling)
10e1b4bc 3181 spin_unlock_irqrestore(&ha->smp_lock, flags);
1da177e4
LT
3182 return IRQ_HANDLED;
3183 }
3184
3185 TRACE(("gdth_interrupt() sync. status\n"));
45f1a41b 3186 rval = gdth_sync_event(ha,Service,IStatus,scp);
1da177e4 3187 if (!gdth_polling)
10e1b4bc 3188 spin_unlock_irqrestore(&ha->smp_lock, flags);
1da177e4 3189 if (rval == 2) {
f842b64e 3190 gdth_putq(ha, scp, gdth_cmnd_priv(scp)->priority);
1da177e4 3191 } else if (rval == 1) {
b8bff2ae 3192 gdth_scsi_done(scp);
1da177e4
LT
3193 }
3194
3195#ifdef INT_COAL
3196 if (coalesced) {
3197 /* go to the next status in the status buffer */
3198 ++pcs;
3199#ifdef GDTH_STATISTICS
3200 ++act_int_coal;
3201 if (act_int_coal > max_int_coal) {
3202 max_int_coal = act_int_coal;
1fe6dbf4 3203 printk("GDT: max_int_coal = %d\n",(u16)max_int_coal);
1da177e4
LT
3204 }
3205#endif
3206 /* see if there is another status */
3207 if (pcs->status == 0)
3208 /* Stop the coalesce loop */
3209 next = FALSE;
3210 }
3211 } while (next);
3212
3213 /* coalescing only for new GDT_PCIMPR controllers available */
3214 if (ha->type == GDT_PCIMPR && coalesced) {
a52667f3
JG
3215 writeb(0xff, &dp6m_ptr->i960r.edoor_reg);
3216 writeb(0, &dp6m_ptr->i960r.sema1_reg);
1da177e4
LT
3217 }
3218#endif
3219
45f1a41b 3220 gdth_next(ha);
1da177e4
LT
3221 return IRQ_HANDLED;
3222}
3223
10e1b4bc
BH
3224static irqreturn_t gdth_interrupt(int irq, void *dev_id)
3225{
230e886e 3226 gdth_ha_str *ha = dev_id;
10e1b4bc 3227
230e886e 3228 return __gdth_interrupt(ha, false, NULL);
10e1b4bc
BH
3229}
3230
1fe6dbf4 3231static int gdth_sync_event(gdth_ha_str *ha, int service, u8 index,
45f1a41b 3232 Scsi_Cmnd *scp)
1da177e4 3233{
1da177e4
LT
3234 gdth_msg_str *msg;
3235 gdth_cmd_str *cmdp;
1fe6dbf4 3236 u8 b, t;
3058d5de 3237 struct gdth_cmndinfo *cmndinfo = gdth_cmnd_priv(scp);
1da177e4 3238
1da177e4
LT
3239 cmdp = ha->pccb;
3240 TRACE(("gdth_sync_event() serv %d status %d\n",
3241 service,ha->status));
3242
3243 if (service == SCREENSERVICE) {
3244 msg = ha->pmsg;
3245 TRACE(("len: %d, answer: %d, ext: %d, alen: %d\n",
3246 msg->msg_len,msg->msg_answer,msg->msg_ext,msg->msg_alen));
3247 if (msg->msg_len > MSGLEN+1)
3248 msg->msg_len = MSGLEN+1;
3249 if (msg->msg_len)
3250 if (!(msg->msg_answer && msg->msg_ext)) {
3251 msg->msg_text[msg->msg_len] = '\0';
3252 printk("%s",msg->msg_text);
3253 }
3254
3255 if (msg->msg_ext && !msg->msg_answer) {
45f1a41b 3256 while (gdth_test_busy(ha))
1da177e4
LT
3257 gdth_delay(0);
3258 cmdp->Service = SCREENSERVICE;
3259 cmdp->RequestBuffer = SCREEN_CMND;
45f1a41b
BH
3260 gdth_get_cmd_index(ha);
3261 gdth_set_sema0(ha);
1da177e4
LT
3262 cmdp->OpCode = GDT_READ;
3263 cmdp->BoardNode = LOCALBOARD;
3264 cmdp->u.screen.reserved = 0;
3265 cmdp->u.screen.su.msg.msg_handle= msg->msg_handle;
3266 cmdp->u.screen.su.msg.msg_addr = ha->msg_phys;
3267 ha->cmd_offs_dpmem = 0;
3268 ha->cmd_len = GDTOFFSOF(gdth_cmd_str,u.screen.su.msg.msg_addr)
1fe6dbf4 3269 + sizeof(u64);
1da177e4 3270 ha->cmd_cnt = 0;
45f1a41b
BH
3271 gdth_copy_command(ha);
3272 gdth_release_event(ha);
1da177e4
LT
3273 return 0;
3274 }
3275
3276 if (msg->msg_answer && msg->msg_alen) {
3277 /* default answers (getchar() not possible) */
3278 if (msg->msg_alen == 1) {
3279 msg->msg_alen = 0;
3280 msg->msg_len = 1;
3281 msg->msg_text[0] = 0;
3282 } else {
3283 msg->msg_alen -= 2;
3284 msg->msg_len = 2;
3285 msg->msg_text[0] = 1;
3286 msg->msg_text[1] = 0;
3287 }
3288 msg->msg_ext = 0;
3289 msg->msg_answer = 0;
45f1a41b 3290 while (gdth_test_busy(ha))
1da177e4
LT
3291 gdth_delay(0);
3292 cmdp->Service = SCREENSERVICE;
3293 cmdp->RequestBuffer = SCREEN_CMND;
45f1a41b
BH
3294 gdth_get_cmd_index(ha);
3295 gdth_set_sema0(ha);
1da177e4
LT
3296 cmdp->OpCode = GDT_WRITE;
3297 cmdp->BoardNode = LOCALBOARD;
3298 cmdp->u.screen.reserved = 0;
3299 cmdp->u.screen.su.msg.msg_handle= msg->msg_handle;
3300 cmdp->u.screen.su.msg.msg_addr = ha->msg_phys;
3301 ha->cmd_offs_dpmem = 0;
3302 ha->cmd_len = GDTOFFSOF(gdth_cmd_str,u.screen.su.msg.msg_addr)
1fe6dbf4 3303 + sizeof(u64);
1da177e4 3304 ha->cmd_cnt = 0;
45f1a41b
BH
3305 gdth_copy_command(ha);
3306 gdth_release_event(ha);
1da177e4
LT
3307 return 0;
3308 }
3309 printk("\n");
3310
3311 } else {
52759e6a 3312 b = scp->device->channel;
1da177e4 3313 t = scp->device->id;
f842b64e 3314 if (cmndinfo->OpCode == -1 && b != ha->virt_bus) {
1da177e4
LT
3315 ha->raw[BUS_L2P(ha,b)].io_cnt[t]--;
3316 }
3317 /* cache or raw service */
3318 if (ha->status == S_BSY) {
3319 TRACE2(("Controller busy -> retry !\n"));
f842b64e
BH
3320 if (cmndinfo->OpCode == GDT_MOUNT)
3321 cmndinfo->OpCode = GDT_CLUST_INFO;
1da177e4
LT
3322 /* retry */
3323 return 2;
3324 }
d35055a0
BH
3325 if (scsi_bufflen(scp))
3326 pci_unmap_sg(ha->pdev, scsi_sglist(scp), scsi_sg_count(scp),
3892d88a
BH
3327 cmndinfo->dma_dir);
3328
3058d5de
BH
3329 if (cmndinfo->sense_paddr)
3330 pci_unmap_page(ha->pdev, cmndinfo->sense_paddr, 16,
3331 PCI_DMA_FROMDEVICE);
1da177e4
LT
3332
3333 if (ha->status == S_OK) {
f842b64e
BH
3334 cmndinfo->status = S_OK;
3335 cmndinfo->info = ha->info;
3336 if (cmndinfo->OpCode != -1) {
1da177e4 3337 TRACE2(("gdth_sync_event(): special cmd 0x%x OK\n",
f842b64e 3338 cmndinfo->OpCode));
1da177e4 3339 /* special commands GDT_CLUST_INFO/GDT_MOUNT ? */
f842b64e 3340 if (cmndinfo->OpCode == GDT_CLUST_INFO) {
1fe6dbf4 3341 ha->hdr[t].cluster_type = (u8)ha->info;
1da177e4
LT
3342 if (!(ha->hdr[t].cluster_type &
3343 CLUSTER_MOUNTED)) {
3344 /* NOT MOUNTED -> MOUNT */
f842b64e 3345 cmndinfo->OpCode = GDT_MOUNT;
1da177e4
LT
3346 if (ha->hdr[t].cluster_type &
3347 CLUSTER_RESERVED) {
3348 /* cluster drive RESERVED (on the other node) */
f842b64e 3349 cmndinfo->phase = -2; /* reservation conflict */
1da177e4
LT
3350 }
3351 } else {
f842b64e 3352 cmndinfo->OpCode = -1;
1da177e4
LT
3353 }
3354 } else {
f842b64e 3355 if (cmndinfo->OpCode == GDT_MOUNT) {
1da177e4
LT
3356 ha->hdr[t].cluster_type |= CLUSTER_MOUNTED;
3357 ha->hdr[t].media_changed = TRUE;
f842b64e 3358 } else if (cmndinfo->OpCode == GDT_UNMOUNT) {
1da177e4
LT
3359 ha->hdr[t].cluster_type &= ~CLUSTER_MOUNTED;
3360 ha->hdr[t].media_changed = TRUE;
3361 }
f842b64e 3362 cmndinfo->OpCode = -1;
1da177e4
LT
3363 }
3364 /* retry */
f842b64e 3365 cmndinfo->priority = HIGH_PRI;
1da177e4
LT
3366 return 2;
3367 } else {
3368 /* RESERVE/RELEASE ? */
3369 if (scp->cmnd[0] == RESERVE) {
3370 ha->hdr[t].cluster_type |= CLUSTER_RESERVED;
3371 } else if (scp->cmnd[0] == RELEASE) {
3372 ha->hdr[t].cluster_type &= ~CLUSTER_RESERVED;
3373 }
3374 scp->result = DID_OK << 16;
3375 scp->sense_buffer[0] = 0;
3376 }
3377 } else {
f842b64e
BH
3378 cmndinfo->status = ha->status;
3379 cmndinfo->info = ha->info;
1da177e4 3380
f842b64e 3381 if (cmndinfo->OpCode != -1) {
1da177e4 3382 TRACE2(("gdth_sync_event(): special cmd 0x%x error 0x%x\n",
f842b64e
BH
3383 cmndinfo->OpCode, ha->status));
3384 if (cmndinfo->OpCode == GDT_SCAN_START ||
3385 cmndinfo->OpCode == GDT_SCAN_END) {
3386 cmndinfo->OpCode = -1;
1da177e4 3387 /* retry */
f842b64e 3388 cmndinfo->priority = HIGH_PRI;
1da177e4
LT
3389 return 2;
3390 }
3391 memset((char*)scp->sense_buffer,0,16);
3392 scp->sense_buffer[0] = 0x70;
3393 scp->sense_buffer[2] = NOT_READY;
3394 scp->result = (DID_OK << 16) | (CHECK_CONDITION << 1);
3395 } else if (service == CACHESERVICE) {
3396 if (ha->status == S_CACHE_UNKNOWN &&
3397 (ha->hdr[t].cluster_type &
3398 CLUSTER_RESERVE_STATE) == CLUSTER_RESERVE_STATE) {
3399 /* bus reset -> force GDT_CLUST_INFO */
3400 ha->hdr[t].cluster_type &= ~CLUSTER_RESERVED;
3401 }
3402 memset((char*)scp->sense_buffer,0,16);
1fe6dbf4 3403 if (ha->status == (u16)S_CACHE_RESERV) {
1da177e4
LT
3404 scp->result = (DID_OK << 16) | (RESERVATION_CONFLICT << 1);
3405 } else {
3406 scp->sense_buffer[0] = 0x70;
3407 scp->sense_buffer[2] = NOT_READY;
3408 scp->result = (DID_OK << 16) | (CHECK_CONDITION << 1);
3409 }
3058d5de 3410 if (!cmndinfo->internal_command) {
1da177e4 3411 ha->dvr.size = sizeof(ha->dvr.eu.sync);
45f1a41b 3412 ha->dvr.eu.sync.ionode = ha->hanum;
1da177e4
LT
3413 ha->dvr.eu.sync.service = service;
3414 ha->dvr.eu.sync.status = ha->status;
3415 ha->dvr.eu.sync.info = ha->info;
3416 ha->dvr.eu.sync.hostdrive = t;
3417 if (ha->status >= 0x8000)
3418 gdth_store_event(ha, ES_SYNC, 0, &ha->dvr);
3419 else
3420 gdth_store_event(ha, ES_SYNC, service, &ha->dvr);
3421 }
3422 } else {
3423 /* sense buffer filled from controller firmware (DMA) */
3424 if (ha->status != S_RAW_SCSI || ha->info >= 0x100) {
3425 scp->result = DID_BAD_TARGET << 16;
3426 } else {
3427 scp->result = (DID_OK << 16) | ha->info;
3428 }
3429 }
3430 }
f842b64e
BH
3431 if (!cmndinfo->wait_for_completion)
3432 cmndinfo->wait_for_completion++;
1da177e4
LT
3433 else
3434 return 1;
3435 }
3436
3437 return 0;
3438}
3439
3440static char *async_cache_tab[] = {
3441/* 0*/ "\011\000\002\002\002\004\002\006\004"
3442 "GDT HA %u, service %u, async. status %u/%lu unknown",
3443/* 1*/ "\011\000\002\002\002\004\002\006\004"
3444 "GDT HA %u, service %u, async. status %u/%lu unknown",
3445/* 2*/ "\005\000\002\006\004"
3446 "GDT HA %u, Host Drive %lu not ready",
3447/* 3*/ "\005\000\002\006\004"
3448 "GDT HA %u, Host Drive %lu: REASSIGN not successful and/or data error on reassigned blocks. Drive may crash in the future and should be replaced",
3449/* 4*/ "\005\000\002\006\004"
3450 "GDT HA %u, mirror update on Host Drive %lu failed",
3451/* 5*/ "\005\000\002\006\004"
3452 "GDT HA %u, Mirror Drive %lu failed",
3453/* 6*/ "\005\000\002\006\004"
3454 "GDT HA %u, Mirror Drive %lu: REASSIGN not successful and/or data error on reassigned blocks. Drive may crash in the future and should be replaced",
3455/* 7*/ "\005\000\002\006\004"
3456 "GDT HA %u, Host Drive %lu write protected",
3457/* 8*/ "\005\000\002\006\004"
3458 "GDT HA %u, media changed in Host Drive %lu",
3459/* 9*/ "\005\000\002\006\004"
3460 "GDT HA %u, Host Drive %lu is offline",
3461/*10*/ "\005\000\002\006\004"
3462 "GDT HA %u, media change of Mirror Drive %lu",
3463/*11*/ "\005\000\002\006\004"
3464 "GDT HA %u, Mirror Drive %lu is write protected",
3465/*12*/ "\005\000\002\006\004"
3466 "GDT HA %u, general error on Host Drive %lu. Please check the devices of this drive!",
3467/*13*/ "\007\000\002\006\002\010\002"
3468 "GDT HA %u, Array Drive %u: Cache Drive %u failed",
3469/*14*/ "\005\000\002\006\002"
3470 "GDT HA %u, Array Drive %u: FAIL state entered",
3471/*15*/ "\005\000\002\006\002"
3472 "GDT HA %u, Array Drive %u: error",
3473/*16*/ "\007\000\002\006\002\010\002"
3474 "GDT HA %u, Array Drive %u: failed drive replaced by Cache Drive %u",
3475/*17*/ "\005\000\002\006\002"
3476 "GDT HA %u, Array Drive %u: parity build failed",
3477/*18*/ "\005\000\002\006\002"
3478 "GDT HA %u, Array Drive %u: drive rebuild failed",
3479/*19*/ "\005\000\002\010\002"
3480 "GDT HA %u, Test of Hot Fix %u failed",
3481/*20*/ "\005\000\002\006\002"
3482 "GDT HA %u, Array Drive %u: drive build finished successfully",
3483/*21*/ "\005\000\002\006\002"
3484 "GDT HA %u, Array Drive %u: drive rebuild finished successfully",
3485/*22*/ "\007\000\002\006\002\010\002"
3486 "GDT HA %u, Array Drive %u: Hot Fix %u activated",
3487/*23*/ "\005\000\002\006\002"
3488 "GDT HA %u, Host Drive %u: processing of i/o aborted due to serious drive error",
3489/*24*/ "\005\000\002\010\002"
3490 "GDT HA %u, mirror update on Cache Drive %u completed",
3491/*25*/ "\005\000\002\010\002"
3492 "GDT HA %u, mirror update on Cache Drive %lu failed",
3493/*26*/ "\005\000\002\006\002"
3494 "GDT HA %u, Array Drive %u: drive rebuild started",
3495/*27*/ "\005\000\002\012\001"
3496 "GDT HA %u, Fault bus %u: SHELF OK detected",
3497/*28*/ "\005\000\002\012\001"
3498 "GDT HA %u, Fault bus %u: SHELF not OK detected",
3499/*29*/ "\007\000\002\012\001\013\001"
3500 "GDT HA %u, Fault bus %u, ID %u: Auto Hot Plug started",
3501/*30*/ "\007\000\002\012\001\013\001"
3502 "GDT HA %u, Fault bus %u, ID %u: new disk detected",
3503/*31*/ "\007\000\002\012\001\013\001"
3504 "GDT HA %u, Fault bus %u, ID %u: old disk detected",
3505/*32*/ "\007\000\002\012\001\013\001"
3506 "GDT HA %u, Fault bus %u, ID %u: plugging an active disk is invalid",
3507/*33*/ "\007\000\002\012\001\013\001"
3508 "GDT HA %u, Fault bus %u, ID %u: invalid device detected",
3509/*34*/ "\011\000\002\012\001\013\001\006\004"
3510 "GDT HA %u, Fault bus %u, ID %u: insufficient disk capacity (%lu MB required)",
3511/*35*/ "\007\000\002\012\001\013\001"
3512 "GDT HA %u, Fault bus %u, ID %u: disk write protected",
3513/*36*/ "\007\000\002\012\001\013\001"
3514 "GDT HA %u, Fault bus %u, ID %u: disk not available",
3515/*37*/ "\007\000\002\012\001\006\004"
3516 "GDT HA %u, Fault bus %u: swap detected (%lu)",
3517/*38*/ "\007\000\002\012\001\013\001"
3518 "GDT HA %u, Fault bus %u, ID %u: Auto Hot Plug finished successfully",
3519/*39*/ "\007\000\002\012\001\013\001"
3520 "GDT HA %u, Fault bus %u, ID %u: Auto Hot Plug aborted due to user Hot Plug",
3521/*40*/ "\007\000\002\012\001\013\001"
3522 "GDT HA %u, Fault bus %u, ID %u: Auto Hot Plug aborted",
3523/*41*/ "\007\000\002\012\001\013\001"
3524 "GDT HA %u, Fault bus %u, ID %u: Auto Hot Plug for Hot Fix started",
3525/*42*/ "\005\000\002\006\002"
3526 "GDT HA %u, Array Drive %u: drive build started",
3527/*43*/ "\003\000\002"
3528 "GDT HA %u, DRAM parity error detected",
3529/*44*/ "\005\000\002\006\002"
3530 "GDT HA %u, Mirror Drive %u: update started",
3531/*45*/ "\007\000\002\006\002\010\002"
3532 "GDT HA %u, Mirror Drive %u: Hot Fix %u activated",
3533/*46*/ "\005\000\002\006\002"
3534 "GDT HA %u, Array Drive %u: no matching Pool Hot Fix Drive available",
3535/*47*/ "\005\000\002\006\002"
3536 "GDT HA %u, Array Drive %u: Pool Hot Fix Drive available",
3537/*48*/ "\005\000\002\006\002"
3538 "GDT HA %u, Mirror Drive %u: no matching Pool Hot Fix Drive available",
3539/*49*/ "\005\000\002\006\002"
3540 "GDT HA %u, Mirror Drive %u: Pool Hot Fix Drive available",
3541/*50*/ "\007\000\002\012\001\013\001"
3542 "GDT HA %u, SCSI bus %u, ID %u: IGNORE_WIDE_RESIDUE message received",
3543/*51*/ "\005\000\002\006\002"
3544 "GDT HA %u, Array Drive %u: expand started",
3545/*52*/ "\005\000\002\006\002"
3546 "GDT HA %u, Array Drive %u: expand finished successfully",
3547/*53*/ "\005\000\002\006\002"
3548 "GDT HA %u, Array Drive %u: expand failed",
3549/*54*/ "\003\000\002"
3550 "GDT HA %u, CPU temperature critical",
3551/*55*/ "\003\000\002"
3552 "GDT HA %u, CPU temperature OK",
3553/*56*/ "\005\000\002\006\004"
3554 "GDT HA %u, Host drive %lu created",
3555/*57*/ "\005\000\002\006\002"
3556 "GDT HA %u, Array Drive %u: expand restarted",
3557/*58*/ "\005\000\002\006\002"
3558 "GDT HA %u, Array Drive %u: expand stopped",
3559/*59*/ "\005\000\002\010\002"
3560 "GDT HA %u, Mirror Drive %u: drive build quited",
3561/*60*/ "\005\000\002\006\002"
3562 "GDT HA %u, Array Drive %u: parity build quited",
3563/*61*/ "\005\000\002\006\002"
3564 "GDT HA %u, Array Drive %u: drive rebuild quited",
3565/*62*/ "\005\000\002\006\002"
3566 "GDT HA %u, Array Drive %u: parity verify started",
3567/*63*/ "\005\000\002\006\002"
3568 "GDT HA %u, Array Drive %u: parity verify done",
3569/*64*/ "\005\000\002\006\002"
3570 "GDT HA %u, Array Drive %u: parity verify failed",
3571/*65*/ "\005\000\002\006\002"
3572 "GDT HA %u, Array Drive %u: parity error detected",
3573/*66*/ "\005\000\002\006\002"
3574 "GDT HA %u, Array Drive %u: parity verify quited",
3575/*67*/ "\005\000\002\006\002"
3576 "GDT HA %u, Host Drive %u reserved",
3577/*68*/ "\005\000\002\006\002"
3578 "GDT HA %u, Host Drive %u mounted and released",
3579/*69*/ "\005\000\002\006\002"
3580 "GDT HA %u, Host Drive %u released",
3581/*70*/ "\003\000\002"
3582 "GDT HA %u, DRAM error detected and corrected with ECC",
3583/*71*/ "\003\000\002"
3584 "GDT HA %u, Uncorrectable DRAM error detected with ECC",
3585/*72*/ "\011\000\002\012\001\013\001\014\001"
3586 "GDT HA %u, SCSI bus %u, ID %u, LUN %u: reassigning block",
3587/*73*/ "\005\000\002\006\002"
3588 "GDT HA %u, Host drive %u resetted locally",
3589/*74*/ "\005\000\002\006\002"
3590 "GDT HA %u, Host drive %u resetted remotely",
3591/*75*/ "\003\000\002"
3592 "GDT HA %u, async. status 75 unknown",
3593};
3594
3595
45f1a41b 3596static int gdth_async_event(gdth_ha_str *ha)
1da177e4 3597{
1da177e4
LT
3598 gdth_cmd_str *cmdp;
3599 int cmd_index;
3600
1da177e4
LT
3601 cmdp= ha->pccb;
3602 TRACE2(("gdth_async_event() ha %d serv %d\n",
45f1a41b 3603 ha->hanum, ha->service));
1da177e4
LT
3604
3605 if (ha->service == SCREENSERVICE) {
3606 if (ha->status == MSG_REQUEST) {
45f1a41b 3607 while (gdth_test_busy(ha))
1da177e4
LT
3608 gdth_delay(0);
3609 cmdp->Service = SCREENSERVICE;
3610 cmdp->RequestBuffer = SCREEN_CMND;
45f1a41b
BH
3611 cmd_index = gdth_get_cmd_index(ha);
3612 gdth_set_sema0(ha);
1da177e4
LT
3613 cmdp->OpCode = GDT_READ;
3614 cmdp->BoardNode = LOCALBOARD;
3615 cmdp->u.screen.reserved = 0;
3616 cmdp->u.screen.su.msg.msg_handle= MSG_INV_HANDLE;
3617 cmdp->u.screen.su.msg.msg_addr = ha->msg_phys;
3618 ha->cmd_offs_dpmem = 0;
3619 ha->cmd_len = GDTOFFSOF(gdth_cmd_str,u.screen.su.msg.msg_addr)
1fe6dbf4 3620 + sizeof(u64);
1da177e4 3621 ha->cmd_cnt = 0;
45f1a41b 3622 gdth_copy_command(ha);
1da177e4 3623 if (ha->type == GDT_EISA)
1fe6dbf4 3624 printk("[EISA slot %d] ",(u16)ha->brd_phys);
1da177e4 3625 else if (ha->type == GDT_ISA)
1fe6dbf4 3626 printk("[DPMEM 0x%4X] ",(u16)ha->brd_phys);
1da177e4 3627 else
1fe6dbf4
DJ
3628 printk("[PCI %d/%d] ",(u16)(ha->brd_phys>>8),
3629 (u16)((ha->brd_phys>>3)&0x1f));
45f1a41b 3630 gdth_release_event(ha);
1da177e4
LT
3631 }
3632
3633 } else {
3634 if (ha->type == GDT_PCIMPR &&
3635 (ha->fw_vers & 0xff) >= 0x1a) {
3636 ha->dvr.size = 0;
45f1a41b 3637 ha->dvr.eu.async.ionode = ha->hanum;
1da177e4
LT
3638 ha->dvr.eu.async.status = ha->status;
3639 /* severity and event_string already set! */
3640 } else {
3641 ha->dvr.size = sizeof(ha->dvr.eu.async);
45f1a41b 3642 ha->dvr.eu.async.ionode = ha->hanum;
1da177e4
LT
3643 ha->dvr.eu.async.service = ha->service;
3644 ha->dvr.eu.async.status = ha->status;
3645 ha->dvr.eu.async.info = ha->info;
1fe6dbf4 3646 *(u32 *)ha->dvr.eu.async.scsi_coord = ha->info2;
1da177e4
LT
3647 }
3648 gdth_store_event( ha, ES_ASYNC, ha->service, &ha->dvr );
3649 gdth_log_event( &ha->dvr, NULL );
3650
3651 /* new host drive from expand? */
3652 if (ha->service == CACHESERVICE && ha->status == 56) {
3653 TRACE2(("gdth_async_event(): new host drive %d created\n",
1fe6dbf4
DJ
3654 (u16)ha->info));
3655 /* gdth_analyse_hdrive(hanum, (u16)ha->info); */
1da177e4
LT
3656 }
3657 }
3658 return 1;
3659}
3660
3661static void gdth_log_event(gdth_evt_data *dvr, char *buffer)
3662{
3663 gdth_stackframe stack;
3664 char *f = NULL;
3665 int i,j;
3666
3667 TRACE2(("gdth_log_event()\n"));
3668 if (dvr->size == 0) {
3669 if (buffer == NULL) {
3670 printk("Adapter %d: %s\n",dvr->eu.async.ionode,dvr->event_string);
3671 } else {
3672 sprintf(buffer,"Adapter %d: %s\n",
3673 dvr->eu.async.ionode,dvr->event_string);
3674 }
3675 } else if (dvr->eu.async.service == CACHESERVICE &&
3676 INDEX_OK(dvr->eu.async.status, async_cache_tab)) {
3677 TRACE2(("GDT: Async. event cache service, event no.: %d\n",
3678 dvr->eu.async.status));
3679
3680 f = async_cache_tab[dvr->eu.async.status];
3681
3682 /* i: parameter to push, j: stack element to fill */
3683 for (j=0,i=1; i < f[0]; i+=2) {
3684 switch (f[i+1]) {
3685 case 4:
1fe6dbf4 3686 stack.b[j++] = *(u32*)&dvr->eu.stream[(int)f[i]];
1da177e4
LT
3687 break;
3688 case 2:
1fe6dbf4 3689 stack.b[j++] = *(u16*)&dvr->eu.stream[(int)f[i]];
1da177e4
LT
3690 break;
3691 case 1:
1fe6dbf4 3692 stack.b[j++] = *(u8*)&dvr->eu.stream[(int)f[i]];
1da177e4
LT
3693 break;
3694 default:
3695 break;
3696 }
3697 }
3698
3699 if (buffer == NULL) {
3700 printk(&f[(int)f[0]],stack);
3701 printk("\n");
3702 } else {
3703 sprintf(buffer,&f[(int)f[0]],stack);
3704 }
3705
3706 } else {
3707 if (buffer == NULL) {
3708 printk("GDT HA %u, Unknown async. event service %d event no. %d\n",
3709 dvr->eu.async.ionode,dvr->eu.async.service,dvr->eu.async.status);
3710 } else {
3711 sprintf(buffer,"GDT HA %u, Unknown async. event service %d event no. %d",
3712 dvr->eu.async.ionode,dvr->eu.async.service,dvr->eu.async.status);
3713 }
3714 }
3715}
3716
3717#ifdef GDTH_STATISTICS
1fe6dbf4 3718static u8 gdth_timer_running;
2d6f0d0c 3719
1fe6dbf4 3720static void gdth_timeout(unsigned long data)
1da177e4 3721{
1fe6dbf4 3722 u32 i;
1da177e4
LT
3723 Scsi_Cmnd *nscp;
3724 gdth_ha_str *ha;
1fe6dbf4 3725 unsigned long flags;
1da177e4 3726
2d6f0d0c
JB
3727 if(unlikely(list_empty(&gdth_instances))) {
3728 gdth_timer_running = 0;
3729 return;
3730 }
b31ddd31 3731
884f7fba 3732 ha = list_first_entry(&gdth_instances, gdth_ha_str, list);
1da177e4
LT
3733 spin_lock_irqsave(&ha->smp_lock, flags);
3734
3735 for (act_stats=0,i=0; i<GDTH_MAXCMDS; ++i)
3736 if (ha->cmd_tab[i].cmnd != UNUSED_CMND)
3737 ++act_stats;
3738
3739 for (act_rq=0,nscp=ha->req_first; nscp; nscp=(Scsi_Cmnd*)nscp->SCp.ptr)
3740 ++act_rq;
3741
3742 TRACE2(("gdth_to(): ints %d, ios %d, act_stats %d, act_rq %d\n",
3743 act_ints, act_ios, act_stats, act_rq));
3744 act_ints = act_ios = 0;
3745
3746 gdth_timer.expires = jiffies + 30 * HZ;
3747 add_timer(&gdth_timer);
3748 spin_unlock_irqrestore(&ha->smp_lock, flags);
3749}
2d6f0d0c
JB
3750
3751static void gdth_timer_init(void)
3752{
3753 if (gdth_timer_running)
3754 return;
3755 gdth_timer_running = 1;
3756 TRACE2(("gdth_detect(): Initializing timer !\n"));
3757 gdth_timer.expires = jiffies + HZ;
3758 gdth_timer.data = 0L;
3759 gdth_timer.function = gdth_timeout;
3760 add_timer(&gdth_timer);
3761}
3762#else
3763static inline void gdth_timer_init(void)
3764{
3765}
1da177e4
LT
3766#endif
3767
8e879041 3768static void __init internal_setup(char *str,int *ints)
1da177e4
LT
3769{
3770 int i, argc;
3771 char *cur_str, *argv;
3772
3773 TRACE2(("internal_setup() str %s ints[0] %d\n",
3774 str ? str:"NULL", ints ? ints[0]:0));
3775
3776 /* read irq[] from ints[] */
3777 if (ints) {
3778 argc = ints[0];
3779 if (argc > 0) {
3780 if (argc > MAXHA)
3781 argc = MAXHA;
3782 for (i = 0; i < argc; ++i)
3783 irq[i] = ints[i+1];
3784 }
3785 }
3786
3787 /* analyse string */
3788 argv = str;
3789 while (argv && (cur_str = strchr(argv, ':'))) {
3790 int val = 0, c = *++cur_str;
3791
3792 if (c == 'n' || c == 'N')
3793 val = 0;
3794 else if (c == 'y' || c == 'Y')
3795 val = 1;
3796 else
3797 val = (int)simple_strtoul(cur_str, NULL, 0);
3798
3799 if (!strncmp(argv, "disable:", 8))
3800 disable = val;
3801 else if (!strncmp(argv, "reserve_mode:", 13))
3802 reserve_mode = val;
3803 else if (!strncmp(argv, "reverse_scan:", 13))
3804 reverse_scan = val;
3805 else if (!strncmp(argv, "hdr_channel:", 12))
3806 hdr_channel = val;
3807 else if (!strncmp(argv, "max_ids:", 8))
3808 max_ids = val;
3809 else if (!strncmp(argv, "rescan:", 7))
3810 rescan = val;
1da177e4
LT
3811 else if (!strncmp(argv, "shared_access:", 14))
3812 shared_access = val;
3813 else if (!strncmp(argv, "probe_eisa_isa:", 15))
3814 probe_eisa_isa = val;
3815 else if (!strncmp(argv, "reserve_list:", 13)) {
3816 reserve_list[0] = val;
3817 for (i = 1; i < MAX_RES_ARGS; i++) {
3818 cur_str = strchr(cur_str, ',');
3819 if (!cur_str)
3820 break;
3821 if (!isdigit((int)*++cur_str)) {
3822 --cur_str;
3823 break;
3824 }
3825 reserve_list[i] =
3826 (int)simple_strtoul(cur_str, NULL, 0);
3827 }
3828 if (!cur_str)
3829 break;
3830 argv = ++cur_str;
3831 continue;
3832 }
3833
3834 if ((argv = strchr(argv, ',')))
3835 ++argv;
3836 }
3837}
3838
3839int __init option_setup(char *str)
3840{
3841 int ints[MAXHA];
3842 char *cur = str;
3843 int i = 1;
3844
3845 TRACE2(("option_setup() str %s\n", str ? str:"NULL"));
3846
6ce00cae 3847 while (cur && isdigit(*cur) && i < MAXHA) {
1da177e4
LT
3848 ints[i++] = simple_strtoul(cur, NULL, 0);
3849 if ((cur = strchr(cur, ',')) != NULL) cur++;
3850 }
3851
3852 ints[0] = i - 1;
3853 internal_setup(cur, ints);
3854 return 1;
3855}
3856
45f1a41b 3857static const char *gdth_ctr_name(gdth_ha_str *ha)
1da177e4 3858{
1da177e4
LT
3859 TRACE2(("gdth_ctr_name()\n"));
3860
1da177e4
LT
3861 if (ha->type == GDT_EISA) {
3862 switch (ha->stype) {
3863 case GDT3_ID:
3864 return("GDT3000/3020");
3865 case GDT3A_ID:
3866 return("GDT3000A/3020A/3050A");
3867 case GDT3B_ID:
3868 return("GDT3000B/3010A");
3869 }
3870 } else if (ha->type == GDT_ISA) {
3871 return("GDT2000/2020");
3872 } else if (ha->type == GDT_PCI) {
8e9a8a0d 3873 switch (ha->pdev->device) {
1da177e4
LT
3874 case PCI_DEVICE_ID_VORTEX_GDT60x0:
3875 return("GDT6000/6020/6050");
3876 case PCI_DEVICE_ID_VORTEX_GDT6000B:
3877 return("GDT6000B/6010");
3878 }
3879 }
3880 /* new controllers (GDT_PCINEW, GDT_PCIMPR, ..) use board_info IOCTL! */
3881
3882 return("");
3883}
3884
8e879041 3885static const char *gdth_info(struct Scsi_Host *shp)
1da177e4 3886{
45f1a41b 3887 gdth_ha_str *ha = shost_priv(shp);
1da177e4
LT
3888
3889 TRACE2(("gdth_info()\n"));
1da177e4
LT
3890 return ((const char *)ha->binfo.type_string);
3891}
3892
242f9dcb
JA
3893static enum blk_eh_timer_return gdth_timed_out(struct scsi_cmnd *scp)
3894{
3895 gdth_ha_str *ha = shost_priv(scp->device->host);
3896 struct gdth_cmndinfo *cmndinfo = gdth_cmnd_priv(scp);
1fe6dbf4
DJ
3897 u8 b, t;
3898 unsigned long flags;
242f9dcb
JA
3899 enum blk_eh_timer_return retval = BLK_EH_NOT_HANDLED;
3900
3901 TRACE(("%s() cmd 0x%x\n", scp->cmnd[0], __func__));
3902 b = scp->device->channel;
3903 t = scp->device->id;
3904
3905 /*
3906 * We don't really honor the command timeout, but we try to
3907 * honor 6 times of the actual command timeout! So reset the
3908 * timer if this is less than 6th timeout on this command!
3909 */
3910 if (++cmndinfo->timeout_count < 6)
3911 retval = BLK_EH_RESET_TIMER;
3912
3913 /* Reset the timeout if it is locked IO */
3914 spin_lock_irqsave(&ha->smp_lock, flags);
3915 if ((b != ha->virt_bus && ha->raw[BUS_L2P(ha, b)].lock) ||
3916 (b == ha->virt_bus && t < MAX_HDRIVES && ha->hdr[t].lock)) {
3917 TRACE2(("%s(): locked IO, reset timeout\n", __func__));
3918 retval = BLK_EH_RESET_TIMER;
3919 }
3920 spin_unlock_irqrestore(&ha->smp_lock, flags);
3921
3922 return retval;
3923}
3924
3925
8e879041 3926static int gdth_eh_bus_reset(Scsi_Cmnd *scp)
1da177e4 3927{
45f1a41b
BH
3928 gdth_ha_str *ha = shost_priv(scp->device->host);
3929 int i;
1fe6dbf4 3930 unsigned long flags;
1da177e4 3931 Scsi_Cmnd *cmnd;
1fe6dbf4 3932 u8 b;
1da177e4
LT
3933
3934 TRACE2(("gdth_eh_bus_reset()\n"));
3935
52759e6a 3936 b = scp->device->channel;
1da177e4
LT
3937
3938 /* clear command tab */
3939 spin_lock_irqsave(&ha->smp_lock, flags);
3940 for (i = 0; i < GDTH_MAXCMDS; ++i) {
3941 cmnd = ha->cmd_tab[i].cmnd;
3942 if (!SPECIAL_SCP(cmnd) && cmnd->device->channel == b)
3943 ha->cmd_tab[i].cmnd = UNUSED_CMND;
3944 }
3945 spin_unlock_irqrestore(&ha->smp_lock, flags);
3946
3947 if (b == ha->virt_bus) {
3948 /* host drives */
3949 for (i = 0; i < MAX_HDRIVES; ++i) {
3950 if (ha->hdr[i].present) {
3951 spin_lock_irqsave(&ha->smp_lock, flags);
3952 gdth_polling = TRUE;
45f1a41b 3953 while (gdth_test_busy(ha))
1da177e4 3954 gdth_delay(0);
45f1a41b 3955 if (gdth_internal_cmd(ha, CACHESERVICE,
1da177e4
LT
3956 GDT_CLUST_RESET, i, 0, 0))
3957 ha->hdr[i].cluster_type &= ~CLUSTER_RESERVED;
3958 gdth_polling = FALSE;
3959 spin_unlock_irqrestore(&ha->smp_lock, flags);
3960 }
3961 }
3962 } else {
3963 /* raw devices */
3964 spin_lock_irqsave(&ha->smp_lock, flags);
3965 for (i = 0; i < MAXID; ++i)
3966 ha->raw[BUS_L2P(ha,b)].io_cnt[i] = 0;
3967 gdth_polling = TRUE;
45f1a41b 3968 while (gdth_test_busy(ha))
1da177e4 3969 gdth_delay(0);
45f1a41b 3970 gdth_internal_cmd(ha, SCSIRAWSERVICE, GDT_RESET_BUS,
1da177e4
LT
3971 BUS_L2P(ha,b), 0, 0);
3972 gdth_polling = FALSE;
cbd5f69b 3973 spin_unlock_irqrestore(&ha->smp_lock, flags);
1da177e4
LT
3974 }
3975 return SUCCESS;
3976}
3977
8e879041 3978static int gdth_bios_param(struct scsi_device *sdev,struct block_device *bdev,sector_t cap,int *ip)
1da177e4 3979{
1fe6dbf4 3980 u8 b, t;
45f1a41b 3981 gdth_ha_str *ha = shost_priv(sdev->host);
1da177e4
LT
3982 struct scsi_device *sd;
3983 unsigned capacity;
3984
1da177e4
LT
3985 sd = sdev;
3986 capacity = cap;
52759e6a 3987 b = sd->channel;
1da177e4 3988 t = sd->id;
45f1a41b 3989 TRACE2(("gdth_bios_param() ha %d bus %d target %d\n", ha->hanum, b, t));
1da177e4
LT
3990
3991 if (b != ha->virt_bus || ha->hdr[t].heads == 0) {
3992 /* raw device or host drive without mapping information */
3993 TRACE2(("Evaluate mapping\n"));
3994 gdth_eval_mapping(capacity,&ip[2],&ip[0],&ip[1]);
3995 } else {
3996 ip[0] = ha->hdr[t].heads;
3997 ip[1] = ha->hdr[t].secs;
3998 ip[2] = capacity / ip[0] / ip[1];
3999 }
4000
4001 TRACE2(("gdth_bios_param(): %d heads, %d secs, %d cyls\n",
4002 ip[0],ip[1],ip[2]));
4003 return 0;
4004}
4005
4006
b8bff2ae
MW
4007static int gdth_queuecommand(struct scsi_cmnd *scp,
4008 void (*done)(struct scsi_cmnd *))
1da177e4 4009{
45f1a41b 4010 gdth_ha_str *ha = shost_priv(scp->device->host);
3058d5de 4011 struct gdth_cmndinfo *cmndinfo;
1da177e4
LT
4012
4013 TRACE(("gdth_queuecommand() cmd 0x%x\n", scp->cmnd[0]));
3058d5de
BH
4014
4015 cmndinfo = gdth_get_cmndinfo(ha);
4016 BUG_ON(!cmndinfo);
4017
b8bff2ae 4018 scp->scsi_done = done;
242f9dcb 4019 cmndinfo->timeout_count = 0;
f842b64e 4020 cmndinfo->priority = DEFAULT_PRI;
3892d88a 4021
3058d5de
BH
4022 return __gdth_queuecommand(ha, scp, cmndinfo);
4023}
4024
4025static int __gdth_queuecommand(gdth_ha_str *ha, struct scsi_cmnd *scp,
4026 struct gdth_cmndinfo *cmndinfo)
4027{
4028 scp->host_scribble = (unsigned char *)cmndinfo;
f842b64e
BH
4029 cmndinfo->wait_for_completion = 1;
4030 cmndinfo->phase = -1;
4031 cmndinfo->OpCode = -1;
1da177e4 4032
1da177e4
LT
4033#ifdef GDTH_STATISTICS
4034 ++act_ios;
4035#endif
4036
f842b64e 4037 gdth_putq(ha, scp, cmndinfo->priority);
45f1a41b 4038 gdth_next(ha);
1da177e4
LT
4039 return 0;
4040}
4041
4042
4043static int gdth_open(struct inode *inode, struct file *filep)
4044{
4045 gdth_ha_str *ha;
1da177e4 4046
c45d15d2 4047 mutex_lock(&gdth_mutex);
884f7fba 4048 list_for_each_entry(ha, &gdth_instances, list) {
1da177e4 4049 if (!ha->sdev)
884f7fba 4050 ha->sdev = scsi_get_host_dev(ha->shost);
1da177e4 4051 }
c45d15d2 4052 mutex_unlock(&gdth_mutex);
1da177e4
LT
4053
4054 TRACE(("gdth_open()\n"));
4055 return 0;
4056}
4057
4058static int gdth_close(struct inode *inode, struct file *filep)
4059{
4060 TRACE(("gdth_close()\n"));
4061 return 0;
4062}
4063
4064static int ioc_event(void __user *arg)
4065{
4066 gdth_ioctl_event evt;
4067 gdth_ha_str *ha;
1fe6dbf4 4068 unsigned long flags;
1da177e4 4069
884f7fba
BH
4070 if (copy_from_user(&evt, arg, sizeof(gdth_ioctl_event)))
4071 return -EFAULT;
4072 ha = gdth_find_ha(evt.ionode);
4073 if (!ha)
1da177e4 4074 return -EFAULT;
1da177e4
LT
4075
4076 if (evt.erase == 0xff) {
4077 if (evt.event.event_source == ES_TEST)
4078 evt.event.event_data.size=sizeof(evt.event.event_data.eu.test);
4079 else if (evt.event.event_source == ES_DRIVER)
4080 evt.event.event_data.size=sizeof(evt.event.event_data.eu.driver);
4081 else if (evt.event.event_source == ES_SYNC)
4082 evt.event.event_data.size=sizeof(evt.event.event_data.eu.sync);
4083 else
4084 evt.event.event_data.size=sizeof(evt.event.event_data.eu.async);
4085 spin_lock_irqsave(&ha->smp_lock, flags);
4086 gdth_store_event(ha, evt.event.event_source, evt.event.event_idx,
4087 &evt.event.event_data);
4088 spin_unlock_irqrestore(&ha->smp_lock, flags);
4089 } else if (evt.erase == 0xfe) {
4090 gdth_clear_events();
4091 } else if (evt.erase == 0) {
4092 evt.handle = gdth_read_event(ha, evt.handle, &evt.event);
4093 } else {
4094 gdth_readapp_event(ha, evt.erase, &evt.event);
4095 }
4096 if (copy_to_user(arg, &evt, sizeof(gdth_ioctl_event)))
4097 return -EFAULT;
4098 return 0;
4099}
4100
4101static int ioc_lockdrv(void __user *arg)
4102{
4103 gdth_ioctl_lockdrv ldrv;
1fe6dbf4
DJ
4104 u8 i, j;
4105 unsigned long flags;
1da177e4
LT
4106 gdth_ha_str *ha;
4107
884f7fba 4108 if (copy_from_user(&ldrv, arg, sizeof(gdth_ioctl_lockdrv)))
1da177e4 4109 return -EFAULT;
884f7fba
BH
4110 ha = gdth_find_ha(ldrv.ionode);
4111 if (!ha)
4112 return -EFAULT;
4113
1da177e4
LT
4114 for (i = 0; i < ldrv.drive_cnt && i < MAX_HDRIVES; ++i) {
4115 j = ldrv.drives[i];
4116 if (j >= MAX_HDRIVES || !ha->hdr[j].present)
4117 continue;
4118 if (ldrv.lock) {
4119 spin_lock_irqsave(&ha->smp_lock, flags);
4120 ha->hdr[j].lock = 1;
4121 spin_unlock_irqrestore(&ha->smp_lock, flags);
45f1a41b 4122 gdth_wait_completion(ha, ha->bus_cnt, j);
1da177e4
LT
4123 } else {
4124 spin_lock_irqsave(&ha->smp_lock, flags);
4125 ha->hdr[j].lock = 0;
4126 spin_unlock_irqrestore(&ha->smp_lock, flags);
45f1a41b 4127 gdth_next(ha);
1da177e4
LT
4128 }
4129 }
4130 return 0;
4131}
4132
4133static int ioc_resetdrv(void __user *arg, char *cmnd)
4134{
4135 gdth_ioctl_reset res;
4136 gdth_cmd_str cmd;
1da177e4 4137 gdth_ha_str *ha;
cbd5f69b 4138 int rval;
1da177e4
LT
4139
4140 if (copy_from_user(&res, arg, sizeof(gdth_ioctl_reset)) ||
884f7fba
BH
4141 res.number >= MAX_HDRIVES)
4142 return -EFAULT;
4143 ha = gdth_find_ha(res.ionode);
4144 if (!ha)
1da177e4 4145 return -EFAULT;
45f1a41b 4146
1da177e4
LT
4147 if (!ha->hdr[res.number].present)
4148 return 0;
4149 memset(&cmd, 0, sizeof(gdth_cmd_str));
4150 cmd.Service = CACHESERVICE;
4151 cmd.OpCode = GDT_CLUST_RESET;
4152 if (ha->cache_feat & GDT_64BIT)
4153 cmd.u.cache64.DeviceNo = res.number;
4154 else
4155 cmd.u.cache.DeviceNo = res.number;
cbd5f69b
LA
4156
4157 rval = __gdth_execute(ha->sdev, &cmd, cmnd, 30, NULL);
4158 if (rval < 0)
4159 return rval;
4160 res.status = rval;
1da177e4
LT
4161
4162 if (copy_to_user(arg, &res, sizeof(gdth_ioctl_reset)))
4163 return -EFAULT;
4164 return 0;
4165}
4166
4167static int ioc_general(void __user *arg, char *cmnd)
4168{
4169 gdth_ioctl_general gen;
4170 char *buf = NULL;
1fe6dbf4 4171 u64 paddr;
cbd5f69b
LA
4172 gdth_ha_str *ha;
4173 int rval;
884f7fba
BH
4174
4175 if (copy_from_user(&gen, arg, sizeof(gdth_ioctl_general)))
4176 return -EFAULT;
4177 ha = gdth_find_ha(gen.ionode);
4178 if (!ha)
1da177e4 4179 return -EFAULT;
f63ae56e
DC
4180
4181 if (gen.data_len > INT_MAX)
4182 return -EINVAL;
4183 if (gen.sense_len > INT_MAX)
4184 return -EINVAL;
4185 if (gen.data_len + gen.sense_len > INT_MAX)
4186 return -EINVAL;
4187
1da177e4 4188 if (gen.data_len + gen.sense_len != 0) {
45f1a41b 4189 if (!(buf = gdth_ioctl_alloc(ha, gen.data_len + gen.sense_len,
1da177e4
LT
4190 FALSE, &paddr)))
4191 return -EFAULT;
4192 if (copy_from_user(buf, arg + sizeof(gdth_ioctl_general),
4193 gen.data_len + gen.sense_len)) {
45f1a41b 4194 gdth_ioctl_free(ha, gen.data_len+gen.sense_len, buf, paddr);
1da177e4
LT
4195 return -EFAULT;
4196 }
4197
4198 if (gen.command.OpCode == GDT_IOCTL) {
4199 gen.command.u.ioctl.p_param = paddr;
4200 } else if (gen.command.Service == CACHESERVICE) {
4201 if (ha->cache_feat & GDT_64BIT) {
4202 /* copy elements from 32-bit IOCTL structure */
4203 gen.command.u.cache64.BlockCnt = gen.command.u.cache.BlockCnt;
4204 gen.command.u.cache64.BlockNo = gen.command.u.cache.BlockNo;
4205 gen.command.u.cache64.DeviceNo = gen.command.u.cache.DeviceNo;
4206 /* addresses */
4207 if (ha->cache_feat & SCATTER_GATHER) {
1fe6dbf4 4208 gen.command.u.cache64.DestAddr = (u64)-1;
1da177e4
LT
4209 gen.command.u.cache64.sg_canz = 1;
4210 gen.command.u.cache64.sg_lst[0].sg_ptr = paddr;
4211 gen.command.u.cache64.sg_lst[0].sg_len = gen.data_len;
4212 gen.command.u.cache64.sg_lst[1].sg_len = 0;
4213 } else {
4214 gen.command.u.cache64.DestAddr = paddr;
4215 gen.command.u.cache64.sg_canz = 0;
4216 }
4217 } else {
4218 if (ha->cache_feat & SCATTER_GATHER) {
4219 gen.command.u.cache.DestAddr = 0xffffffff;
4220 gen.command.u.cache.sg_canz = 1;
1fe6dbf4 4221 gen.command.u.cache.sg_lst[0].sg_ptr = (u32)paddr;
1da177e4
LT
4222 gen.command.u.cache.sg_lst[0].sg_len = gen.data_len;
4223 gen.command.u.cache.sg_lst[1].sg_len = 0;
4224 } else {
4225 gen.command.u.cache.DestAddr = paddr;
4226 gen.command.u.cache.sg_canz = 0;
4227 }
4228 }
4229 } else if (gen.command.Service == SCSIRAWSERVICE) {
4230 if (ha->raw_feat & GDT_64BIT) {
4231 /* copy elements from 32-bit IOCTL structure */
4232 char cmd[16];
4233 gen.command.u.raw64.sense_len = gen.command.u.raw.sense_len;
4234 gen.command.u.raw64.bus = gen.command.u.raw.bus;
4235 gen.command.u.raw64.lun = gen.command.u.raw.lun;
4236 gen.command.u.raw64.target = gen.command.u.raw.target;
4237 memcpy(cmd, gen.command.u.raw.cmd, 16);
4238 memcpy(gen.command.u.raw64.cmd, cmd, 16);
4239 gen.command.u.raw64.clen = gen.command.u.raw.clen;
4240 gen.command.u.raw64.sdlen = gen.command.u.raw.sdlen;
4241 gen.command.u.raw64.direction = gen.command.u.raw.direction;
4242 /* addresses */
4243 if (ha->raw_feat & SCATTER_GATHER) {
1fe6dbf4 4244 gen.command.u.raw64.sdata = (u64)-1;
1da177e4
LT
4245 gen.command.u.raw64.sg_ranz = 1;
4246 gen.command.u.raw64.sg_lst[0].sg_ptr = paddr;
4247 gen.command.u.raw64.sg_lst[0].sg_len = gen.data_len;
4248 gen.command.u.raw64.sg_lst[1].sg_len = 0;
4249 } else {
4250 gen.command.u.raw64.sdata = paddr;
4251 gen.command.u.raw64.sg_ranz = 0;
4252 }
4253 gen.command.u.raw64.sense_data = paddr + gen.data_len;
4254 } else {
4255 if (ha->raw_feat & SCATTER_GATHER) {
4256 gen.command.u.raw.sdata = 0xffffffff;
4257 gen.command.u.raw.sg_ranz = 1;
1fe6dbf4 4258 gen.command.u.raw.sg_lst[0].sg_ptr = (u32)paddr;
1da177e4
LT
4259 gen.command.u.raw.sg_lst[0].sg_len = gen.data_len;
4260 gen.command.u.raw.sg_lst[1].sg_len = 0;
4261 } else {
4262 gen.command.u.raw.sdata = paddr;
4263 gen.command.u.raw.sg_ranz = 0;
4264 }
1fe6dbf4 4265 gen.command.u.raw.sense_data = (u32)paddr + gen.data_len;
1da177e4
LT
4266 }
4267 } else {
45f1a41b 4268 gdth_ioctl_free(ha, gen.data_len+gen.sense_len, buf, paddr);
1da177e4
LT
4269 return -EFAULT;
4270 }
4271 }
4272
cbd5f69b
LA
4273 rval = __gdth_execute(ha->sdev, &gen.command, cmnd, gen.timeout, &gen.info);
4274 if (rval < 0)
4275 return rval;
4276 gen.status = rval;
1da177e4
LT
4277
4278 if (copy_to_user(arg + sizeof(gdth_ioctl_general), buf,
4279 gen.data_len + gen.sense_len)) {
45f1a41b 4280 gdth_ioctl_free(ha, gen.data_len+gen.sense_len, buf, paddr);
1da177e4
LT
4281 return -EFAULT;
4282 }
4283 if (copy_to_user(arg, &gen,
4284 sizeof(gdth_ioctl_general) - sizeof(gdth_cmd_str))) {
45f1a41b 4285 gdth_ioctl_free(ha, gen.data_len+gen.sense_len, buf, paddr);
1da177e4
LT
4286 return -EFAULT;
4287 }
45f1a41b 4288 gdth_ioctl_free(ha, gen.data_len+gen.sense_len, buf, paddr);
1da177e4
LT
4289 return 0;
4290}
4291
4292static int ioc_hdrlist(void __user *arg, char *cmnd)
4293{
4294 gdth_ioctl_rescan *rsc;
4295 gdth_cmd_str *cmd;
4296 gdth_ha_str *ha;
1fe6dbf4 4297 u8 i;
45f1a41b 4298 int rc = -ENOMEM;
cbd5f69b
LA
4299 u32 cluster_type = 0;
4300
1da177e4
LT
4301 rsc = kmalloc(sizeof(*rsc), GFP_KERNEL);
4302 cmd = kmalloc(sizeof(*cmd), GFP_KERNEL);
4303 if (!rsc || !cmd)
cbd5f69b 4304 goto free_fail;
1da177e4
LT
4305
4306 if (copy_from_user(rsc, arg, sizeof(gdth_ioctl_rescan)) ||
884f7fba 4307 (NULL == (ha = gdth_find_ha(rsc->ionode)))) {
1da177e4 4308 rc = -EFAULT;
cbd5f69b 4309 goto free_fail;
1da177e4 4310 }
1da177e4
LT
4311 memset(cmd, 0, sizeof(gdth_cmd_str));
4312
1da177e4
LT
4313 for (i = 0; i < MAX_HDRIVES; ++i) {
4314 if (!ha->hdr[i].present) {
4315 rsc->hdr_list[i].bus = 0xff;
4316 continue;
4317 }
4318 rsc->hdr_list[i].bus = ha->virt_bus;
4319 rsc->hdr_list[i].target = i;
4320 rsc->hdr_list[i].lun = 0;
4321 rsc->hdr_list[i].cluster_type = ha->hdr[i].cluster_type;
4322 if (ha->hdr[i].cluster_type & CLUSTER_DRIVE) {
4323 cmd->Service = CACHESERVICE;
4324 cmd->OpCode = GDT_CLUST_INFO;
4325 if (ha->cache_feat & GDT_64BIT)
4326 cmd->u.cache64.DeviceNo = i;
4327 else
4328 cmd->u.cache.DeviceNo = i;
cbd5f69b
LA
4329 if (__gdth_execute(ha->sdev, cmd, cmnd, 30, &cluster_type) == S_OK)
4330 rsc->hdr_list[i].cluster_type = cluster_type;
1da177e4
LT
4331 }
4332 }
cbd5f69b 4333
1da177e4
LT
4334 if (copy_to_user(arg, rsc, sizeof(gdth_ioctl_rescan)))
4335 rc = -EFAULT;
4336 else
cbd5f69b 4337 rc = 0;
1da177e4
LT
4338
4339free_fail:
4340 kfree(rsc);
4341 kfree(cmd);
4342 return rc;
4343}
4344
4345static int ioc_rescan(void __user *arg, char *cmnd)
4346{
4347 gdth_ioctl_rescan *rsc;
4348 gdth_cmd_str *cmd;
1fe6dbf4
DJ
4349 u16 i, status, hdr_cnt;
4350 u32 info;
45f1a41b 4351 int cyls, hds, secs;
1da177e4 4352 int rc = -ENOMEM;
1fe6dbf4 4353 unsigned long flags;
1da177e4 4354 gdth_ha_str *ha;
1da177e4
LT
4355
4356 rsc = kmalloc(sizeof(*rsc), GFP_KERNEL);
4357 cmd = kmalloc(sizeof(*cmd), GFP_KERNEL);
4358 if (!cmd || !rsc)
cbd5f69b 4359 goto free_fail;
1da177e4
LT
4360
4361 if (copy_from_user(rsc, arg, sizeof(gdth_ioctl_rescan)) ||
884f7fba 4362 (NULL == (ha = gdth_find_ha(rsc->ionode)))) {
cbd5f69b
LA
4363 rc = -EFAULT;
4364 goto free_fail;
1da177e4 4365 }
1da177e4
LT
4366 memset(cmd, 0, sizeof(gdth_cmd_str));
4367
1da177e4
LT
4368 if (rsc->flag == 0) {
4369 /* old method: re-init. cache service */
4370 cmd->Service = CACHESERVICE;
4371 if (ha->cache_feat & GDT_64BIT) {
4372 cmd->OpCode = GDT_X_INIT_HOST;
4373 cmd->u.cache64.DeviceNo = LINUX_OS;
4374 } else {
4375 cmd->OpCode = GDT_INIT;
4376 cmd->u.cache.DeviceNo = LINUX_OS;
4377 }
cbd5f69b
LA
4378
4379 status = __gdth_execute(ha->sdev, cmd, cmnd, 30, &info);
1da177e4 4380 i = 0;
1fe6dbf4 4381 hdr_cnt = (status == S_OK ? (u16)info : 0);
1da177e4
LT
4382 } else {
4383 i = rsc->hdr_no;
4384 hdr_cnt = i + 1;
4385 }
4386
4387 for (; i < hdr_cnt && i < MAX_HDRIVES; ++i) {
4388 cmd->Service = CACHESERVICE;
4389 cmd->OpCode = GDT_INFO;
4390 if (ha->cache_feat & GDT_64BIT)
4391 cmd->u.cache64.DeviceNo = i;
4392 else
4393 cmd->u.cache.DeviceNo = i;
cbd5f69b
LA
4394
4395 status = __gdth_execute(ha->sdev, cmd, cmnd, 30, &info);
4396
1da177e4
LT
4397 spin_lock_irqsave(&ha->smp_lock, flags);
4398 rsc->hdr_list[i].bus = ha->virt_bus;
4399 rsc->hdr_list[i].target = i;
4400 rsc->hdr_list[i].lun = 0;
4401 if (status != S_OK) {
4402 ha->hdr[i].present = FALSE;
4403 } else {
4404 ha->hdr[i].present = TRUE;
4405 ha->hdr[i].size = info;
4406 /* evaluate mapping */
4407 ha->hdr[i].size &= ~SECS32;
4408 gdth_eval_mapping(ha->hdr[i].size,&cyls,&hds,&secs);
4409 ha->hdr[i].heads = hds;
4410 ha->hdr[i].secs = secs;
4411 /* round size */
4412 ha->hdr[i].size = cyls * hds * secs;
4413 }
4414 spin_unlock_irqrestore(&ha->smp_lock, flags);
4415 if (status != S_OK)
4416 continue;
4417
4418 /* extended info, if GDT_64BIT, for drives > 2 TB */
4419 /* but we need ha->info2, not yet stored in scp->SCp */
4420
4421 /* devtype, cluster info, R/W attribs */
4422 cmd->Service = CACHESERVICE;
4423 cmd->OpCode = GDT_DEVTYPE;
4424 if (ha->cache_feat & GDT_64BIT)
4425 cmd->u.cache64.DeviceNo = i;
4426 else
4427 cmd->u.cache.DeviceNo = i;
cbd5f69b
LA
4428
4429 status = __gdth_execute(ha->sdev, cmd, cmnd, 30, &info);
4430
1da177e4 4431 spin_lock_irqsave(&ha->smp_lock, flags);
1fe6dbf4 4432 ha->hdr[i].devtype = (status == S_OK ? (u16)info : 0);
1da177e4
LT
4433 spin_unlock_irqrestore(&ha->smp_lock, flags);
4434
4435 cmd->Service = CACHESERVICE;
4436 cmd->OpCode = GDT_CLUST_INFO;
4437 if (ha->cache_feat & GDT_64BIT)
4438 cmd->u.cache64.DeviceNo = i;
4439 else
4440 cmd->u.cache.DeviceNo = i;
cbd5f69b
LA
4441
4442 status = __gdth_execute(ha->sdev, cmd, cmnd, 30, &info);
4443
1da177e4
LT
4444 spin_lock_irqsave(&ha->smp_lock, flags);
4445 ha->hdr[i].cluster_type =
1fe6dbf4 4446 ((status == S_OK && !shared_access) ? (u16)info : 0);
1da177e4
LT
4447 spin_unlock_irqrestore(&ha->smp_lock, flags);
4448 rsc->hdr_list[i].cluster_type = ha->hdr[i].cluster_type;
4449
4450 cmd->Service = CACHESERVICE;
4451 cmd->OpCode = GDT_RW_ATTRIBS;
4452 if (ha->cache_feat & GDT_64BIT)
4453 cmd->u.cache64.DeviceNo = i;
4454 else
4455 cmd->u.cache.DeviceNo = i;
cbd5f69b
LA
4456
4457 status = __gdth_execute(ha->sdev, cmd, cmnd, 30, &info);
4458
1da177e4 4459 spin_lock_irqsave(&ha->smp_lock, flags);
1fe6dbf4 4460 ha->hdr[i].rw_attribs = (status == S_OK ? (u16)info : 0);
1da177e4
LT
4461 spin_unlock_irqrestore(&ha->smp_lock, flags);
4462 }
1da177e4
LT
4463
4464 if (copy_to_user(arg, rsc, sizeof(gdth_ioctl_rescan)))
4465 rc = -EFAULT;
4466 else
cbd5f69b 4467 rc = 0;
1da177e4
LT
4468
4469free_fail:
4470 kfree(rsc);
4471 kfree(cmd);
4472 return rc;
4473}
4474
f4927c45 4475static int gdth_ioctl(struct file *filep, unsigned int cmd, unsigned long arg)
1da177e4
LT
4476{
4477 gdth_ha_str *ha;
4478 Scsi_Cmnd *scp;
1fe6dbf4 4479 unsigned long flags;
1da177e4
LT
4480 char cmnd[MAX_COMMAND_SIZE];
4481 void __user *argp = (void __user *)arg;
4482
4483 memset(cmnd, 0xff, 12);
4484
4485 TRACE(("gdth_ioctl() cmd 0x%x\n", cmd));
4486
4487 switch (cmd) {
4488 case GDTIOCTL_CTRCNT:
4489 {
4490 int cnt = gdth_ctr_count;
4491 if (put_user(cnt, (int __user *)argp))
4492 return -EFAULT;
4493 break;
4494 }
4495
4496 case GDTIOCTL_DRVERS:
4497 {
4498 int ver = (GDTH_VERSION<<8) | GDTH_SUBVERSION;
4499 if (put_user(ver, (int __user *)argp))
4500 return -EFAULT;
4501 break;
4502 }
4503
4504 case GDTIOCTL_OSVERS:
4505 {
4506 gdth_ioctl_osvers osv;
4507
1fe6dbf4
DJ
4508 osv.version = (u8)(LINUX_VERSION_CODE >> 16);
4509 osv.subversion = (u8)(LINUX_VERSION_CODE >> 8);
4510 osv.revision = (u16)(LINUX_VERSION_CODE & 0xff);
1da177e4
LT
4511 if (copy_to_user(argp, &osv, sizeof(gdth_ioctl_osvers)))
4512 return -EFAULT;
4513 break;
4514 }
4515
4516 case GDTIOCTL_CTRTYPE:
4517 {
4518 gdth_ioctl_ctrtype ctrt;
4519
4520 if (copy_from_user(&ctrt, argp, sizeof(gdth_ioctl_ctrtype)) ||
884f7fba 4521 (NULL == (ha = gdth_find_ha(ctrt.ionode))))
1da177e4 4522 return -EFAULT;
884f7fba 4523
1da177e4 4524 if (ha->type == GDT_ISA || ha->type == GDT_EISA) {
1fe6dbf4 4525 ctrt.type = (u8)((ha->stype>>20) - 0x10);
1da177e4
LT
4526 } else {
4527 if (ha->type != GDT_PCIMPR) {
1fe6dbf4 4528 ctrt.type = (u8)((ha->stype<<4) + 6);
1da177e4
LT
4529 } else {
4530 ctrt.type =
4531 (ha->oem_id == OEM_ID_INTEL ? 0xfd : 0xfe);
4532 if (ha->stype >= 0x300)
8e9a8a0d 4533 ctrt.ext_type = 0x6000 | ha->pdev->subsystem_device;
1da177e4
LT
4534 else
4535 ctrt.ext_type = 0x6000 | ha->stype;
4536 }
8e9a8a0d
JG
4537 ctrt.device_id = ha->pdev->device;
4538 ctrt.sub_device_id = ha->pdev->subsystem_device;
1da177e4
LT
4539 }
4540 ctrt.info = ha->brd_phys;
4541 ctrt.oem_id = ha->oem_id;
4542 if (copy_to_user(argp, &ctrt, sizeof(gdth_ioctl_ctrtype)))
4543 return -EFAULT;
4544 break;
4545 }
4546
4547 case GDTIOCTL_GENERAL:
4548 return ioc_general(argp, cmnd);
4549
4550 case GDTIOCTL_EVENT:
4551 return ioc_event(argp);
4552
4553 case GDTIOCTL_LOCKDRV:
4554 return ioc_lockdrv(argp);
4555
4556 case GDTIOCTL_LOCKCHN:
4557 {
4558 gdth_ioctl_lockchn lchn;
1fe6dbf4 4559 u8 i, j;
1da177e4
LT
4560
4561 if (copy_from_user(&lchn, argp, sizeof(gdth_ioctl_lockchn)) ||
884f7fba 4562 (NULL == (ha = gdth_find_ha(lchn.ionode))))
1da177e4 4563 return -EFAULT;
884f7fba 4564
1da177e4
LT
4565 i = lchn.channel;
4566 if (i < ha->bus_cnt) {
4567 if (lchn.lock) {
4568 spin_lock_irqsave(&ha->smp_lock, flags);
4569 ha->raw[i].lock = 1;
4570 spin_unlock_irqrestore(&ha->smp_lock, flags);
242f9dcb 4571 for (j = 0; j < ha->tid_cnt; ++j)
45f1a41b 4572 gdth_wait_completion(ha, i, j);
1da177e4
LT
4573 } else {
4574 spin_lock_irqsave(&ha->smp_lock, flags);
4575 ha->raw[i].lock = 0;
4576 spin_unlock_irqrestore(&ha->smp_lock, flags);
242f9dcb 4577 for (j = 0; j < ha->tid_cnt; ++j)
45f1a41b 4578 gdth_next(ha);
1da177e4
LT
4579 }
4580 }
4581 break;
4582 }
4583
4584 case GDTIOCTL_RESCAN:
4585 return ioc_rescan(argp, cmnd);
4586
4587 case GDTIOCTL_HDRLIST:
4588 return ioc_hdrlist(argp, cmnd);
4589
4590 case GDTIOCTL_RESET_BUS:
4591 {
4592 gdth_ioctl_reset res;
45f1a41b 4593 int rval;
1da177e4
LT
4594
4595 if (copy_from_user(&res, argp, sizeof(gdth_ioctl_reset)) ||
884f7fba 4596 (NULL == (ha = gdth_find_ha(res.ionode))))
1da177e4 4597 return -EFAULT;
1da177e4 4598
bbfbbbc1 4599 scp = kzalloc(sizeof(*scp), GFP_KERNEL);
1da177e4
LT
4600 if (!scp)
4601 return -ENOMEM;
cbd5f69b 4602 scp->device = ha->sdev;
1da177e4 4603 scp->cmd_len = 12;
52759e6a 4604 scp->device->channel = res.number;
1da177e4
LT
4605 rval = gdth_eh_bus_reset(scp);
4606 res.status = (rval == SUCCESS ? S_OK : S_GENERR);
cbd5f69b 4607 kfree(scp);
8d7a5da4 4608
1da177e4
LT
4609 if (copy_to_user(argp, &res, sizeof(gdth_ioctl_reset)))
4610 return -EFAULT;
4611 break;
4612 }
4613
4614 case GDTIOCTL_RESET_DRV:
4615 return ioc_resetdrv(argp, cmnd);
4616
4617 default:
4618 break;
4619 }
4620 return 0;
4621}
4622
f4927c45
AB
4623static long gdth_unlocked_ioctl(struct file *file, unsigned int cmd,
4624 unsigned long arg)
4625{
4626 int ret;
4627
c45d15d2 4628 mutex_lock(&gdth_mutex);
f4927c45 4629 ret = gdth_ioctl(file, cmd, arg);
c45d15d2 4630 mutex_unlock(&gdth_mutex);
f4927c45
AB
4631
4632 return ret;
4633}
1da177e4
LT
4634
4635/* flush routine */
45f1a41b 4636static void gdth_flush(gdth_ha_str *ha)
1da177e4
LT
4637{
4638 int i;
1da177e4 4639 gdth_cmd_str gdtcmd;
1da177e4
LT
4640 char cmnd[MAX_COMMAND_SIZE];
4641 memset(cmnd, 0xff, MAX_COMMAND_SIZE);
4642
45f1a41b 4643 TRACE2(("gdth_flush() hanum %d\n", ha->hanum));
1da177e4 4644
1da177e4
LT
4645 for (i = 0; i < MAX_HDRIVES; ++i) {
4646 if (ha->hdr[i].present) {
4647 gdtcmd.BoardNode = LOCALBOARD;
4648 gdtcmd.Service = CACHESERVICE;
4649 gdtcmd.OpCode = GDT_FLUSH;
4650 if (ha->cache_feat & GDT_64BIT) {
4651 gdtcmd.u.cache64.DeviceNo = i;
4652 gdtcmd.u.cache64.BlockNo = 1;
4653 gdtcmd.u.cache64.sg_canz = 0;
4654 } else {
4655 gdtcmd.u.cache.DeviceNo = i;
4656 gdtcmd.u.cache.BlockNo = 1;
4657 gdtcmd.u.cache.sg_canz = 0;
4658 }
45f1a41b 4659 TRACE2(("gdth_flush(): flush ha %d drive %d\n", ha->hanum, i));
cbd5f69b 4660
45f1a41b 4661 gdth_execute(ha->shost, &gdtcmd, cmnd, 30, NULL);
1da177e4
LT
4662 }
4663 }
1da177e4
LT
4664}
4665
cbd5f69b
LA
4666/* configure lun */
4667static int gdth_slave_configure(struct scsi_device *sdev)
4668{
4669 scsi_adjust_queue_depth(sdev, 0, sdev->host->cmd_per_lun);
4670 sdev->skip_ms_page_3f = 1;
4671 sdev->skip_ms_page_8 = 1;
4672 return 0;
4673}
cbd5f69b 4674
835cc24a 4675static struct scsi_host_template gdth_template = {
1da177e4 4676 .name = "GDT SCSI Disk Array Controller",
1da177e4
LT
4677 .info = gdth_info,
4678 .queuecommand = gdth_queuecommand,
1da177e4 4679 .eh_bus_reset_handler = gdth_eh_bus_reset,
69916b7c 4680 .slave_configure = gdth_slave_configure,
1da177e4 4681 .bios_param = gdth_bios_param,
69916b7c 4682 .proc_info = gdth_proc_info,
242f9dcb 4683 .eh_timed_out = gdth_timed_out,
69916b7c 4684 .proc_name = "gdth",
1da177e4
LT
4685 .can_queue = GDTH_MAXCMDS,
4686 .this_id = -1,
4687 .sg_tablesize = GDTH_MAXSG,
4688 .cmd_per_lun = GDTH_MAXC_P_L,
4689 .unchecked_isa_dma = 1,
4690 .use_clustering = ENABLE_CLUSTERING,
1da177e4
LT
4691};
4692
aed91cb5 4693#ifdef CONFIG_ISA
1fe6dbf4 4694static int __init gdth_isa_probe_one(u32 isa_bios)
aed91cb5
CH
4695{
4696 struct Scsi_Host *shp;
4697 gdth_ha_str *ha;
4698 dma_addr_t scratch_dma_handle = 0;
884f7fba 4699 int error, i;
aed91cb5
CH
4700
4701 if (!gdth_search_isa(isa_bios))
4702 return -ENXIO;
4703
835cc24a 4704 shp = scsi_host_alloc(&gdth_template, sizeof(gdth_ha_str));
aed91cb5
CH
4705 if (!shp)
4706 return -ENOMEM;
45f1a41b 4707 ha = shost_priv(shp);
aed91cb5
CH
4708
4709 error = -ENODEV;
4710 if (!gdth_init_isa(isa_bios,ha))
4711 goto out_host_put;
4712
4713 /* controller found and initialized */
4714 printk("Configuring GDT-ISA HA at BIOS 0x%05X IRQ %u DRQ %u\n",
4715 isa_bios, ha->irq, ha->drq);
4716
4717 error = request_irq(ha->irq, gdth_interrupt, IRQF_DISABLED, "gdth", ha);
4718 if (error) {
4719 printk("GDT-ISA: Unable to allocate IRQ\n");
4720 goto out_host_put;
4721 }
4722
4723 error = request_dma(ha->drq, "gdth");
4724 if (error) {
4725 printk("GDT-ISA: Unable to allocate DMA channel\n");
4726 goto out_free_irq;
4727 }
4728
4729 set_dma_mode(ha->drq,DMA_MODE_CASCADE);
4730 enable_dma(ha->drq);
4731 shp->unchecked_isa_dma = 1;
4732 shp->irq = ha->irq;
4733 shp->dma_channel = ha->drq;
aed91cb5 4734
884f7fba 4735 ha->hanum = gdth_ctr_count++;
45f1a41b 4736 ha->shost = shp;
aed91cb5 4737
45f1a41b 4738 ha->pccb = &ha->cmdext;
aed91cb5
CH
4739 ha->ccb_phys = 0L;
4740 ha->pdev = NULL;
4741
4742 error = -ENOMEM;
4743
4744 ha->pscratch = pci_alloc_consistent(ha->pdev, GDTH_SCRATCH,
4745 &scratch_dma_handle);
4746 if (!ha->pscratch)
4747 goto out_dec_counters;
4748 ha->scratch_phys = scratch_dma_handle;
4749
4750 ha->pmsg = pci_alloc_consistent(ha->pdev, sizeof(gdth_msg_str),
4751 &scratch_dma_handle);
4752 if (!ha->pmsg)
4753 goto out_free_pscratch;
4754 ha->msg_phys = scratch_dma_handle;
4755
4756#ifdef INT_COAL
4757 ha->coal_stat = pci_alloc_consistent(ha->pdev,
4758 sizeof(gdth_coal_status) * MAXOFFSETS,
4759 &scratch_dma_handle);
4760 if (!ha->coal_stat)
4761 goto out_free_pmsg;
4762 ha->coal_stat_phys = scratch_dma_handle;
4763#endif
4764
4765 ha->scratch_busy = FALSE;
4766 ha->req_first = NULL;
4767 ha->tid_cnt = MAX_HDRIVES;
4768 if (max_ids > 0 && max_ids < ha->tid_cnt)
4769 ha->tid_cnt = max_ids;
4770 for (i = 0; i < GDTH_MAXCMDS; ++i)
4771 ha->cmd_tab[i].cmnd = UNUSED_CMND;
4772 ha->scan_mode = rescan ? 0x10 : 0;
4773
4774 error = -ENODEV;
45f1a41b 4775 if (!gdth_search_drives(ha)) {
aed91cb5
CH
4776 printk("GDT-ISA: Error during device scan\n");
4777 goto out_free_coal_stat;
4778 }
4779
4780 if (hdr_channel < 0 || hdr_channel > ha->bus_cnt)
4781 hdr_channel = ha->bus_cnt;
4782 ha->virt_bus = hdr_channel;
4783
4784 if (ha->cache_feat & ha->raw_feat & ha->screen_feat & GDT_64BIT)
4785 shp->max_cmd_len = 16;
4786
4787 shp->max_id = ha->tid_cnt;
4788 shp->max_lun = MAXLUN;
52759e6a 4789 shp->max_channel = ha->bus_cnt;
aed91cb5
CH
4790
4791 spin_lock_init(&ha->smp_lock);
45f1a41b 4792 gdth_enable_int(ha);
aed91cb5 4793
835cc24a
CH
4794 error = scsi_add_host(shp, NULL);
4795 if (error)
4796 goto out_free_coal_stat;
4797 list_add_tail(&ha->list, &gdth_instances);
2d6f0d0c 4798 gdth_timer_init();
61c92814
BH
4799
4800 scsi_scan_host(shp);
4801
aed91cb5
CH
4802 return 0;
4803
4804 out_free_coal_stat:
4805#ifdef INT_COAL
4806 pci_free_consistent(ha->pdev, sizeof(gdth_coal_status) * MAXOFFSETS,
4807 ha->coal_stat, ha->coal_stat_phys);
4808 out_free_pmsg:
4809#endif
4810 pci_free_consistent(ha->pdev, sizeof(gdth_msg_str),
4811 ha->pmsg, ha->msg_phys);
4812 out_free_pscratch:
4813 pci_free_consistent(ha->pdev, GDTH_SCRATCH,
4814 ha->pscratch, ha->scratch_phys);
4815 out_dec_counters:
4816 gdth_ctr_count--;
aed91cb5
CH
4817 out_free_irq:
4818 free_irq(ha->irq, ha);
4819 out_host_put:
835cc24a 4820 scsi_host_put(shp);
aed91cb5
CH
4821 return error;
4822}
4823#endif /* CONFIG_ISA */
4824
706a5d45 4825#ifdef CONFIG_EISA
1fe6dbf4 4826static int __init gdth_eisa_probe_one(u16 eisa_slot)
706a5d45
CH
4827{
4828 struct Scsi_Host *shp;
4829 gdth_ha_str *ha;
4830 dma_addr_t scratch_dma_handle = 0;
884f7fba 4831 int error, i;
706a5d45
CH
4832
4833 if (!gdth_search_eisa(eisa_slot))
4834 return -ENXIO;
4835
835cc24a 4836 shp = scsi_host_alloc(&gdth_template, sizeof(gdth_ha_str));
706a5d45
CH
4837 if (!shp)
4838 return -ENOMEM;
45f1a41b 4839 ha = shost_priv(shp);
706a5d45
CH
4840
4841 error = -ENODEV;
4842 if (!gdth_init_eisa(eisa_slot,ha))
4843 goto out_host_put;
4844
4845 /* controller found and initialized */
4846 printk("Configuring GDT-EISA HA at Slot %d IRQ %u\n",
4847 eisa_slot >> 12, ha->irq);
4848
4849 error = request_irq(ha->irq, gdth_interrupt, IRQF_DISABLED, "gdth", ha);
4850 if (error) {
4851 printk("GDT-EISA: Unable to allocate IRQ\n");
4852 goto out_host_put;
4853 }
4854
4855 shp->unchecked_isa_dma = 0;
4856 shp->irq = ha->irq;
4857 shp->dma_channel = 0xff;
706a5d45 4858
884f7fba 4859 ha->hanum = gdth_ctr_count++;
45f1a41b
BH
4860 ha->shost = shp;
4861
4862 TRACE2(("EISA detect Bus 0: hanum %d\n", ha->hanum));
706a5d45 4863
45f1a41b 4864 ha->pccb = &ha->cmdext;
706a5d45
CH
4865 ha->ccb_phys = 0L;
4866
4867 error = -ENOMEM;
4868
4869 ha->pdev = NULL;
4870 ha->pscratch = pci_alloc_consistent(ha->pdev, GDTH_SCRATCH,
4871 &scratch_dma_handle);
4872 if (!ha->pscratch)
4873 goto out_free_irq;
4874 ha->scratch_phys = scratch_dma_handle;
4875
4876 ha->pmsg = pci_alloc_consistent(ha->pdev, sizeof(gdth_msg_str),
4877 &scratch_dma_handle);
4878 if (!ha->pmsg)
4879 goto out_free_pscratch;
4880 ha->msg_phys = scratch_dma_handle;
4881
4882#ifdef INT_COAL
4883 ha->coal_stat = pci_alloc_consistent(ha->pdev,
4884 sizeof(gdth_coal_status) * MAXOFFSETS,
4885 &scratch_dma_handle);
4886 if (!ha->coal_stat)
4887 goto out_free_pmsg;
4888 ha->coal_stat_phys = scratch_dma_handle;
4889#endif
4890
4891 ha->ccb_phys = pci_map_single(ha->pdev,ha->pccb,
4892 sizeof(gdth_cmd_str), PCI_DMA_BIDIRECTIONAL);
4893 if (!ha->ccb_phys)
4894 goto out_free_coal_stat;
4895
4896 ha->scratch_busy = FALSE;
4897 ha->req_first = NULL;
4898 ha->tid_cnt = MAX_HDRIVES;
4899 if (max_ids > 0 && max_ids < ha->tid_cnt)
4900 ha->tid_cnt = max_ids;
4901 for (i = 0; i < GDTH_MAXCMDS; ++i)
4902 ha->cmd_tab[i].cmnd = UNUSED_CMND;
4903 ha->scan_mode = rescan ? 0x10 : 0;
4904
45f1a41b 4905 if (!gdth_search_drives(ha)) {
706a5d45
CH
4906 printk("GDT-EISA: Error during device scan\n");
4907 error = -ENODEV;
4908 goto out_free_ccb_phys;
4909 }
4910
4911 if (hdr_channel < 0 || hdr_channel > ha->bus_cnt)
4912 hdr_channel = ha->bus_cnt;
4913 ha->virt_bus = hdr_channel;
4914
4915 if (ha->cache_feat & ha->raw_feat & ha->screen_feat & GDT_64BIT)
4916 shp->max_cmd_len = 16;
4917
4918 shp->max_id = ha->tid_cnt;
4919 shp->max_lun = MAXLUN;
52759e6a 4920 shp->max_channel = ha->bus_cnt;
706a5d45
CH
4921
4922 spin_lock_init(&ha->smp_lock);
45f1a41b 4923 gdth_enable_int(ha);
835cc24a
CH
4924
4925 error = scsi_add_host(shp, NULL);
4926 if (error)
2c076eea 4927 goto out_free_ccb_phys;
835cc24a 4928 list_add_tail(&ha->list, &gdth_instances);
2d6f0d0c 4929 gdth_timer_init();
61c92814
BH
4930
4931 scsi_scan_host(shp);
4932
706a5d45
CH
4933 return 0;
4934
4935 out_free_ccb_phys:
4936 pci_unmap_single(ha->pdev,ha->ccb_phys, sizeof(gdth_cmd_str),
4937 PCI_DMA_BIDIRECTIONAL);
4938 out_free_coal_stat:
4939#ifdef INT_COAL
4940 pci_free_consistent(ha->pdev, sizeof(gdth_coal_status) * MAXOFFSETS,
4941 ha->coal_stat, ha->coal_stat_phys);
4942 out_free_pmsg:
4943#endif
4944 pci_free_consistent(ha->pdev, sizeof(gdth_msg_str),
4945 ha->pmsg, ha->msg_phys);
4946 out_free_pscratch:
4947 pci_free_consistent(ha->pdev, GDTH_SCRATCH,
4948 ha->pscratch, ha->scratch_phys);
4949 out_free_irq:
4950 free_irq(ha->irq, ha);
4951 gdth_ctr_count--;
706a5d45 4952 out_host_put:
835cc24a 4953 scsi_host_put(shp);
706a5d45
CH
4954 return error;
4955}
4956#endif /* CONFIG_EISA */
aed91cb5 4957
8514ef27 4958#ifdef CONFIG_PCI
ced7172a 4959static int __devinit gdth_pci_probe_one(gdth_pci_str *pcistr,
cff26806 4960 gdth_ha_str **ha_out)
8514ef27
CH
4961{
4962 struct Scsi_Host *shp;
4963 gdth_ha_str *ha;
4964 dma_addr_t scratch_dma_handle = 0;
884f7fba 4965 int error, i;
4c9c8d78 4966 struct pci_dev *pdev = pcistr->pdev;
8514ef27 4967
cff26806
JG
4968 *ha_out = NULL;
4969
835cc24a 4970 shp = scsi_host_alloc(&gdth_template, sizeof(gdth_ha_str));
8514ef27
CH
4971 if (!shp)
4972 return -ENOMEM;
45f1a41b 4973 ha = shost_priv(shp);
8514ef27
CH
4974
4975 error = -ENODEV;
4c9c8d78 4976 if (!gdth_init_pci(pdev, pcistr, ha))
8514ef27
CH
4977 goto out_host_put;
4978
4979 /* controller found and initialized */
4980 printk("Configuring GDT-PCI HA at %d/%d IRQ %u\n",
4c9c8d78
JG
4981 pdev->bus->number,
4982 PCI_SLOT(pdev->devfn),
8514ef27
CH
4983 ha->irq);
4984
4985 error = request_irq(ha->irq, gdth_interrupt,
4986 IRQF_DISABLED|IRQF_SHARED, "gdth", ha);
4987 if (error) {
4988 printk("GDT-PCI: Unable to allocate IRQ\n");
4989 goto out_host_put;
4990 }
4991
4992 shp->unchecked_isa_dma = 0;
4993 shp->irq = ha->irq;
4994 shp->dma_channel = 0xff;
8514ef27 4995
884f7fba 4996 ha->hanum = gdth_ctr_count++;
45f1a41b 4997 ha->shost = shp;
8514ef27 4998
45f1a41b 4999 ha->pccb = &ha->cmdext;
8514ef27
CH
5000 ha->ccb_phys = 0L;
5001
5002 error = -ENOMEM;
5003
5004 ha->pscratch = pci_alloc_consistent(ha->pdev, GDTH_SCRATCH,
5005 &scratch_dma_handle);
5006 if (!ha->pscratch)
5007 goto out_free_irq;
5008 ha->scratch_phys = scratch_dma_handle;
5009
5010 ha->pmsg = pci_alloc_consistent(ha->pdev, sizeof(gdth_msg_str),
5011 &scratch_dma_handle);
5012 if (!ha->pmsg)
5013 goto out_free_pscratch;
5014 ha->msg_phys = scratch_dma_handle;
5015
5016#ifdef INT_COAL
5017 ha->coal_stat = pci_alloc_consistent(ha->pdev,
5018 sizeof(gdth_coal_status) * MAXOFFSETS,
5019 &scratch_dma_handle);
5020 if (!ha->coal_stat)
5021 goto out_free_pmsg;
5022 ha->coal_stat_phys = scratch_dma_handle;
5023#endif
5024
5025 ha->scratch_busy = FALSE;
5026 ha->req_first = NULL;
4c9c8d78 5027 ha->tid_cnt = pdev->device >= 0x200 ? MAXID : MAX_HDRIVES;
8514ef27
CH
5028 if (max_ids > 0 && max_ids < ha->tid_cnt)
5029 ha->tid_cnt = max_ids;
5030 for (i = 0; i < GDTH_MAXCMDS; ++i)
5031 ha->cmd_tab[i].cmnd = UNUSED_CMND;
5032 ha->scan_mode = rescan ? 0x10 : 0;
5033
5034 error = -ENODEV;
45f1a41b
BH
5035 if (!gdth_search_drives(ha)) {
5036 printk("GDT-PCI %d: Error during device scan\n", ha->hanum);
8514ef27
CH
5037 goto out_free_coal_stat;
5038 }
5039
5040 if (hdr_channel < 0 || hdr_channel > ha->bus_cnt)
5041 hdr_channel = ha->bus_cnt;
5042 ha->virt_bus = hdr_channel;
5043
5044 /* 64-bit DMA only supported from FW >= x.43 */
5045 if (!(ha->cache_feat & ha->raw_feat & ha->screen_feat & GDT_64BIT) ||
5046 !ha->dma64_support) {
284901a9 5047 if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) {
8514ef27 5048 printk(KERN_WARNING "GDT-PCI %d: "
45f1a41b 5049 "Unable to set 32-bit DMA\n", ha->hanum);
8514ef27
CH
5050 goto out_free_coal_stat;
5051 }
5052 } else {
5053 shp->max_cmd_len = 16;
6a35528a 5054 if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) {
45f1a41b 5055 printk("GDT-PCI %d: 64-bit DMA enabled\n", ha->hanum);
284901a9 5056 } else if (pci_set_dma_mask(pdev, DMA_BIT_MASK(32))) {
8514ef27 5057 printk(KERN_WARNING "GDT-PCI %d: "
45f1a41b 5058 "Unable to set 64/32-bit DMA\n", ha->hanum);
8514ef27
CH
5059 goto out_free_coal_stat;
5060 }
5061 }
5062
5063 shp->max_id = ha->tid_cnt;
5064 shp->max_lun = MAXLUN;
52759e6a 5065 shp->max_channel = ha->bus_cnt;
8514ef27
CH
5066
5067 spin_lock_init(&ha->smp_lock);
45f1a41b 5068 gdth_enable_int(ha);
835cc24a 5069
4c9c8d78 5070 error = scsi_add_host(shp, &pdev->dev);
835cc24a
CH
5071 if (error)
5072 goto out_free_coal_stat;
5073 list_add_tail(&ha->list, &gdth_instances);
61c92814 5074
cff26806 5075 pci_set_drvdata(ha->pdev, ha);
2d6f0d0c 5076 gdth_timer_init();
cff26806 5077
61c92814
BH
5078 scsi_scan_host(shp);
5079
cff26806
JG
5080 *ha_out = ha;
5081
8514ef27
CH
5082 return 0;
5083
5084 out_free_coal_stat:
5085#ifdef INT_COAL
5086 pci_free_consistent(ha->pdev, sizeof(gdth_coal_status) * MAXOFFSETS,
5087 ha->coal_stat, ha->coal_stat_phys);
5088 out_free_pmsg:
5089#endif
5090 pci_free_consistent(ha->pdev, sizeof(gdth_msg_str),
5091 ha->pmsg, ha->msg_phys);
5092 out_free_pscratch:
5093 pci_free_consistent(ha->pdev, GDTH_SCRATCH,
5094 ha->pscratch, ha->scratch_phys);
5095 out_free_irq:
5096 free_irq(ha->irq, ha);
5097 gdth_ctr_count--;
8514ef27 5098 out_host_put:
835cc24a 5099 scsi_host_put(shp);
8514ef27
CH
5100 return error;
5101}
5102#endif /* CONFIG_PCI */
5103
835cc24a
CH
5104static void gdth_remove_one(gdth_ha_str *ha)
5105{
5106 struct Scsi_Host *shp = ha->shost;
5107
5108 TRACE2(("gdth_remove_one()\n"));
5109
5110 scsi_remove_host(shp);
5111
b31ddd31
BH
5112 gdth_flush(ha);
5113
835cc24a
CH
5114 if (ha->sdev) {
5115 scsi_free_host_dev(ha->sdev);
5116 ha->sdev = NULL;
5117 }
5118
835cc24a
CH
5119 if (shp->irq)
5120 free_irq(shp->irq,ha);
5121
5122#ifdef CONFIG_ISA
5123 if (shp->dma_channel != 0xff)
5124 free_dma(shp->dma_channel);
5125#endif
5126#ifdef INT_COAL
5127 if (ha->coal_stat)
5128 pci_free_consistent(ha->pdev, sizeof(gdth_coal_status) *
5129 MAXOFFSETS, ha->coal_stat, ha->coal_stat_phys);
5130#endif
5131 if (ha->pscratch)
5132 pci_free_consistent(ha->pdev, GDTH_SCRATCH,
5133 ha->pscratch, ha->scratch_phys);
5134 if (ha->pmsg)
5135 pci_free_consistent(ha->pdev, sizeof(gdth_msg_str),
5136 ha->pmsg, ha->msg_phys);
5137 if (ha->ccb_phys)
5138 pci_unmap_single(ha->pdev,ha->ccb_phys,
5139 sizeof(gdth_cmd_str),PCI_DMA_BIDIRECTIONAL);
5140
5141 scsi_host_put(shp);
5142}
5143
1fe6dbf4 5144static int gdth_halt(struct notifier_block *nb, unsigned long event, void *buf)
b31ddd31
BH
5145{
5146 gdth_ha_str *ha;
5147
5148 TRACE2(("gdth_halt() event %d\n", (int)event));
5149 if (event != SYS_RESTART && event != SYS_HALT && event != SYS_POWER_OFF)
5150 return NOTIFY_DONE;
5151
5152 list_for_each_entry(ha, &gdth_instances, list)
5153 gdth_flush(ha);
5154
5155 return NOTIFY_OK;
5156}
5157
5158static struct notifier_block gdth_notifier = {
5159 gdth_halt, NULL, 0
5160};
5161
835cc24a
CH
5162static int __init gdth_init(void)
5163{
5164 if (disable) {
5165 printk("GDT-HA: Controller driver disabled from"
5166 " command line !\n");
5167 return 0;
5168 }
5169
5170 printk("GDT-HA: Storage RAID Controller Driver. Version: %s\n",
5171 GDTH_VERSION_STR);
5172
5173 /* initializations */
5174 gdth_polling = TRUE;
5175 gdth_clear_events();
2d6f0d0c 5176 init_timer(&gdth_timer);
835cc24a
CH
5177
5178 /* As default we do not probe for EISA or ISA controllers */
5179 if (probe_eisa_isa) {
5180 /* scanning for controllers, at first: ISA controller */
5181#ifdef CONFIG_ISA
1fe6dbf4 5182 u32 isa_bios;
835cc24a 5183 for (isa_bios = 0xc8000UL; isa_bios <= 0xd8000UL;
884f7fba 5184 isa_bios += 0x8000UL)
835cc24a 5185 gdth_isa_probe_one(isa_bios);
835cc24a
CH
5186#endif
5187#ifdef CONFIG_EISA
5188 {
1fe6dbf4 5189 u16 eisa_slot;
835cc24a 5190 for (eisa_slot = 0x1000; eisa_slot <= 0x8000;
884f7fba 5191 eisa_slot += 0x1000)
835cc24a 5192 gdth_eisa_probe_one(eisa_slot);
835cc24a
CH
5193 }
5194#endif
5195 }
5196
5197#ifdef CONFIG_PCI
5198 /* scanning for PCI controllers */
a85591fd
JB
5199 if (pci_register_driver(&gdth_pci_driver)) {
5200 gdth_ha_str *ha;
5201
5202 list_for_each_entry(ha, &gdth_instances, list)
5203 gdth_remove_one(ha);
5204 return -ENODEV;
5205 }
835cc24a
CH
5206#endif /* CONFIG_PCI */
5207
5208 TRACE2(("gdth_detect() %d controller detected\n", gdth_ctr_count));
c596cc46 5209
835cc24a 5210 major = register_chrdev(0,"gdth", &gdth_fops);
835cc24a
CH
5211 register_reboot_notifier(&gdth_notifier);
5212 gdth_polling = FALSE;
5213 return 0;
5214}
5215
5216static void __exit gdth_exit(void)
5217{
5218 gdth_ha_str *ha;
5219
b31ddd31
BH
5220 unregister_chrdev(major, "gdth");
5221 unregister_reboot_notifier(&gdth_notifier);
835cc24a
CH
5222
5223#ifdef GDTH_STATISTICS
b31ddd31 5224 del_timer_sync(&gdth_timer);
835cc24a 5225#endif
b31ddd31 5226
cff26806 5227#ifdef CONFIG_PCI
a85591fd 5228 pci_unregister_driver(&gdth_pci_driver);
cff26806
JG
5229#endif
5230
b31ddd31
BH
5231 list_for_each_entry(ha, &gdth_instances, list)
5232 gdth_remove_one(ha);
835cc24a
CH
5233}
5234
5235module_init(gdth_init);
5236module_exit(gdth_exit);
5237
1da177e4
LT
5238#ifndef MODULE
5239__setup("gdth=", option_setup);
5240#endif