1 /************************************************************************
3 * ICP vortex GmbH: GDT ISA/EISA/PCI Disk Array Controllers *
4 * Intel Corporation: Storage RAID Controllers *
7 * Copyright (C) 1995-06 ICP vortex GmbH, Achim Leubner *
8 * Copyright (C) 2002-04 Intel Corporation *
9 * Copyright (C) 2003-06 Adaptec Inc. *
10 * <achim_leubner@adaptec.com> *
13 * Boji Tony Kannanthanam <boji.t.kannanthanam@intel.com> *
14 * Johannes Dinner <johannes_dinner@adaptec.com> *
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. *
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. *
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. *
30 * Linux kernel 2.6.x supported *
32 ************************************************************************/
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.
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.
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
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,
62 * appropriate controller firmware required
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
69 * The default values are: "gdth=disable:N,reserve_mode:1,reverse_scan:N,
70 * max_ids:127,rescan:N,hdr_channel:0,
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".
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'.
80 * Default: "modprobe gdth disable=0 reserve_mode=1 reverse_scan=0
81 * max_ids=127 rescan=0 hdr_channel=0 shared_access=0
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".
86 /* The meaning of the Scsi_Pointer members in this driver is as follows:
88 * this_residual: unused
91 * buffers_residual: unused
94 * have_data_in: unused
95 * sent_command: unused
100 /* interrupt coalescing */
101 /* #define INT_COAL */
104 #define GDTH_STATISTICS
106 #include <linux/module.h>
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>
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>
121 #include <linux/dma-mapping.h>
122 #include <linux/list.h>
123 #include <linux/mutex.h>
124 #include <linux/slab.h>
127 #include <linux/mc146818rtc.h>
129 #include <linux/reboot.h>
133 #include <asm/uaccess.h>
134 #include <linux/spinlock.h>
135 #include <linux/blkdev.h>
136 #include <linux/scatterlist.h>
139 #include <scsi/scsi_host.h>
142 static DEFINE_MUTEX(gdth_mutex
);
143 static void gdth_delay(int milliseconds
);
144 static void gdth_eval_mapping(u32 size
, u32
*cyls
, int *heads
, int *secs
);
145 static irqreturn_t
gdth_interrupt(int irq
, void *dev_id
);
146 static irqreturn_t
__gdth_interrupt(gdth_ha_str
*ha
,
147 int gdth_from_wait
, int* pIndex
);
148 static int gdth_sync_event(gdth_ha_str
*ha
, int service
, u8 index
,
150 static int gdth_async_event(gdth_ha_str
*ha
);
151 static void gdth_log_event(gdth_evt_data
*dvr
, char *buffer
);
153 static void gdth_putq(gdth_ha_str
*ha
, Scsi_Cmnd
*scp
, u8 priority
);
154 static void gdth_next(gdth_ha_str
*ha
);
155 static int gdth_fill_raw_cmd(gdth_ha_str
*ha
, Scsi_Cmnd
*scp
, u8 b
);
156 static int gdth_special_cmd(gdth_ha_str
*ha
, Scsi_Cmnd
*scp
);
157 static gdth_evt_str
*gdth_store_event(gdth_ha_str
*ha
, u16 source
,
158 u16 idx
, gdth_evt_data
*evt
);
159 static int gdth_read_event(gdth_ha_str
*ha
, int handle
, gdth_evt_str
*estr
);
160 static void gdth_readapp_event(gdth_ha_str
*ha
, u8 application
,
162 static void gdth_clear_events(void);
164 static void gdth_copy_internal_data(gdth_ha_str
*ha
, Scsi_Cmnd
*scp
,
165 char *buffer
, u16 count
);
166 static int gdth_internal_cache_cmd(gdth_ha_str
*ha
, Scsi_Cmnd
*scp
);
167 static int gdth_fill_cache_cmd(gdth_ha_str
*ha
, Scsi_Cmnd
*scp
, u16 hdrive
);
169 static void gdth_enable_int(gdth_ha_str
*ha
);
170 static int gdth_test_busy(gdth_ha_str
*ha
);
171 static int gdth_get_cmd_index(gdth_ha_str
*ha
);
172 static void gdth_release_event(gdth_ha_str
*ha
);
173 static int gdth_wait(gdth_ha_str
*ha
, int index
,u32 time
);
174 static int gdth_internal_cmd(gdth_ha_str
*ha
, u8 service
, u16 opcode
,
175 u32 p1
, u64 p2
,u64 p3
);
176 static int gdth_search_drives(gdth_ha_str
*ha
);
177 static int gdth_analyse_hdrive(gdth_ha_str
*ha
, u16 hdrive
);
179 static const char *gdth_ctr_name(gdth_ha_str
*ha
);
181 static int gdth_open(struct inode
*inode
, struct file
*filep
);
182 static int gdth_close(struct inode
*inode
, struct file
*filep
);
183 static long gdth_unlocked_ioctl(struct file
*filep
, unsigned int cmd
,
186 static void gdth_flush(gdth_ha_str
*ha
);
187 static int gdth_queuecommand(struct Scsi_Host
*h
, struct scsi_cmnd
*cmd
);
188 static int __gdth_queuecommand(gdth_ha_str
*ha
, struct scsi_cmnd
*scp
,
189 struct gdth_cmndinfo
*cmndinfo
);
190 static void gdth_scsi_done(struct scsi_cmnd
*scp
);
193 static u8 DebugState
= DEBUG_GDTH
;
196 #define MAX_SERBUF 160
197 static void ser_init(void);
198 static void ser_puts(char *str
);
199 static void ser_putc(char c
);
200 static int ser_printk(const char *fmt
, ...);
201 static char strbuf
[MAX_SERBUF
+1];
203 #define COM_BASE 0x2f8
205 #define COM_BASE 0x3f8
207 static void ser_init()
209 unsigned port
=COM_BASE
;
213 /* 19200 Baud, if 9600: outb(12,port) */
223 static void ser_puts(char *str
)
228 for (ptr
=str
;*ptr
;++ptr
)
232 static void ser_putc(char c
)
234 unsigned port
=COM_BASE
;
236 while ((inb(port
+5) & 0x20)==0);
240 while ((inb(port
+5) & 0x20)==0);
245 static int ser_printk(const char *fmt
, ...)
251 i
= vsprintf(strbuf
,fmt
,args
);
257 #define TRACE(a) {if (DebugState==1) {ser_printk a;}}
258 #define TRACE2(a) {if (DebugState==1 || DebugState==2) {ser_printk a;}}
259 #define TRACE3(a) {if (DebugState!=0) {ser_printk a;}}
261 #else /* !__SERIAL__ */
262 #define TRACE(a) {if (DebugState==1) {printk a;}}
263 #define TRACE2(a) {if (DebugState==1 || DebugState==2) {printk a;}}
264 #define TRACE3(a) {if (DebugState!=0) {printk a;}}
273 #ifdef GDTH_STATISTICS
274 static u32 max_rq
=0, max_index
=0, max_sg
=0;
276 static u32 max_int_coal
=0;
278 static u32 act_ints
=0, act_ios
=0, act_stats
=0, act_rq
=0;
279 static struct timer_list gdth_timer
;
282 #define PTR2USHORT(a) (u16)(unsigned long)(a)
283 #define GDTOFFSOF(a,b) (size_t)&(((a*)0)->b)
284 #define INDEX_OK(i,t) ((i)<ARRAY_SIZE(t))
286 #define BUS_L2P(a,b) ((b)>(a)->virt_bus ? (b-1):(b))
289 static u8 gdth_drq_tab
[4] = {5,6,7,7}; /* DRQ table */
291 #if defined(CONFIG_EISA) || defined(CONFIG_ISA)
292 static u8 gdth_irq_tab
[6] = {0,10,11,12,14,0}; /* IRQ table */
294 static u8 gdth_polling
; /* polling if TRUE */
295 static int gdth_ctr_count
= 0; /* controller count */
296 static LIST_HEAD(gdth_instances
); /* controller list */
297 static u8 gdth_write_through
= FALSE
; /* write through */
298 static gdth_evt_str ebuffer
[MAX_EVENTS
]; /* event buffer */
303 #define DIN 1 /* IN data direction */
304 #define DOU 2 /* OUT data direction */
305 #define DNO DIN /* no data transfer */
306 #define DUN DIN /* unknown data direction */
307 static u8 gdth_direction_tab
[0x100] = {
308 DNO
,DNO
,DIN
,DIN
,DOU
,DIN
,DIN
,DOU
,DIN
,DUN
,DOU
,DOU
,DUN
,DUN
,DUN
,DIN
,
309 DNO
,DIN
,DIN
,DOU
,DIN
,DOU
,DNO
,DNO
,DOU
,DNO
,DIN
,DNO
,DIN
,DOU
,DNO
,DUN
,
310 DIN
,DUN
,DIN
,DUN
,DOU
,DIN
,DUN
,DUN
,DIN
,DIN
,DOU
,DNO
,DUN
,DIN
,DOU
,DOU
,
311 DOU
,DOU
,DOU
,DNO
,DIN
,DNO
,DNO
,DIN
,DOU
,DOU
,DOU
,DOU
,DIN
,DOU
,DIN
,DOU
,
312 DOU
,DOU
,DIN
,DIN
,DIN
,DNO
,DUN
,DNO
,DNO
,DNO
,DUN
,DNO
,DOU
,DIN
,DUN
,DUN
,
313 DUN
,DUN
,DUN
,DUN
,DUN
,DOU
,DUN
,DUN
,DUN
,DUN
,DIN
,DUN
,DUN
,DUN
,DUN
,DUN
,
314 DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,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
,DIN
,DUN
,DOU
,DUN
,DUN
,DUN
,DUN
,DUN
,
317 DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DIN
,DUN
,
318 DUN
,DUN
,DUN
,DUN
,DUN
,DNO
,DNO
,DUN
,DIN
,DNO
,DOU
,DUN
,DNO
,DUN
,DOU
,DOU
,
319 DOU
,DOU
,DOU
,DNO
,DUN
,DIN
,DOU
,DIN
,DIN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,
320 DUN
,DUN
,DOU
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,
321 DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,
322 DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DOU
,DUN
,DUN
,DUN
,DUN
,DUN
,
323 DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
326 /* LILO and modprobe/insmod parameters */
327 /* IRQ list for GDT3000/3020 EISA controllers */
328 static int irq
[MAXHA
] __initdata
=
329 {0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
330 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff};
331 /* disable driver flag */
332 static int disable __initdata
= 0;
334 static int reserve_mode
= 1;
336 static int reserve_list
[MAX_RES_ARGS
] =
337 {0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
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};
340 /* scan order for PCI controllers */
341 static int reverse_scan
= 0;
342 /* virtual channel for the host drives */
343 static int hdr_channel
= 0;
344 /* max. IDs per channel */
345 static int max_ids
= MAXID
;
347 static int rescan
= 0;
349 static int shared_access
= 1;
350 /* enable support for EISA and ISA controllers */
351 static int probe_eisa_isa
= 0;
352 /* 64 bit DMA mode, support for drives > 2 TB, if force_dma32 = 0 */
353 static int force_dma32
= 0;
355 /* parameters for modprobe/insmod */
356 module_param_array(irq
, int, NULL
, 0);
357 module_param(disable
, int, 0);
358 module_param(reserve_mode
, int, 0);
359 module_param_array(reserve_list
, int, NULL
, 0);
360 module_param(reverse_scan
, int, 0);
361 module_param(hdr_channel
, int, 0);
362 module_param(max_ids
, int, 0);
363 module_param(rescan
, int, 0);
364 module_param(shared_access
, int, 0);
365 module_param(probe_eisa_isa
, int, 0);
366 module_param(force_dma32
, int, 0);
367 MODULE_AUTHOR("Achim Leubner");
368 MODULE_LICENSE("GPL");
370 /* ioctl interface */
371 static const struct file_operations gdth_fops
= {
372 .unlocked_ioctl
= gdth_unlocked_ioctl
,
374 .release
= gdth_close
,
375 .llseek
= noop_llseek
,
378 #include "gdth_proc.h"
379 #include "gdth_proc.c"
381 static gdth_ha_str
*gdth_find_ha(int hanum
)
385 list_for_each_entry(ha
, &gdth_instances
, list
)
386 if (hanum
== ha
->hanum
)
392 static struct gdth_cmndinfo
*gdth_get_cmndinfo(gdth_ha_str
*ha
)
394 struct gdth_cmndinfo
*priv
= NULL
;
398 spin_lock_irqsave(&ha
->smp_lock
, flags
);
400 for (i
=0; i
<GDTH_MAXCMDS
; ++i
) {
401 if (ha
->cmndinfo
[i
].index
== 0) {
402 priv
= &ha
->cmndinfo
[i
];
403 memset(priv
, 0, sizeof(*priv
));
409 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
414 static void gdth_put_cmndinfo(struct gdth_cmndinfo
*priv
)
420 static void gdth_delay(int milliseconds
)
422 if (milliseconds
== 0) {
425 mdelay(milliseconds
);
429 static void gdth_scsi_done(struct scsi_cmnd
*scp
)
431 struct gdth_cmndinfo
*cmndinfo
= gdth_cmnd_priv(scp
);
432 int internal_command
= cmndinfo
->internal_command
;
434 TRACE2(("gdth_scsi_done()\n"));
436 gdth_put_cmndinfo(cmndinfo
);
437 scp
->host_scribble
= NULL
;
439 if (internal_command
)
440 complete((struct completion
*)scp
->request
);
445 int __gdth_execute(struct scsi_device
*sdev
, gdth_cmd_str
*gdtcmd
, char *cmnd
,
446 int timeout
, u32
*info
)
448 gdth_ha_str
*ha
= shost_priv(sdev
->host
);
450 struct gdth_cmndinfo cmndinfo
;
451 DECLARE_COMPLETION_ONSTACK(wait
);
454 scp
= kzalloc(sizeof(*scp
), GFP_KERNEL
);
458 scp
->sense_buffer
= kzalloc(SCSI_SENSE_BUFFERSIZE
, GFP_KERNEL
);
459 if (!scp
->sense_buffer
) {
465 memset(&cmndinfo
, 0, sizeof(cmndinfo
));
467 /* use request field to save the ptr. to completion struct. */
468 scp
->request
= (struct request
*)&wait
;
471 cmndinfo
.priority
= IOCTL_PRI
;
472 cmndinfo
.internal_cmd_str
= gdtcmd
;
473 cmndinfo
.internal_command
= 1;
475 TRACE(("__gdth_execute() cmd 0x%x\n", scp
->cmnd
[0]));
476 __gdth_queuecommand(ha
, scp
, &cmndinfo
);
478 wait_for_completion(&wait
);
480 rval
= cmndinfo
.status
;
482 *info
= cmndinfo
.info
;
483 kfree(scp
->sense_buffer
);
488 int gdth_execute(struct Scsi_Host
*shost
, gdth_cmd_str
*gdtcmd
, char *cmnd
,
489 int timeout
, u32
*info
)
491 struct scsi_device
*sdev
= scsi_get_host_dev(shost
);
492 int rval
= __gdth_execute(sdev
, gdtcmd
, cmnd
, timeout
, info
);
494 scsi_free_host_dev(sdev
);
498 static void gdth_eval_mapping(u32 size
, u32
*cyls
, int *heads
, int *secs
)
500 *cyls
= size
/HEADS
/SECS
;
501 if (*cyls
<= MAXCYLS
) {
504 } else { /* too high for 64*32 */
505 *cyls
= size
/MEDHEADS
/MEDSECS
;
506 if (*cyls
<= MAXCYLS
) {
509 } else { /* too high for 127*63 */
510 *cyls
= size
/BIGHEADS
/BIGSECS
;
517 /* controller search and initialization functions */
519 static int __init
gdth_search_eisa(u16 eisa_adr
)
523 TRACE(("gdth_search_eisa() adr. %x\n",eisa_adr
));
524 id
= inl(eisa_adr
+ID0REG
);
525 if (id
== GDT3A_ID
|| id
== GDT3B_ID
) { /* GDT3000A or GDT3000B */
526 if ((inb(eisa_adr
+EISAREG
) & 8) == 0)
527 return 0; /* not EISA configured */
530 if (id
== GDT3_ID
) /* GDT3000 */
535 #endif /* CONFIG_EISA */
538 static int __init
gdth_search_isa(u32 bios_adr
)
543 TRACE(("gdth_search_isa() bios adr. %x\n",bios_adr
));
544 if ((addr
= ioremap(bios_adr
+BIOS_ID_OFFS
, sizeof(u32
))) != NULL
) {
547 if (id
== GDT2_ID
) /* GDT2000 */
552 #endif /* CONFIG_ISA */
556 static bool gdth_search_vortex(u16 device
)
558 if (device
<= PCI_DEVICE_ID_VORTEX_GDT6555
)
560 if (device
>= PCI_DEVICE_ID_VORTEX_GDT6x17RP
&&
561 device
<= PCI_DEVICE_ID_VORTEX_GDTMAXRP
)
563 if (device
== PCI_DEVICE_ID_VORTEX_GDTNEWRX
||
564 device
== PCI_DEVICE_ID_VORTEX_GDTNEWRX2
)
569 static int gdth_pci_probe_one(gdth_pci_str
*pcistr
, gdth_ha_str
**ha_out
);
570 static int gdth_pci_init_one(struct pci_dev
*pdev
,
571 const struct pci_device_id
*ent
);
572 static void gdth_pci_remove_one(struct pci_dev
*pdev
);
573 static void gdth_remove_one(gdth_ha_str
*ha
);
575 /* Vortex only makes RAID controllers.
576 * We do not really want to specify all 550 ids here, so wildcard match.
578 static const struct pci_device_id gdthtable
[] = {
579 { PCI_VDEVICE(VORTEX
, PCI_ANY_ID
) },
580 { PCI_VDEVICE(INTEL
, PCI_DEVICE_ID_INTEL_SRC
) },
581 { PCI_VDEVICE(INTEL
, PCI_DEVICE_ID_INTEL_SRC_XSCALE
) },
582 { } /* terminate list */
584 MODULE_DEVICE_TABLE(pci
, gdthtable
);
586 static struct pci_driver gdth_pci_driver
= {
588 .id_table
= gdthtable
,
589 .probe
= gdth_pci_init_one
,
590 .remove
= gdth_pci_remove_one
,
593 static void gdth_pci_remove_one(struct pci_dev
*pdev
)
595 gdth_ha_str
*ha
= pci_get_drvdata(pdev
);
597 pci_set_drvdata(pdev
, NULL
);
602 pci_disable_device(pdev
);
605 static int gdth_pci_init_one(struct pci_dev
*pdev
,
606 const struct pci_device_id
*ent
)
608 u16 vendor
= pdev
->vendor
;
609 u16 device
= pdev
->device
;
610 unsigned long base0
, base1
, base2
;
612 gdth_pci_str gdth_pcistr
;
613 gdth_ha_str
*ha
= NULL
;
615 TRACE(("gdth_search_dev() cnt %d vendor %x device %x\n",
616 gdth_ctr_count
, vendor
, device
));
618 memset(&gdth_pcistr
, 0, sizeof(gdth_pcistr
));
620 if (vendor
== PCI_VENDOR_ID_VORTEX
&& !gdth_search_vortex(device
))
623 rc
= pci_enable_device(pdev
);
627 if (gdth_ctr_count
>= MAXHA
)
630 /* GDT PCI controller found, resources are already in pdev */
631 gdth_pcistr
.pdev
= pdev
;
632 base0
= pci_resource_flags(pdev
, 0);
633 base1
= pci_resource_flags(pdev
, 1);
634 base2
= pci_resource_flags(pdev
, 2);
635 if (device
<= PCI_DEVICE_ID_VORTEX_GDT6000B
|| /* GDT6000/B */
636 device
>= PCI_DEVICE_ID_VORTEX_GDT6x17RP
) { /* MPR */
637 if (!(base0
& IORESOURCE_MEM
))
639 gdth_pcistr
.dpmem
= pci_resource_start(pdev
, 0);
640 } else { /* GDT6110, GDT6120, .. */
641 if (!(base0
& IORESOURCE_MEM
) ||
642 !(base2
& IORESOURCE_MEM
) ||
643 !(base1
& IORESOURCE_IO
))
645 gdth_pcistr
.dpmem
= pci_resource_start(pdev
, 2);
646 gdth_pcistr
.io
= pci_resource_start(pdev
, 1);
648 TRACE2(("Controller found at %d/%d, irq %d, dpmem 0x%lx\n",
649 gdth_pcistr
.pdev
->bus
->number
,
650 PCI_SLOT(gdth_pcistr
.pdev
->devfn
),
654 rc
= gdth_pci_probe_one(&gdth_pcistr
, &ha
);
660 #endif /* CONFIG_PCI */
663 static int __init
gdth_init_eisa(u16 eisa_adr
,gdth_ha_str
*ha
)
666 u8 prot_ver
,eisacf
,i
,irq_found
;
668 TRACE(("gdth_init_eisa() adr. %x\n",eisa_adr
));
670 /* disable board interrupts, deinitialize services */
671 outb(0xff,eisa_adr
+EDOORREG
);
672 outb(0x00,eisa_adr
+EDENABREG
);
673 outb(0x00,eisa_adr
+EINTENABREG
);
675 outb(0xff,eisa_adr
+LDOORREG
);
676 retries
= INIT_RETRIES
;
678 while (inb(eisa_adr
+EDOORREG
) != 0xff) {
679 if (--retries
== 0) {
680 printk("GDT-EISA: Initialization error (DEINIT failed)\n");
684 TRACE2(("wait for DEINIT: retries=%d\n",retries
));
686 prot_ver
= inb(eisa_adr
+MAILBOXREG
);
687 outb(0xff,eisa_adr
+EDOORREG
);
688 if (prot_ver
!= PROTOCOL_VERSION
) {
689 printk("GDT-EISA: Illegal protocol version\n");
693 ha
->brd_phys
= (u32
)eisa_adr
>> 12;
695 outl(0,eisa_adr
+MAILBOXREG
);
696 outl(0,eisa_adr
+MAILBOXREG
+4);
697 outl(0,eisa_adr
+MAILBOXREG
+8);
698 outl(0,eisa_adr
+MAILBOXREG
+12);
701 if ((id
= inl(eisa_adr
+ID0REG
)) == GDT3_ID
) {
702 ha
->oem_id
= OEM_ID_ICP
;
705 outl(1,eisa_adr
+MAILBOXREG
+8);
706 outb(0xfe,eisa_adr
+LDOORREG
);
707 retries
= INIT_RETRIES
;
709 while (inb(eisa_adr
+EDOORREG
) != 0xfe) {
710 if (--retries
== 0) {
711 printk("GDT-EISA: Initialization error (get IRQ failed)\n");
716 ha
->irq
= inb(eisa_adr
+MAILBOXREG
);
717 outb(0xff,eisa_adr
+EDOORREG
);
718 TRACE2(("GDT3000/3020: IRQ=%d\n",ha
->irq
));
719 /* check the result */
721 TRACE2(("Unknown IRQ, use IRQ table from cmd line !\n"));
722 for (i
= 0, irq_found
= FALSE
;
723 i
< MAXHA
&& irq
[i
] != 0xff; ++i
) {
724 if (irq
[i
]==10 || irq
[i
]==11 || irq
[i
]==12 || irq
[i
]==14) {
732 printk("GDT-EISA: Can not detect controller IRQ,\n");
733 printk("Use IRQ setting from command line (IRQ = %d)\n",
736 printk("GDT-EISA: Initialization error (unknown IRQ), Enable\n");
737 printk("the controller BIOS or use command line parameters\n");
742 eisacf
= inb(eisa_adr
+EISAREG
) & 7;
743 if (eisacf
> 4) /* level triggered */
745 ha
->irq
= gdth_irq_tab
[eisacf
];
746 ha
->oem_id
= OEM_ID_ICP
;
751 ha
->dma64_support
= 0;
754 #endif /* CONFIG_EISA */
757 static int __init
gdth_init_isa(u32 bios_adr
,gdth_ha_str
*ha
)
759 register gdt2_dpram_str __iomem
*dp2_ptr
;
764 TRACE(("gdth_init_isa() bios adr. %x\n",bios_adr
));
766 ha
->brd
= ioremap(bios_adr
, sizeof(gdt2_dpram_str
));
767 if (ha
->brd
== NULL
) {
768 printk("GDT-ISA: Initialization error (DPMEM remap error)\n");
772 writeb(1, &dp2_ptr
->io
.memlock
); /* switch off write protection */
773 /* reset interface area */
774 memset_io(&dp2_ptr
->u
, 0, sizeof(dp2_ptr
->u
));
775 if (readl(&dp2_ptr
->u
) != 0) {
776 printk("GDT-ISA: Initialization error (DPMEM write error)\n");
781 /* disable board interrupts, read DRQ and IRQ */
782 writeb(0xff, &dp2_ptr
->io
.irqdel
);
783 writeb(0x00, &dp2_ptr
->io
.irqen
);
784 writeb(0x00, &dp2_ptr
->u
.ic
.S_Status
);
785 writeb(0x00, &dp2_ptr
->u
.ic
.Cmd_Index
);
787 irq_drq
= readb(&dp2_ptr
->io
.rq
);
788 for (i
=0; i
<3; ++i
) {
789 if ((irq_drq
& 1)==0)
793 ha
->drq
= gdth_drq_tab
[i
];
795 irq_drq
= readb(&dp2_ptr
->io
.rq
) >> 3;
796 for (i
=1; i
<5; ++i
) {
797 if ((irq_drq
& 1)==0)
801 ha
->irq
= gdth_irq_tab
[i
];
803 /* deinitialize services */
804 writel(bios_adr
, &dp2_ptr
->u
.ic
.S_Info
[0]);
805 writeb(0xff, &dp2_ptr
->u
.ic
.S_Cmd_Indx
);
806 writeb(0, &dp2_ptr
->io
.event
);
807 retries
= INIT_RETRIES
;
809 while (readb(&dp2_ptr
->u
.ic
.S_Status
) != 0xff) {
810 if (--retries
== 0) {
811 printk("GDT-ISA: Initialization error (DEINIT failed)\n");
817 prot_ver
= (u8
)readl(&dp2_ptr
->u
.ic
.S_Info
[0]);
818 writeb(0, &dp2_ptr
->u
.ic
.Status
);
819 writeb(0xff, &dp2_ptr
->io
.irqdel
);
820 if (prot_ver
!= PROTOCOL_VERSION
) {
821 printk("GDT-ISA: Illegal protocol version\n");
826 ha
->oem_id
= OEM_ID_ICP
;
828 ha
->ic_all_size
= sizeof(dp2_ptr
->u
);
830 ha
->brd_phys
= bios_adr
>> 4;
832 /* special request to controller BIOS */
833 writel(0x00, &dp2_ptr
->u
.ic
.S_Info
[0]);
834 writel(0x00, &dp2_ptr
->u
.ic
.S_Info
[1]);
835 writel(0x01, &dp2_ptr
->u
.ic
.S_Info
[2]);
836 writel(0x00, &dp2_ptr
->u
.ic
.S_Info
[3]);
837 writeb(0xfe, &dp2_ptr
->u
.ic
.S_Cmd_Indx
);
838 writeb(0, &dp2_ptr
->io
.event
);
839 retries
= INIT_RETRIES
;
841 while (readb(&dp2_ptr
->u
.ic
.S_Status
) != 0xfe) {
842 if (--retries
== 0) {
843 printk("GDT-ISA: Initialization error\n");
849 writeb(0, &dp2_ptr
->u
.ic
.Status
);
850 writeb(0xff, &dp2_ptr
->io
.irqdel
);
852 ha
->dma64_support
= 0;
855 #endif /* CONFIG_ISA */
858 static int gdth_init_pci(struct pci_dev
*pdev
, gdth_pci_str
*pcistr
,
861 register gdt6_dpram_str __iomem
*dp6_ptr
;
862 register gdt6c_dpram_str __iomem
*dp6c_ptr
;
863 register gdt6m_dpram_str __iomem
*dp6m_ptr
;
867 int i
, found
= FALSE
;
869 TRACE(("gdth_init_pci()\n"));
871 if (pdev
->vendor
== PCI_VENDOR_ID_INTEL
)
872 ha
->oem_id
= OEM_ID_INTEL
;
874 ha
->oem_id
= OEM_ID_ICP
;
875 ha
->brd_phys
= (pdev
->bus
->number
<< 8) | (pdev
->devfn
& 0xf8);
876 ha
->stype
= (u32
)pdev
->device
;
880 if (ha
->pdev
->device
<= PCI_DEVICE_ID_VORTEX_GDT6000B
) { /* GDT6000/B */
881 TRACE2(("init_pci() dpmem %lx irq %d\n",pcistr
->dpmem
,ha
->irq
));
882 ha
->brd
= ioremap(pcistr
->dpmem
, sizeof(gdt6_dpram_str
));
883 if (ha
->brd
== NULL
) {
884 printk("GDT-PCI: Initialization error (DPMEM remap error)\n");
887 /* check and reset interface area */
889 writel(DPMEM_MAGIC
, &dp6_ptr
->u
);
890 if (readl(&dp6_ptr
->u
) != DPMEM_MAGIC
) {
891 printk("GDT-PCI: Cannot access DPMEM at 0x%lx (shadowed?)\n",
894 for (i
= 0xC8000; i
< 0xE8000; i
+= 0x4000) {
896 ha
->brd
= ioremap(i
, sizeof(u16
));
897 if (ha
->brd
== NULL
) {
898 printk("GDT-PCI: Initialization error (DPMEM remap error)\n");
901 if (readw(ha
->brd
) != 0xffff) {
902 TRACE2(("init_pci_old() address 0x%x busy\n", i
));
906 pci_write_config_dword(pdev
, PCI_BASE_ADDRESS_0
, i
);
907 ha
->brd
= ioremap(i
, sizeof(gdt6_dpram_str
));
908 if (ha
->brd
== NULL
) {
909 printk("GDT-PCI: Initialization error (DPMEM remap error)\n");
913 writel(DPMEM_MAGIC
, &dp6_ptr
->u
);
914 if (readl(&dp6_ptr
->u
) == DPMEM_MAGIC
) {
915 printk("GDT-PCI: Use free address at 0x%x\n", i
);
921 printk("GDT-PCI: No free address found!\n");
926 memset_io(&dp6_ptr
->u
, 0, sizeof(dp6_ptr
->u
));
927 if (readl(&dp6_ptr
->u
) != 0) {
928 printk("GDT-PCI: Initialization error (DPMEM write error)\n");
933 /* disable board interrupts, deinit services */
934 writeb(0xff, &dp6_ptr
->io
.irqdel
);
935 writeb(0x00, &dp6_ptr
->io
.irqen
);
936 writeb(0x00, &dp6_ptr
->u
.ic
.S_Status
);
937 writeb(0x00, &dp6_ptr
->u
.ic
.Cmd_Index
);
939 writel(pcistr
->dpmem
, &dp6_ptr
->u
.ic
.S_Info
[0]);
940 writeb(0xff, &dp6_ptr
->u
.ic
.S_Cmd_Indx
);
941 writeb(0, &dp6_ptr
->io
.event
);
942 retries
= INIT_RETRIES
;
944 while (readb(&dp6_ptr
->u
.ic
.S_Status
) != 0xff) {
945 if (--retries
== 0) {
946 printk("GDT-PCI: Initialization error (DEINIT failed)\n");
952 prot_ver
= (u8
)readl(&dp6_ptr
->u
.ic
.S_Info
[0]);
953 writeb(0, &dp6_ptr
->u
.ic
.S_Status
);
954 writeb(0xff, &dp6_ptr
->io
.irqdel
);
955 if (prot_ver
!= PROTOCOL_VERSION
) {
956 printk("GDT-PCI: Illegal protocol version\n");
962 ha
->ic_all_size
= sizeof(dp6_ptr
->u
);
964 /* special command to controller BIOS */
965 writel(0x00, &dp6_ptr
->u
.ic
.S_Info
[0]);
966 writel(0x00, &dp6_ptr
->u
.ic
.S_Info
[1]);
967 writel(0x00, &dp6_ptr
->u
.ic
.S_Info
[2]);
968 writel(0x00, &dp6_ptr
->u
.ic
.S_Info
[3]);
969 writeb(0xfe, &dp6_ptr
->u
.ic
.S_Cmd_Indx
);
970 writeb(0, &dp6_ptr
->io
.event
);
971 retries
= INIT_RETRIES
;
973 while (readb(&dp6_ptr
->u
.ic
.S_Status
) != 0xfe) {
974 if (--retries
== 0) {
975 printk("GDT-PCI: Initialization error\n");
981 writeb(0, &dp6_ptr
->u
.ic
.S_Status
);
982 writeb(0xff, &dp6_ptr
->io
.irqdel
);
984 ha
->dma64_support
= 0;
986 } else if (ha
->pdev
->device
<= PCI_DEVICE_ID_VORTEX_GDT6555
) { /* GDT6110, ... */
987 ha
->plx
= (gdt6c_plx_regs
*)pcistr
->io
;
988 TRACE2(("init_pci_new() dpmem %lx irq %d\n",
989 pcistr
->dpmem
,ha
->irq
));
990 ha
->brd
= ioremap(pcistr
->dpmem
, sizeof(gdt6c_dpram_str
));
991 if (ha
->brd
== NULL
) {
992 printk("GDT-PCI: Initialization error (DPMEM remap error)\n");
996 /* check and reset interface area */
998 writel(DPMEM_MAGIC
, &dp6c_ptr
->u
);
999 if (readl(&dp6c_ptr
->u
) != DPMEM_MAGIC
) {
1000 printk("GDT-PCI: Cannot access DPMEM at 0x%lx (shadowed?)\n",
1003 for (i
= 0xC8000; i
< 0xE8000; i
+= 0x4000) {
1005 ha
->brd
= ioremap(i
, sizeof(u16
));
1006 if (ha
->brd
== NULL
) {
1007 printk("GDT-PCI: Initialization error (DPMEM remap error)\n");
1010 if (readw(ha
->brd
) != 0xffff) {
1011 TRACE2(("init_pci_plx() address 0x%x busy\n", i
));
1015 pci_write_config_dword(pdev
, PCI_BASE_ADDRESS_2
, i
);
1016 ha
->brd
= ioremap(i
, sizeof(gdt6c_dpram_str
));
1017 if (ha
->brd
== NULL
) {
1018 printk("GDT-PCI: Initialization error (DPMEM remap error)\n");
1022 writel(DPMEM_MAGIC
, &dp6c_ptr
->u
);
1023 if (readl(&dp6c_ptr
->u
) == DPMEM_MAGIC
) {
1024 printk("GDT-PCI: Use free address at 0x%x\n", i
);
1030 printk("GDT-PCI: No free address found!\n");
1035 memset_io(&dp6c_ptr
->u
, 0, sizeof(dp6c_ptr
->u
));
1036 if (readl(&dp6c_ptr
->u
) != 0) {
1037 printk("GDT-PCI: Initialization error (DPMEM write error)\n");
1042 /* disable board interrupts, deinit services */
1043 outb(0x00,PTR2USHORT(&ha
->plx
->control1
));
1044 outb(0xff,PTR2USHORT(&ha
->plx
->edoor_reg
));
1046 writeb(0x00, &dp6c_ptr
->u
.ic
.S_Status
);
1047 writeb(0x00, &dp6c_ptr
->u
.ic
.Cmd_Index
);
1049 writel(pcistr
->dpmem
, &dp6c_ptr
->u
.ic
.S_Info
[0]);
1050 writeb(0xff, &dp6c_ptr
->u
.ic
.S_Cmd_Indx
);
1052 outb(1,PTR2USHORT(&ha
->plx
->ldoor_reg
));
1054 retries
= INIT_RETRIES
;
1056 while (readb(&dp6c_ptr
->u
.ic
.S_Status
) != 0xff) {
1057 if (--retries
== 0) {
1058 printk("GDT-PCI: Initialization error (DEINIT failed)\n");
1064 prot_ver
= (u8
)readl(&dp6c_ptr
->u
.ic
.S_Info
[0]);
1065 writeb(0, &dp6c_ptr
->u
.ic
.Status
);
1066 if (prot_ver
!= PROTOCOL_VERSION
) {
1067 printk("GDT-PCI: Illegal protocol version\n");
1072 ha
->type
= GDT_PCINEW
;
1073 ha
->ic_all_size
= sizeof(dp6c_ptr
->u
);
1075 /* special command to controller BIOS */
1076 writel(0x00, &dp6c_ptr
->u
.ic
.S_Info
[0]);
1077 writel(0x00, &dp6c_ptr
->u
.ic
.S_Info
[1]);
1078 writel(0x00, &dp6c_ptr
->u
.ic
.S_Info
[2]);
1079 writel(0x00, &dp6c_ptr
->u
.ic
.S_Info
[3]);
1080 writeb(0xfe, &dp6c_ptr
->u
.ic
.S_Cmd_Indx
);
1082 outb(1,PTR2USHORT(&ha
->plx
->ldoor_reg
));
1084 retries
= INIT_RETRIES
;
1086 while (readb(&dp6c_ptr
->u
.ic
.S_Status
) != 0xfe) {
1087 if (--retries
== 0) {
1088 printk("GDT-PCI: Initialization error\n");
1094 writeb(0, &dp6c_ptr
->u
.ic
.S_Status
);
1096 ha
->dma64_support
= 0;
1099 TRACE2(("init_pci_mpr() dpmem %lx irq %d\n",pcistr
->dpmem
,ha
->irq
));
1100 ha
->brd
= ioremap(pcistr
->dpmem
, sizeof(gdt6m_dpram_str
));
1101 if (ha
->brd
== NULL
) {
1102 printk("GDT-PCI: Initialization error (DPMEM remap error)\n");
1106 /* manipulate config. space to enable DPMEM, start RP controller */
1107 pci_read_config_word(pdev
, PCI_COMMAND
, &command
);
1109 pci_write_config_word(pdev
, PCI_COMMAND
, command
);
1114 /* Ensure that it is safe to access the non HW portions of DPMEM.
1115 * Aditional check needed for Xscale based RAID controllers */
1116 while( ((int)readb(&dp6m_ptr
->i960r
.sema0_reg
) ) & 3 )
1119 /* check and reset interface area */
1120 writel(DPMEM_MAGIC
, &dp6m_ptr
->u
);
1121 if (readl(&dp6m_ptr
->u
) != DPMEM_MAGIC
) {
1122 printk("GDT-PCI: Cannot access DPMEM at 0x%lx (shadowed?)\n",
1125 for (i
= 0xC8000; i
< 0xE8000; i
+= 0x4000) {
1127 ha
->brd
= ioremap(i
, sizeof(u16
));
1128 if (ha
->brd
== NULL
) {
1129 printk("GDT-PCI: Initialization error (DPMEM remap error)\n");
1132 if (readw(ha
->brd
) != 0xffff) {
1133 TRACE2(("init_pci_mpr() address 0x%x busy\n", i
));
1137 pci_write_config_dword(pdev
, PCI_BASE_ADDRESS_0
, i
);
1138 ha
->brd
= ioremap(i
, sizeof(gdt6m_dpram_str
));
1139 if (ha
->brd
== NULL
) {
1140 printk("GDT-PCI: Initialization error (DPMEM remap error)\n");
1144 writel(DPMEM_MAGIC
, &dp6m_ptr
->u
);
1145 if (readl(&dp6m_ptr
->u
) == DPMEM_MAGIC
) {
1146 printk("GDT-PCI: Use free address at 0x%x\n", i
);
1152 printk("GDT-PCI: No free address found!\n");
1157 memset_io(&dp6m_ptr
->u
, 0, sizeof(dp6m_ptr
->u
));
1159 /* disable board interrupts, deinit services */
1160 writeb(readb(&dp6m_ptr
->i960r
.edoor_en_reg
) | 4,
1161 &dp6m_ptr
->i960r
.edoor_en_reg
);
1162 writeb(0xff, &dp6m_ptr
->i960r
.edoor_reg
);
1163 writeb(0x00, &dp6m_ptr
->u
.ic
.S_Status
);
1164 writeb(0x00, &dp6m_ptr
->u
.ic
.Cmd_Index
);
1166 writel(pcistr
->dpmem
, &dp6m_ptr
->u
.ic
.S_Info
[0]);
1167 writeb(0xff, &dp6m_ptr
->u
.ic
.S_Cmd_Indx
);
1168 writeb(1, &dp6m_ptr
->i960r
.ldoor_reg
);
1169 retries
= INIT_RETRIES
;
1171 while (readb(&dp6m_ptr
->u
.ic
.S_Status
) != 0xff) {
1172 if (--retries
== 0) {
1173 printk("GDT-PCI: Initialization error (DEINIT failed)\n");
1179 prot_ver
= (u8
)readl(&dp6m_ptr
->u
.ic
.S_Info
[0]);
1180 writeb(0, &dp6m_ptr
->u
.ic
.S_Status
);
1181 if (prot_ver
!= PROTOCOL_VERSION
) {
1182 printk("GDT-PCI: Illegal protocol version\n");
1187 ha
->type
= GDT_PCIMPR
;
1188 ha
->ic_all_size
= sizeof(dp6m_ptr
->u
);
1190 /* special command to controller BIOS */
1191 writel(0x00, &dp6m_ptr
->u
.ic
.S_Info
[0]);
1192 writel(0x00, &dp6m_ptr
->u
.ic
.S_Info
[1]);
1193 writel(0x00, &dp6m_ptr
->u
.ic
.S_Info
[2]);
1194 writel(0x00, &dp6m_ptr
->u
.ic
.S_Info
[3]);
1195 writeb(0xfe, &dp6m_ptr
->u
.ic
.S_Cmd_Indx
);
1196 writeb(1, &dp6m_ptr
->i960r
.ldoor_reg
);
1197 retries
= INIT_RETRIES
;
1199 while (readb(&dp6m_ptr
->u
.ic
.S_Status
) != 0xfe) {
1200 if (--retries
== 0) {
1201 printk("GDT-PCI: Initialization error\n");
1207 writeb(0, &dp6m_ptr
->u
.ic
.S_Status
);
1209 /* read FW version to detect 64-bit DMA support */
1210 writeb(0xfd, &dp6m_ptr
->u
.ic
.S_Cmd_Indx
);
1211 writeb(1, &dp6m_ptr
->i960r
.ldoor_reg
);
1212 retries
= INIT_RETRIES
;
1214 while (readb(&dp6m_ptr
->u
.ic
.S_Status
) != 0xfd) {
1215 if (--retries
== 0) {
1216 printk("GDT-PCI: Initialization error (DEINIT failed)\n");
1222 prot_ver
= (u8
)(readl(&dp6m_ptr
->u
.ic
.S_Info
[0]) >> 16);
1223 writeb(0, &dp6m_ptr
->u
.ic
.S_Status
);
1224 if (prot_ver
< 0x2b) /* FW < x.43: no 64-bit DMA support */
1225 ha
->dma64_support
= 0;
1227 ha
->dma64_support
= 1;
1232 #endif /* CONFIG_PCI */
1234 /* controller protocol functions */
1236 static void gdth_enable_int(gdth_ha_str
*ha
)
1238 unsigned long flags
;
1239 gdt2_dpram_str __iomem
*dp2_ptr
;
1240 gdt6_dpram_str __iomem
*dp6_ptr
;
1241 gdt6m_dpram_str __iomem
*dp6m_ptr
;
1243 TRACE(("gdth_enable_int() hanum %d\n",ha
->hanum
));
1244 spin_lock_irqsave(&ha
->smp_lock
, flags
);
1246 if (ha
->type
== GDT_EISA
) {
1247 outb(0xff, ha
->bmic
+ EDOORREG
);
1248 outb(0xff, ha
->bmic
+ EDENABREG
);
1249 outb(0x01, ha
->bmic
+ EINTENABREG
);
1250 } else if (ha
->type
== GDT_ISA
) {
1252 writeb(1, &dp2_ptr
->io
.irqdel
);
1253 writeb(0, &dp2_ptr
->u
.ic
.Cmd_Index
);
1254 writeb(1, &dp2_ptr
->io
.irqen
);
1255 } else if (ha
->type
== GDT_PCI
) {
1257 writeb(1, &dp6_ptr
->io
.irqdel
);
1258 writeb(0, &dp6_ptr
->u
.ic
.Cmd_Index
);
1259 writeb(1, &dp6_ptr
->io
.irqen
);
1260 } else if (ha
->type
== GDT_PCINEW
) {
1261 outb(0xff, PTR2USHORT(&ha
->plx
->edoor_reg
));
1262 outb(0x03, PTR2USHORT(&ha
->plx
->control1
));
1263 } else if (ha
->type
== GDT_PCIMPR
) {
1265 writeb(0xff, &dp6m_ptr
->i960r
.edoor_reg
);
1266 writeb(readb(&dp6m_ptr
->i960r
.edoor_en_reg
) & ~4,
1267 &dp6m_ptr
->i960r
.edoor_en_reg
);
1269 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
1272 /* return IStatus if interrupt was from this card else 0 */
1273 static u8
gdth_get_status(gdth_ha_str
*ha
)
1277 TRACE(("gdth_get_status() irq %d ctr_count %d\n", ha
->irq
, gdth_ctr_count
));
1279 if (ha
->type
== GDT_EISA
)
1280 IStatus
= inb((u16
)ha
->bmic
+ EDOORREG
);
1281 else if (ha
->type
== GDT_ISA
)
1283 readb(&((gdt2_dpram_str __iomem
*)ha
->brd
)->u
.ic
.Cmd_Index
);
1284 else if (ha
->type
== GDT_PCI
)
1286 readb(&((gdt6_dpram_str __iomem
*)ha
->brd
)->u
.ic
.Cmd_Index
);
1287 else if (ha
->type
== GDT_PCINEW
)
1288 IStatus
= inb(PTR2USHORT(&ha
->plx
->edoor_reg
));
1289 else if (ha
->type
== GDT_PCIMPR
)
1291 readb(&((gdt6m_dpram_str __iomem
*)ha
->brd
)->i960r
.edoor_reg
);
1296 static int gdth_test_busy(gdth_ha_str
*ha
)
1298 register int gdtsema0
= 0;
1300 TRACE(("gdth_test_busy() hanum %d\n", ha
->hanum
));
1302 if (ha
->type
== GDT_EISA
)
1303 gdtsema0
= (int)inb(ha
->bmic
+ SEMA0REG
);
1304 else if (ha
->type
== GDT_ISA
)
1305 gdtsema0
= (int)readb(&((gdt2_dpram_str __iomem
*)ha
->brd
)->u
.ic
.Sema0
);
1306 else if (ha
->type
== GDT_PCI
)
1307 gdtsema0
= (int)readb(&((gdt6_dpram_str __iomem
*)ha
->brd
)->u
.ic
.Sema0
);
1308 else if (ha
->type
== GDT_PCINEW
)
1309 gdtsema0
= (int)inb(PTR2USHORT(&ha
->plx
->sema0_reg
));
1310 else if (ha
->type
== GDT_PCIMPR
)
1312 (int)readb(&((gdt6m_dpram_str __iomem
*)ha
->brd
)->i960r
.sema0_reg
);
1314 return (gdtsema0
& 1);
1318 static int gdth_get_cmd_index(gdth_ha_str
*ha
)
1322 TRACE(("gdth_get_cmd_index() hanum %d\n", ha
->hanum
));
1324 for (i
=0; i
<GDTH_MAXCMDS
; ++i
) {
1325 if (ha
->cmd_tab
[i
].cmnd
== UNUSED_CMND
) {
1326 ha
->cmd_tab
[i
].cmnd
= ha
->pccb
->RequestBuffer
;
1327 ha
->cmd_tab
[i
].service
= ha
->pccb
->Service
;
1328 ha
->pccb
->CommandIndex
= (u32
)i
+2;
1336 static void gdth_set_sema0(gdth_ha_str
*ha
)
1338 TRACE(("gdth_set_sema0() hanum %d\n", ha
->hanum
));
1340 if (ha
->type
== GDT_EISA
) {
1341 outb(1, ha
->bmic
+ SEMA0REG
);
1342 } else if (ha
->type
== GDT_ISA
) {
1343 writeb(1, &((gdt2_dpram_str __iomem
*)ha
->brd
)->u
.ic
.Sema0
);
1344 } else if (ha
->type
== GDT_PCI
) {
1345 writeb(1, &((gdt6_dpram_str __iomem
*)ha
->brd
)->u
.ic
.Sema0
);
1346 } else if (ha
->type
== GDT_PCINEW
) {
1347 outb(1, PTR2USHORT(&ha
->plx
->sema0_reg
));
1348 } else if (ha
->type
== GDT_PCIMPR
) {
1349 writeb(1, &((gdt6m_dpram_str __iomem
*)ha
->brd
)->i960r
.sema0_reg
);
1354 static void gdth_copy_command(gdth_ha_str
*ha
)
1356 register gdth_cmd_str
*cmd_ptr
;
1357 register gdt6m_dpram_str __iomem
*dp6m_ptr
;
1358 register gdt6c_dpram_str __iomem
*dp6c_ptr
;
1359 gdt6_dpram_str __iomem
*dp6_ptr
;
1360 gdt2_dpram_str __iomem
*dp2_ptr
;
1361 u16 cp_count
,dp_offset
,cmd_no
;
1363 TRACE(("gdth_copy_command() hanum %d\n", ha
->hanum
));
1365 cp_count
= ha
->cmd_len
;
1366 dp_offset
= ha
->cmd_offs_dpmem
;
1367 cmd_no
= ha
->cmd_cnt
;
1371 if (ha
->type
== GDT_EISA
)
1372 return; /* no DPMEM, no copy */
1374 /* set cpcount dword aligned */
1376 cp_count
+= (4 - (cp_count
& 3));
1378 ha
->cmd_offs_dpmem
+= cp_count
;
1380 /* set offset and service, copy command to DPMEM */
1381 if (ha
->type
== GDT_ISA
) {
1383 writew(dp_offset
+ DPMEM_COMMAND_OFFSET
,
1384 &dp2_ptr
->u
.ic
.comm_queue
[cmd_no
].offset
);
1385 writew((u16
)cmd_ptr
->Service
,
1386 &dp2_ptr
->u
.ic
.comm_queue
[cmd_no
].serv_id
);
1387 memcpy_toio(&dp2_ptr
->u
.ic
.gdt_dpr_cmd
[dp_offset
],cmd_ptr
,cp_count
);
1388 } else if (ha
->type
== GDT_PCI
) {
1390 writew(dp_offset
+ DPMEM_COMMAND_OFFSET
,
1391 &dp6_ptr
->u
.ic
.comm_queue
[cmd_no
].offset
);
1392 writew((u16
)cmd_ptr
->Service
,
1393 &dp6_ptr
->u
.ic
.comm_queue
[cmd_no
].serv_id
);
1394 memcpy_toio(&dp6_ptr
->u
.ic
.gdt_dpr_cmd
[dp_offset
],cmd_ptr
,cp_count
);
1395 } else if (ha
->type
== GDT_PCINEW
) {
1397 writew(dp_offset
+ DPMEM_COMMAND_OFFSET
,
1398 &dp6c_ptr
->u
.ic
.comm_queue
[cmd_no
].offset
);
1399 writew((u16
)cmd_ptr
->Service
,
1400 &dp6c_ptr
->u
.ic
.comm_queue
[cmd_no
].serv_id
);
1401 memcpy_toio(&dp6c_ptr
->u
.ic
.gdt_dpr_cmd
[dp_offset
],cmd_ptr
,cp_count
);
1402 } else if (ha
->type
== GDT_PCIMPR
) {
1404 writew(dp_offset
+ DPMEM_COMMAND_OFFSET
,
1405 &dp6m_ptr
->u
.ic
.comm_queue
[cmd_no
].offset
);
1406 writew((u16
)cmd_ptr
->Service
,
1407 &dp6m_ptr
->u
.ic
.comm_queue
[cmd_no
].serv_id
);
1408 memcpy_toio(&dp6m_ptr
->u
.ic
.gdt_dpr_cmd
[dp_offset
],cmd_ptr
,cp_count
);
1413 static void gdth_release_event(gdth_ha_str
*ha
)
1415 TRACE(("gdth_release_event() hanum %d\n", ha
->hanum
));
1417 #ifdef GDTH_STATISTICS
1420 for (i
=0,j
=0; j
<GDTH_MAXCMDS
; ++j
) {
1421 if (ha
->cmd_tab
[j
].cmnd
!= UNUSED_CMND
)
1424 if (max_index
< i
) {
1426 TRACE3(("GDT: max_index = %d\n",(u16
)i
));
1431 if (ha
->pccb
->OpCode
== GDT_INIT
)
1432 ha
->pccb
->Service
|= 0x80;
1434 if (ha
->type
== GDT_EISA
) {
1435 if (ha
->pccb
->OpCode
== GDT_INIT
) /* store DMA buffer */
1436 outl(ha
->ccb_phys
, ha
->bmic
+ MAILBOXREG
);
1437 outb(ha
->pccb
->Service
, ha
->bmic
+ LDOORREG
);
1438 } else if (ha
->type
== GDT_ISA
) {
1439 writeb(0, &((gdt2_dpram_str __iomem
*)ha
->brd
)->io
.event
);
1440 } else if (ha
->type
== GDT_PCI
) {
1441 writeb(0, &((gdt6_dpram_str __iomem
*)ha
->brd
)->io
.event
);
1442 } else if (ha
->type
== GDT_PCINEW
) {
1443 outb(1, PTR2USHORT(&ha
->plx
->ldoor_reg
));
1444 } else if (ha
->type
== GDT_PCIMPR
) {
1445 writeb(1, &((gdt6m_dpram_str __iomem
*)ha
->brd
)->i960r
.ldoor_reg
);
1449 static int gdth_wait(gdth_ha_str
*ha
, int index
, u32 time
)
1451 int answer_found
= FALSE
;
1454 TRACE(("gdth_wait() hanum %d index %d time %d\n", ha
->hanum
, index
, time
));
1457 return 1; /* no wait required */
1460 __gdth_interrupt(ha
, true, &wait_index
);
1461 if (wait_index
== index
) {
1462 answer_found
= TRUE
;
1468 while (gdth_test_busy(ha
))
1471 return (answer_found
);
1475 static int gdth_internal_cmd(gdth_ha_str
*ha
, u8 service
, u16 opcode
,
1476 u32 p1
, u64 p2
, u64 p3
)
1478 register gdth_cmd_str
*cmd_ptr
;
1481 TRACE2(("gdth_internal_cmd() service %d opcode %d\n",service
,opcode
));
1484 memset((char*)cmd_ptr
,0,sizeof(gdth_cmd_str
));
1487 for (retries
= INIT_RETRIES
;;) {
1488 cmd_ptr
->Service
= service
;
1489 cmd_ptr
->RequestBuffer
= INTERNAL_CMND
;
1490 if (!(index
=gdth_get_cmd_index(ha
))) {
1491 TRACE(("GDT: No free command index found\n"));
1495 cmd_ptr
->OpCode
= opcode
;
1496 cmd_ptr
->BoardNode
= LOCALBOARD
;
1497 if (service
== CACHESERVICE
) {
1498 if (opcode
== GDT_IOCTL
) {
1499 cmd_ptr
->u
.ioctl
.subfunc
= p1
;
1500 cmd_ptr
->u
.ioctl
.channel
= (u32
)p2
;
1501 cmd_ptr
->u
.ioctl
.param_size
= (u16
)p3
;
1502 cmd_ptr
->u
.ioctl
.p_param
= ha
->scratch_phys
;
1504 if (ha
->cache_feat
& GDT_64BIT
) {
1505 cmd_ptr
->u
.cache64
.DeviceNo
= (u16
)p1
;
1506 cmd_ptr
->u
.cache64
.BlockNo
= p2
;
1508 cmd_ptr
->u
.cache
.DeviceNo
= (u16
)p1
;
1509 cmd_ptr
->u
.cache
.BlockNo
= (u32
)p2
;
1512 } else if (service
== SCSIRAWSERVICE
) {
1513 if (ha
->raw_feat
& GDT_64BIT
) {
1514 cmd_ptr
->u
.raw64
.direction
= p1
;
1515 cmd_ptr
->u
.raw64
.bus
= (u8
)p2
;
1516 cmd_ptr
->u
.raw64
.target
= (u8
)p3
;
1517 cmd_ptr
->u
.raw64
.lun
= (u8
)(p3
>> 8);
1519 cmd_ptr
->u
.raw
.direction
= p1
;
1520 cmd_ptr
->u
.raw
.bus
= (u8
)p2
;
1521 cmd_ptr
->u
.raw
.target
= (u8
)p3
;
1522 cmd_ptr
->u
.raw
.lun
= (u8
)(p3
>> 8);
1524 } else if (service
== SCREENSERVICE
) {
1525 if (opcode
== GDT_REALTIME
) {
1526 *(u32
*)&cmd_ptr
->u
.screen
.su
.data
[0] = p1
;
1527 *(u32
*)&cmd_ptr
->u
.screen
.su
.data
[4] = (u32
)p2
;
1528 *(u32
*)&cmd_ptr
->u
.screen
.su
.data
[8] = (u32
)p3
;
1531 ha
->cmd_len
= sizeof(gdth_cmd_str
);
1532 ha
->cmd_offs_dpmem
= 0;
1534 gdth_copy_command(ha
);
1535 gdth_release_event(ha
);
1537 if (!gdth_wait(ha
, index
, INIT_TIMEOUT
)) {
1538 printk("GDT: Initialization error (timeout service %d)\n",service
);
1541 if (ha
->status
!= S_BSY
|| --retries
== 0)
1546 return (ha
->status
!= S_OK
? 0:1);
1550 /* search for devices */
1552 static int gdth_search_drives(gdth_ha_str
*ha
)
1556 u32 bus_no
, drv_cnt
, drv_no
, j
;
1557 gdth_getch_str
*chn
;
1558 gdth_drlist_str
*drl
;
1559 gdth_iochan_str
*ioc
;
1560 gdth_raw_iochan_str
*iocr
;
1561 gdth_arcdl_str
*alst
;
1562 gdth_alist_str
*alst2
;
1563 gdth_oem_str_ioctl
*oemstr
;
1565 gdth_perf_modes
*pmod
;
1570 unsigned long flags
;
1573 TRACE(("gdth_search_drives() hanum %d\n", ha
->hanum
));
1576 /* initialize controller services, at first: screen service */
1577 ha
->screen_feat
= 0;
1579 ok
= gdth_internal_cmd(ha
, SCREENSERVICE
, GDT_X_INIT_SCR
, 0, 0, 0);
1581 ha
->screen_feat
= GDT_64BIT
;
1583 if (force_dma32
|| (!ok
&& ha
->status
== (u16
)S_NOFUNC
))
1584 ok
= gdth_internal_cmd(ha
, SCREENSERVICE
, GDT_INIT
, 0, 0, 0);
1586 printk("GDT-HA %d: Initialization error screen service (code %d)\n",
1587 ha
->hanum
, ha
->status
);
1590 TRACE2(("gdth_search_drives(): SCREENSERVICE initialized\n"));
1593 /* read realtime clock info, send to controller */
1594 /* 1. wait for the falling edge of update flag */
1595 spin_lock_irqsave(&rtc_lock
, flags
);
1596 for (j
= 0; j
< 1000000; ++j
)
1597 if (CMOS_READ(RTC_FREQ_SELECT
) & RTC_UIP
)
1599 for (j
= 0; j
< 1000000; ++j
)
1600 if (!(CMOS_READ(RTC_FREQ_SELECT
) & RTC_UIP
))
1604 for (j
= 0; j
< 12; ++j
)
1605 rtc
[j
] = CMOS_READ(j
);
1606 } while (rtc
[0] != CMOS_READ(0));
1607 spin_unlock_irqrestore(&rtc_lock
, flags
);
1608 TRACE2(("gdth_search_drives(): RTC: %x/%x/%x\n",*(u32
*)&rtc
[0],
1609 *(u32
*)&rtc
[4], *(u32
*)&rtc
[8]));
1610 /* 3. send to controller firmware */
1611 gdth_internal_cmd(ha
, SCREENSERVICE
, GDT_REALTIME
, *(u32
*)&rtc
[0],
1612 *(u32
*)&rtc
[4], *(u32
*)&rtc
[8]);
1615 /* unfreeze all IOs */
1616 gdth_internal_cmd(ha
, CACHESERVICE
, GDT_UNFREEZE_IO
, 0, 0, 0);
1618 /* initialize cache service */
1621 ok
= gdth_internal_cmd(ha
, CACHESERVICE
, GDT_X_INIT_HOST
, LINUX_OS
,
1624 ha
->cache_feat
= GDT_64BIT
;
1626 if (force_dma32
|| (!ok
&& ha
->status
== (u16
)S_NOFUNC
))
1627 ok
= gdth_internal_cmd(ha
, CACHESERVICE
, GDT_INIT
, LINUX_OS
, 0, 0);
1629 printk("GDT-HA %d: Initialization error cache service (code %d)\n",
1630 ha
->hanum
, ha
->status
);
1633 TRACE2(("gdth_search_drives(): CACHESERVICE initialized\n"));
1634 cdev_cnt
= (u16
)ha
->info
;
1635 ha
->fw_vers
= ha
->service
;
1638 if (ha
->type
== GDT_PCIMPR
) {
1639 /* set perf. modes */
1640 pmod
= (gdth_perf_modes
*)ha
->pscratch
;
1642 pmod
->st_mode
= 1; /* enable one status buffer */
1643 *((u64
*)&pmod
->st_buff_addr1
) = ha
->coal_stat_phys
;
1644 pmod
->st_buff_indx1
= COALINDEX
;
1645 pmod
->st_buff_addr2
= 0;
1646 pmod
->st_buff_u_addr2
= 0;
1647 pmod
->st_buff_indx2
= 0;
1648 pmod
->st_buff_size
= sizeof(gdth_coal_status
) * MAXOFFSETS
;
1649 pmod
->cmd_mode
= 0; // disable all cmd buffers
1650 pmod
->cmd_buff_addr1
= 0;
1651 pmod
->cmd_buff_u_addr1
= 0;
1652 pmod
->cmd_buff_indx1
= 0;
1653 pmod
->cmd_buff_addr2
= 0;
1654 pmod
->cmd_buff_u_addr2
= 0;
1655 pmod
->cmd_buff_indx2
= 0;
1656 pmod
->cmd_buff_size
= 0;
1657 pmod
->reserved1
= 0;
1658 pmod
->reserved2
= 0;
1659 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_IOCTL
, SET_PERF_MODES
,
1660 INVALID_CHANNEL
,sizeof(gdth_perf_modes
))) {
1661 printk("GDT-HA %d: Interrupt coalescing activated\n", ha
->hanum
);
1666 /* detect number of buses - try new IOCTL */
1667 iocr
= (gdth_raw_iochan_str
*)ha
->pscratch
;
1668 iocr
->hdr
.version
= 0xffffffff;
1669 iocr
->hdr
.list_entries
= MAXBUS
;
1670 iocr
->hdr
.first_chan
= 0;
1671 iocr
->hdr
.last_chan
= MAXBUS
-1;
1672 iocr
->hdr
.list_offset
= GDTOFFSOF(gdth_raw_iochan_str
, list
[0]);
1673 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_IOCTL
, IOCHAN_RAW_DESC
,
1674 INVALID_CHANNEL
,sizeof(gdth_raw_iochan_str
))) {
1675 TRACE2(("IOCHAN_RAW_DESC supported!\n"));
1676 ha
->bus_cnt
= iocr
->hdr
.chan_count
;
1677 for (bus_no
= 0; bus_no
< ha
->bus_cnt
; ++bus_no
) {
1678 if (iocr
->list
[bus_no
].proc_id
< MAXID
)
1679 ha
->bus_id
[bus_no
] = iocr
->list
[bus_no
].proc_id
;
1681 ha
->bus_id
[bus_no
] = 0xff;
1685 chn
= (gdth_getch_str
*)ha
->pscratch
;
1686 for (bus_no
= 0; bus_no
< MAXBUS
; ++bus_no
) {
1687 chn
->channel_no
= bus_no
;
1688 if (!gdth_internal_cmd(ha
, CACHESERVICE
, GDT_IOCTL
,
1689 SCSI_CHAN_CNT
| L_CTRL_PATTERN
,
1690 IO_CHANNEL
| INVALID_CHANNEL
,
1691 sizeof(gdth_getch_str
))) {
1693 printk("GDT-HA %d: Error detecting channel count (0x%x)\n",
1694 ha
->hanum
, ha
->status
);
1699 if (chn
->siop_id
< MAXID
)
1700 ha
->bus_id
[bus_no
] = chn
->siop_id
;
1702 ha
->bus_id
[bus_no
] = 0xff;
1704 ha
->bus_cnt
= (u8
)bus_no
;
1706 TRACE2(("gdth_search_drives() %d channels\n",ha
->bus_cnt
));
1708 /* read cache configuration */
1709 if (!gdth_internal_cmd(ha
, CACHESERVICE
, GDT_IOCTL
, CACHE_INFO
,
1710 INVALID_CHANNEL
,sizeof(gdth_cinfo_str
))) {
1711 printk("GDT-HA %d: Initialization error cache service (code %d)\n",
1712 ha
->hanum
, ha
->status
);
1715 ha
->cpar
= ((gdth_cinfo_str
*)ha
->pscratch
)->cpar
;
1716 TRACE2(("gdth_search_drives() cinfo: vs %x sta %d str %d dw %d b %d\n",
1717 ha
->cpar
.version
,ha
->cpar
.state
,ha
->cpar
.strategy
,
1718 ha
->cpar
.write_back
,ha
->cpar
.block_size
));
1720 /* read board info and features */
1721 ha
->more_proc
= FALSE
;
1722 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_IOCTL
, BOARD_INFO
,
1723 INVALID_CHANNEL
,sizeof(gdth_binfo_str
))) {
1724 memcpy(&ha
->binfo
, (gdth_binfo_str
*)ha
->pscratch
,
1725 sizeof(gdth_binfo_str
));
1726 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_IOCTL
, BOARD_FEATURES
,
1727 INVALID_CHANNEL
,sizeof(gdth_bfeat_str
))) {
1728 TRACE2(("BOARD_INFO/BOARD_FEATURES supported\n"));
1729 ha
->bfeat
= *(gdth_bfeat_str
*)ha
->pscratch
;
1730 ha
->more_proc
= TRUE
;
1733 TRACE2(("BOARD_INFO requires firmware >= 1.10/2.08\n"));
1734 strcpy(ha
->binfo
.type_string
, gdth_ctr_name(ha
));
1736 TRACE2(("Controller name: %s\n",ha
->binfo
.type_string
));
1738 /* read more informations */
1739 if (ha
->more_proc
) {
1740 /* physical drives, channel addresses */
1741 ioc
= (gdth_iochan_str
*)ha
->pscratch
;
1742 ioc
->hdr
.version
= 0xffffffff;
1743 ioc
->hdr
.list_entries
= MAXBUS
;
1744 ioc
->hdr
.first_chan
= 0;
1745 ioc
->hdr
.last_chan
= MAXBUS
-1;
1746 ioc
->hdr
.list_offset
= GDTOFFSOF(gdth_iochan_str
, list
[0]);
1747 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_IOCTL
, IOCHAN_DESC
,
1748 INVALID_CHANNEL
,sizeof(gdth_iochan_str
))) {
1749 for (bus_no
= 0; bus_no
< ha
->bus_cnt
; ++bus_no
) {
1750 ha
->raw
[bus_no
].address
= ioc
->list
[bus_no
].address
;
1751 ha
->raw
[bus_no
].local_no
= ioc
->list
[bus_no
].local_no
;
1754 for (bus_no
= 0; bus_no
< ha
->bus_cnt
; ++bus_no
) {
1755 ha
->raw
[bus_no
].address
= IO_CHANNEL
;
1756 ha
->raw
[bus_no
].local_no
= bus_no
;
1759 for (bus_no
= 0; bus_no
< ha
->bus_cnt
; ++bus_no
) {
1760 chn
= (gdth_getch_str
*)ha
->pscratch
;
1761 chn
->channel_no
= ha
->raw
[bus_no
].local_no
;
1762 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_IOCTL
,
1763 SCSI_CHAN_CNT
| L_CTRL_PATTERN
,
1764 ha
->raw
[bus_no
].address
| INVALID_CHANNEL
,
1765 sizeof(gdth_getch_str
))) {
1766 ha
->raw
[bus_no
].pdev_cnt
= chn
->drive_cnt
;
1767 TRACE2(("Channel %d: %d phys. drives\n",
1768 bus_no
,chn
->drive_cnt
));
1770 if (ha
->raw
[bus_no
].pdev_cnt
> 0) {
1771 drl
= (gdth_drlist_str
*)ha
->pscratch
;
1772 drl
->sc_no
= ha
->raw
[bus_no
].local_no
;
1773 drl
->sc_cnt
= ha
->raw
[bus_no
].pdev_cnt
;
1774 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_IOCTL
,
1775 SCSI_DR_LIST
| L_CTRL_PATTERN
,
1776 ha
->raw
[bus_no
].address
| INVALID_CHANNEL
,
1777 sizeof(gdth_drlist_str
))) {
1778 for (j
= 0; j
< ha
->raw
[bus_no
].pdev_cnt
; ++j
)
1779 ha
->raw
[bus_no
].id_list
[j
] = drl
->sc_list
[j
];
1781 ha
->raw
[bus_no
].pdev_cnt
= 0;
1786 /* logical drives */
1787 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_IOCTL
, CACHE_DRV_CNT
,
1788 INVALID_CHANNEL
,sizeof(u32
))) {
1789 drv_cnt
= *(u32
*)ha
->pscratch
;
1790 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_IOCTL
, CACHE_DRV_LIST
,
1791 INVALID_CHANNEL
,drv_cnt
* sizeof(u32
))) {
1792 for (j
= 0; j
< drv_cnt
; ++j
) {
1793 drv_no
= ((u32
*)ha
->pscratch
)[j
];
1794 if (drv_no
< MAX_LDRIVES
) {
1795 ha
->hdr
[drv_no
].is_logdrv
= TRUE
;
1796 TRACE2(("Drive %d is log. drive\n",drv_no
));
1800 alst
= (gdth_arcdl_str
*)ha
->pscratch
;
1801 alst
->entries_avail
= MAX_LDRIVES
;
1802 alst
->first_entry
= 0;
1803 alst
->list_offset
= GDTOFFSOF(gdth_arcdl_str
, list
[0]);
1804 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_IOCTL
,
1805 ARRAY_DRV_LIST2
| LA_CTRL_PATTERN
,
1806 INVALID_CHANNEL
, sizeof(gdth_arcdl_str
) +
1807 (alst
->entries_avail
-1) * sizeof(gdth_alist_str
))) {
1808 for (j
= 0; j
< alst
->entries_init
; ++j
) {
1809 ha
->hdr
[j
].is_arraydrv
= alst
->list
[j
].is_arrayd
;
1810 ha
->hdr
[j
].is_master
= alst
->list
[j
].is_master
;
1811 ha
->hdr
[j
].is_parity
= alst
->list
[j
].is_parity
;
1812 ha
->hdr
[j
].is_hotfix
= alst
->list
[j
].is_hotfix
;
1813 ha
->hdr
[j
].master_no
= alst
->list
[j
].cd_handle
;
1815 } else if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_IOCTL
,
1816 ARRAY_DRV_LIST
| LA_CTRL_PATTERN
,
1817 0, 35 * sizeof(gdth_alist_str
))) {
1818 for (j
= 0; j
< 35; ++j
) {
1819 alst2
= &((gdth_alist_str
*)ha
->pscratch
)[j
];
1820 ha
->hdr
[j
].is_arraydrv
= alst2
->is_arrayd
;
1821 ha
->hdr
[j
].is_master
= alst2
->is_master
;
1822 ha
->hdr
[j
].is_parity
= alst2
->is_parity
;
1823 ha
->hdr
[j
].is_hotfix
= alst2
->is_hotfix
;
1824 ha
->hdr
[j
].master_no
= alst2
->cd_handle
;
1830 /* initialize raw service */
1833 ok
= gdth_internal_cmd(ha
, SCSIRAWSERVICE
, GDT_X_INIT_RAW
, 0, 0, 0);
1835 ha
->raw_feat
= GDT_64BIT
;
1837 if (force_dma32
|| (!ok
&& ha
->status
== (u16
)S_NOFUNC
))
1838 ok
= gdth_internal_cmd(ha
, SCSIRAWSERVICE
, GDT_INIT
, 0, 0, 0);
1840 printk("GDT-HA %d: Initialization error raw service (code %d)\n",
1841 ha
->hanum
, ha
->status
);
1844 TRACE2(("gdth_search_drives(): RAWSERVICE initialized\n"));
1846 /* set/get features raw service (scatter/gather) */
1847 if (gdth_internal_cmd(ha
, SCSIRAWSERVICE
, GDT_SET_FEAT
, SCATTER_GATHER
,
1849 TRACE2(("gdth_search_drives(): set features RAWSERVICE OK\n"));
1850 if (gdth_internal_cmd(ha
, SCSIRAWSERVICE
, GDT_GET_FEAT
, 0, 0, 0)) {
1851 TRACE2(("gdth_search_dr(): get feat RAWSERVICE %d\n",
1853 ha
->raw_feat
|= (u16
)ha
->info
;
1857 /* set/get features cache service (equal to raw service) */
1858 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_SET_FEAT
, 0,
1859 SCATTER_GATHER
,0)) {
1860 TRACE2(("gdth_search_drives(): set features CACHESERVICE OK\n"));
1861 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_GET_FEAT
, 0, 0, 0)) {
1862 TRACE2(("gdth_search_dr(): get feat CACHESERV. %d\n",
1864 ha
->cache_feat
|= (u16
)ha
->info
;
1868 /* reserve drives for raw service */
1869 if (reserve_mode
!= 0) {
1870 gdth_internal_cmd(ha
, SCSIRAWSERVICE
, GDT_RESERVE_ALL
,
1871 reserve_mode
== 1 ? 1 : 3, 0, 0);
1872 TRACE2(("gdth_search_drives(): RESERVE_ALL code %d\n",
1875 for (i
= 0; i
< MAX_RES_ARGS
; i
+= 4) {
1876 if (reserve_list
[i
] == ha
->hanum
&& reserve_list
[i
+1] < ha
->bus_cnt
&&
1877 reserve_list
[i
+2] < ha
->tid_cnt
&& reserve_list
[i
+3] < MAXLUN
) {
1878 TRACE2(("gdth_search_drives(): reserve ha %d bus %d id %d lun %d\n",
1879 reserve_list
[i
], reserve_list
[i
+1],
1880 reserve_list
[i
+2], reserve_list
[i
+3]));
1881 if (!gdth_internal_cmd(ha
, SCSIRAWSERVICE
, GDT_RESERVE
, 0,
1882 reserve_list
[i
+1], reserve_list
[i
+2] |
1883 (reserve_list
[i
+3] << 8))) {
1884 printk("GDT-HA %d: Error raw service (RESERVE, code %d)\n",
1885 ha
->hanum
, ha
->status
);
1890 /* Determine OEM string using IOCTL */
1891 oemstr
= (gdth_oem_str_ioctl
*)ha
->pscratch
;
1892 oemstr
->params
.ctl_version
= 0x01;
1893 oemstr
->params
.buffer_size
= sizeof(oemstr
->text
);
1894 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_IOCTL
,
1895 CACHE_READ_OEM_STRING_RECORD
,INVALID_CHANNEL
,
1896 sizeof(gdth_oem_str_ioctl
))) {
1897 TRACE2(("gdth_search_drives(): CACHE_READ_OEM_STRING_RECORD OK\n"));
1898 printk("GDT-HA %d: Vendor: %s Name: %s\n",
1899 ha
->hanum
, oemstr
->text
.oem_company_name
, ha
->binfo
.type_string
);
1900 /* Save the Host Drive inquiry data */
1901 strlcpy(ha
->oem_name
,oemstr
->text
.scsi_host_drive_inquiry_vendor_id
,
1902 sizeof(ha
->oem_name
));
1904 /* Old method, based on PCI ID */
1905 TRACE2(("gdth_search_drives(): CACHE_READ_OEM_STRING_RECORD failed\n"));
1906 printk("GDT-HA %d: Name: %s\n",
1907 ha
->hanum
, ha
->binfo
.type_string
);
1908 if (ha
->oem_id
== OEM_ID_INTEL
)
1909 strlcpy(ha
->oem_name
,"Intel ", sizeof(ha
->oem_name
));
1911 strlcpy(ha
->oem_name
,"ICP ", sizeof(ha
->oem_name
));
1914 /* scanning for host drives */
1915 for (i
= 0; i
< cdev_cnt
; ++i
)
1916 gdth_analyse_hdrive(ha
, i
);
1918 TRACE(("gdth_search_drives() OK\n"));
1922 static int gdth_analyse_hdrive(gdth_ha_str
*ha
, u16 hdrive
)
1925 int drv_hds
, drv_secs
;
1927 TRACE(("gdth_analyse_hdrive() hanum %d drive %d\n", ha
->hanum
, hdrive
));
1928 if (hdrive
>= MAX_HDRIVES
)
1931 if (!gdth_internal_cmd(ha
, CACHESERVICE
, GDT_INFO
, hdrive
, 0, 0))
1933 ha
->hdr
[hdrive
].present
= TRUE
;
1934 ha
->hdr
[hdrive
].size
= ha
->info
;
1936 /* evaluate mapping (sectors per head, heads per cylinder) */
1937 ha
->hdr
[hdrive
].size
&= ~SECS32
;
1938 if (ha
->info2
== 0) {
1939 gdth_eval_mapping(ha
->hdr
[hdrive
].size
,&drv_cyls
,&drv_hds
,&drv_secs
);
1941 drv_hds
= ha
->info2
& 0xff;
1942 drv_secs
= (ha
->info2
>> 8) & 0xff;
1943 drv_cyls
= (u32
)ha
->hdr
[hdrive
].size
/ drv_hds
/ drv_secs
;
1945 ha
->hdr
[hdrive
].heads
= (u8
)drv_hds
;
1946 ha
->hdr
[hdrive
].secs
= (u8
)drv_secs
;
1948 ha
->hdr
[hdrive
].size
= drv_cyls
* drv_hds
* drv_secs
;
1950 if (ha
->cache_feat
& GDT_64BIT
) {
1951 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_X_INFO
, hdrive
, 0, 0)
1952 && ha
->info2
!= 0) {
1953 ha
->hdr
[hdrive
].size
= ((u64
)ha
->info2
<< 32) | ha
->info
;
1956 TRACE2(("gdth_search_dr() cdr. %d size %d hds %d scs %d\n",
1957 hdrive
,ha
->hdr
[hdrive
].size
,drv_hds
,drv_secs
));
1959 /* get informations about device */
1960 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_DEVTYPE
, hdrive
, 0, 0)) {
1961 TRACE2(("gdth_search_dr() cache drive %d devtype %d\n",
1963 ha
->hdr
[hdrive
].devtype
= (u16
)ha
->info
;
1967 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_CLUST_INFO
, hdrive
, 0, 0)) {
1968 TRACE2(("gdth_search_dr() cache drive %d cluster info %d\n",
1971 ha
->hdr
[hdrive
].cluster_type
= (u8
)ha
->info
;
1974 /* R/W attributes */
1975 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_RW_ATTRIBS
, hdrive
, 0, 0)) {
1976 TRACE2(("gdth_search_dr() cache drive %d r/w attrib. %d\n",
1978 ha
->hdr
[hdrive
].rw_attribs
= (u8
)ha
->info
;
1985 /* command queueing/sending functions */
1987 static void gdth_putq(gdth_ha_str
*ha
, Scsi_Cmnd
*scp
, u8 priority
)
1989 struct gdth_cmndinfo
*cmndinfo
= gdth_cmnd_priv(scp
);
1990 register Scsi_Cmnd
*pscp
;
1991 register Scsi_Cmnd
*nscp
;
1992 unsigned long flags
;
1994 TRACE(("gdth_putq() priority %d\n",priority
));
1995 spin_lock_irqsave(&ha
->smp_lock
, flags
);
1997 if (!cmndinfo
->internal_command
)
1998 cmndinfo
->priority
= priority
;
2000 if (ha
->req_first
==NULL
) {
2001 ha
->req_first
= scp
; /* queue was empty */
2002 scp
->SCp
.ptr
= NULL
;
2003 } else { /* queue not empty */
2004 pscp
= ha
->req_first
;
2005 nscp
= (Scsi_Cmnd
*)pscp
->SCp
.ptr
;
2006 /* priority: 0-highest,..,0xff-lowest */
2007 while (nscp
&& gdth_cmnd_priv(nscp
)->priority
<= priority
) {
2009 nscp
= (Scsi_Cmnd
*)pscp
->SCp
.ptr
;
2011 pscp
->SCp
.ptr
= (char *)scp
;
2012 scp
->SCp
.ptr
= (char *)nscp
;
2014 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
2016 #ifdef GDTH_STATISTICS
2018 for (nscp
=ha
->req_first
; nscp
; nscp
=(Scsi_Cmnd
*)nscp
->SCp
.ptr
)
2020 if (max_rq
< flags
) {
2022 TRACE3(("GDT: max_rq = %d\n",(u16
)max_rq
));
2027 static void gdth_next(gdth_ha_str
*ha
)
2029 register Scsi_Cmnd
*pscp
;
2030 register Scsi_Cmnd
*nscp
;
2031 u8 b
, t
, l
, firsttime
;
2032 u8 this_cmd
, next_cmd
;
2033 unsigned long flags
= 0;
2036 TRACE(("gdth_next() hanum %d\n", ha
->hanum
));
2038 spin_lock_irqsave(&ha
->smp_lock
, flags
);
2040 ha
->cmd_cnt
= ha
->cmd_offs_dpmem
= 0;
2041 this_cmd
= firsttime
= TRUE
;
2042 next_cmd
= gdth_polling
? FALSE
:TRUE
;
2045 for (nscp
= pscp
= ha
->req_first
; nscp
; nscp
= (Scsi_Cmnd
*)nscp
->SCp
.ptr
) {
2046 struct gdth_cmndinfo
*nscp_cmndinfo
= gdth_cmnd_priv(nscp
);
2047 if (nscp
!= pscp
&& nscp
!= (Scsi_Cmnd
*)pscp
->SCp
.ptr
)
2048 pscp
= (Scsi_Cmnd
*)pscp
->SCp
.ptr
;
2049 if (!nscp_cmndinfo
->internal_command
) {
2050 b
= nscp
->device
->channel
;
2051 t
= nscp
->device
->id
;
2052 l
= nscp
->device
->lun
;
2053 if (nscp_cmndinfo
->priority
>= DEFAULT_PRI
) {
2054 if ((b
!= ha
->virt_bus
&& ha
->raw
[BUS_L2P(ha
,b
)].lock
) ||
2055 (b
== ha
->virt_bus
&& t
< MAX_HDRIVES
&& ha
->hdr
[t
].lock
))
2062 if (gdth_test_busy(ha
)) { /* controller busy ? */
2063 TRACE(("gdth_next() controller %d busy !\n", ha
->hanum
));
2064 if (!gdth_polling
) {
2065 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
2068 while (gdth_test_busy(ha
))
2074 if (!nscp_cmndinfo
->internal_command
) {
2075 if (nscp_cmndinfo
->phase
== -1) {
2076 nscp_cmndinfo
->phase
= CACHESERVICE
; /* default: cache svc. */
2077 if (nscp
->cmnd
[0] == TEST_UNIT_READY
) {
2078 TRACE2(("TEST_UNIT_READY Bus %d Id %d LUN %d\n",
2080 /* TEST_UNIT_READY -> set scan mode */
2081 if ((ha
->scan_mode
& 0x0f) == 0) {
2082 if (b
== 0 && t
== 0 && l
== 0) {
2084 TRACE2(("Scan mode: 0x%x\n", ha
->scan_mode
));
2086 } else if ((ha
->scan_mode
& 0x0f) == 1) {
2087 if (b
== 0 && ((t
== 0 && l
== 1) ||
2088 (t
== 1 && l
== 0))) {
2089 nscp_cmndinfo
->OpCode
= GDT_SCAN_START
;
2090 nscp_cmndinfo
->phase
= ((ha
->scan_mode
& 0x10 ? 1:0) << 8)
2092 ha
->scan_mode
= 0x12;
2093 TRACE2(("Scan mode: 0x%x (SCAN_START)\n",
2096 ha
->scan_mode
&= 0x10;
2097 TRACE2(("Scan mode: 0x%x\n", ha
->scan_mode
));
2099 } else if (ha
->scan_mode
== 0x12) {
2100 if (b
== ha
->bus_cnt
&& t
== ha
->tid_cnt
-1) {
2101 nscp_cmndinfo
->phase
= SCSIRAWSERVICE
;
2102 nscp_cmndinfo
->OpCode
= GDT_SCAN_END
;
2103 ha
->scan_mode
&= 0x10;
2104 TRACE2(("Scan mode: 0x%x (SCAN_END)\n",
2109 if (b
== ha
->virt_bus
&& nscp
->cmnd
[0] != INQUIRY
&&
2110 nscp
->cmnd
[0] != READ_CAPACITY
&& nscp
->cmnd
[0] != MODE_SENSE
&&
2111 (ha
->hdr
[t
].cluster_type
& CLUSTER_DRIVE
)) {
2112 /* always GDT_CLUST_INFO! */
2113 nscp_cmndinfo
->OpCode
= GDT_CLUST_INFO
;
2118 if (nscp_cmndinfo
->OpCode
!= -1) {
2119 if ((nscp_cmndinfo
->phase
& 0xff) == CACHESERVICE
) {
2120 if (!(cmd_index
=gdth_fill_cache_cmd(ha
, nscp
, t
)))
2123 } else if ((nscp_cmndinfo
->phase
& 0xff) == SCSIRAWSERVICE
) {
2124 if (!(cmd_index
=gdth_fill_raw_cmd(ha
, nscp
, BUS_L2P(ha
, b
))))
2128 memset((char*)nscp
->sense_buffer
,0,16);
2129 nscp
->sense_buffer
[0] = 0x70;
2130 nscp
->sense_buffer
[2] = NOT_READY
;
2131 nscp
->result
= (DID_OK
<< 16) | (CHECK_CONDITION
<< 1);
2132 if (!nscp_cmndinfo
->wait_for_completion
)
2133 nscp_cmndinfo
->wait_for_completion
++;
2135 gdth_scsi_done(nscp
);
2137 } else if (gdth_cmnd_priv(nscp
)->internal_command
) {
2138 if (!(cmd_index
=gdth_special_cmd(ha
, nscp
)))
2141 } else if (b
!= ha
->virt_bus
) {
2142 if (ha
->raw
[BUS_L2P(ha
,b
)].io_cnt
[t
] >= GDTH_MAX_RAW
||
2143 !(cmd_index
=gdth_fill_raw_cmd(ha
, nscp
, BUS_L2P(ha
, b
))))
2146 ha
->raw
[BUS_L2P(ha
,b
)].io_cnt
[t
]++;
2147 } else if (t
>= MAX_HDRIVES
|| !ha
->hdr
[t
].present
|| l
!= 0) {
2148 TRACE2(("Command 0x%x to bus %d id %d lun %d -> IGNORE\n",
2149 nscp
->cmnd
[0], b
, t
, l
));
2150 nscp
->result
= DID_BAD_TARGET
<< 16;
2151 if (!nscp_cmndinfo
->wait_for_completion
)
2152 nscp_cmndinfo
->wait_for_completion
++;
2154 gdth_scsi_done(nscp
);
2156 switch (nscp
->cmnd
[0]) {
2157 case TEST_UNIT_READY
:
2164 case SERVICE_ACTION_IN
:
2165 TRACE(("cache cmd %x/%x/%x/%x/%x/%x\n",nscp
->cmnd
[0],
2166 nscp
->cmnd
[1],nscp
->cmnd
[2],nscp
->cmnd
[3],
2167 nscp
->cmnd
[4],nscp
->cmnd
[5]));
2168 if (ha
->hdr
[t
].media_changed
&& nscp
->cmnd
[0] != INQUIRY
) {
2169 /* return UNIT_ATTENTION */
2170 TRACE2(("cmd 0x%x target %d: UNIT_ATTENTION\n",
2172 ha
->hdr
[t
].media_changed
= FALSE
;
2173 memset((char*)nscp
->sense_buffer
,0,16);
2174 nscp
->sense_buffer
[0] = 0x70;
2175 nscp
->sense_buffer
[2] = UNIT_ATTENTION
;
2176 nscp
->result
= (DID_OK
<< 16) | (CHECK_CONDITION
<< 1);
2177 if (!nscp_cmndinfo
->wait_for_completion
)
2178 nscp_cmndinfo
->wait_for_completion
++;
2180 gdth_scsi_done(nscp
);
2181 } else if (gdth_internal_cache_cmd(ha
, nscp
))
2182 gdth_scsi_done(nscp
);
2185 case ALLOW_MEDIUM_REMOVAL
:
2186 TRACE(("cache cmd %x/%x/%x/%x/%x/%x\n",nscp
->cmnd
[0],
2187 nscp
->cmnd
[1],nscp
->cmnd
[2],nscp
->cmnd
[3],
2188 nscp
->cmnd
[4],nscp
->cmnd
[5]));
2189 if ( (nscp
->cmnd
[4]&1) && !(ha
->hdr
[t
].devtype
&1) ) {
2190 TRACE(("Prevent r. nonremov. drive->do nothing\n"));
2191 nscp
->result
= DID_OK
<< 16;
2192 nscp
->sense_buffer
[0] = 0;
2193 if (!nscp_cmndinfo
->wait_for_completion
)
2194 nscp_cmndinfo
->wait_for_completion
++;
2196 gdth_scsi_done(nscp
);
2198 nscp
->cmnd
[3] = (ha
->hdr
[t
].devtype
&1) ? 1:0;
2199 TRACE(("Prevent/allow r. %d rem. drive %d\n",
2200 nscp
->cmnd
[4],nscp
->cmnd
[3]));
2201 if (!(cmd_index
=gdth_fill_cache_cmd(ha
, nscp
, t
)))
2208 TRACE2(("cache cmd %s\n",nscp
->cmnd
[0] == RESERVE
?
2209 "RESERVE" : "RELEASE"));
2210 if (!(cmd_index
=gdth_fill_cache_cmd(ha
, nscp
, t
)))
2220 if (ha
->hdr
[t
].media_changed
) {
2221 /* return UNIT_ATTENTION */
2222 TRACE2(("cmd 0x%x target %d: UNIT_ATTENTION\n",
2224 ha
->hdr
[t
].media_changed
= FALSE
;
2225 memset((char*)nscp
->sense_buffer
,0,16);
2226 nscp
->sense_buffer
[0] = 0x70;
2227 nscp
->sense_buffer
[2] = UNIT_ATTENTION
;
2228 nscp
->result
= (DID_OK
<< 16) | (CHECK_CONDITION
<< 1);
2229 if (!nscp_cmndinfo
->wait_for_completion
)
2230 nscp_cmndinfo
->wait_for_completion
++;
2232 gdth_scsi_done(nscp
);
2233 } else if (!(cmd_index
=gdth_fill_cache_cmd(ha
, nscp
, t
)))
2238 TRACE2(("cache cmd %x/%x/%x/%x/%x/%x unknown\n",nscp
->cmnd
[0],
2239 nscp
->cmnd
[1],nscp
->cmnd
[2],nscp
->cmnd
[3],
2240 nscp
->cmnd
[4],nscp
->cmnd
[5]));
2241 printk("GDT-HA %d: Unknown SCSI command 0x%x to cache service !\n",
2242 ha
->hanum
, nscp
->cmnd
[0]);
2243 nscp
->result
= DID_ABORT
<< 16;
2244 if (!nscp_cmndinfo
->wait_for_completion
)
2245 nscp_cmndinfo
->wait_for_completion
++;
2247 gdth_scsi_done(nscp
);
2254 if (nscp
== ha
->req_first
)
2255 ha
->req_first
= pscp
= (Scsi_Cmnd
*)nscp
->SCp
.ptr
;
2257 pscp
->SCp
.ptr
= nscp
->SCp
.ptr
;
2262 if (ha
->cmd_cnt
> 0) {
2263 gdth_release_event(ha
);
2267 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
2269 if (gdth_polling
&& ha
->cmd_cnt
> 0) {
2270 if (!gdth_wait(ha
, cmd_index
, POLL_TIMEOUT
))
2271 printk("GDT-HA %d: Command %d timed out !\n",
2272 ha
->hanum
, cmd_index
);
2277 * gdth_copy_internal_data() - copy to/from a buffer onto a scsi_cmnd's
2278 * buffers, kmap_atomic() as needed.
2280 static void gdth_copy_internal_data(gdth_ha_str
*ha
, Scsi_Cmnd
*scp
,
2281 char *buffer
, u16 count
)
2283 u16 cpcount
,i
, max_sg
= scsi_sg_count(scp
);
2285 struct scatterlist
*sl
;
2288 cpcount
= min_t(u16
, count
, scsi_bufflen(scp
));
2292 scsi_for_each_sg(scp
, sl
, max_sg
, i
) {
2293 unsigned long flags
;
2294 cpnow
= (u16
)sl
->length
;
2295 TRACE(("copy_internal() now %d sum %d count %d %d\n",
2296 cpnow
, cpsum
, cpcount
, scsi_bufflen(scp
)));
2297 if (cpsum
+cpnow
> cpcount
)
2298 cpnow
= cpcount
- cpsum
;
2301 printk("GDT-HA %d: invalid sc/gt element in gdth_copy_internal_data()\n",
2305 local_irq_save(flags
);
2306 address
= kmap_atomic(sg_page(sl
)) + sl
->offset
;
2307 memcpy(address
, buffer
, cpnow
);
2308 flush_dcache_page(sg_page(sl
));
2309 kunmap_atomic(address
);
2310 local_irq_restore(flags
);
2311 if (cpsum
== cpcount
)
2316 printk("GDT-HA %d: SCSI command with no buffers but data transfer expected!\n",
2322 static int gdth_internal_cache_cmd(gdth_ha_str
*ha
, Scsi_Cmnd
*scp
)
2326 gdth_rdcap_data rdc
;
2328 gdth_modep_data mpd
;
2329 struct gdth_cmndinfo
*cmndinfo
= gdth_cmnd_priv(scp
);
2331 t
= scp
->device
->id
;
2332 TRACE(("gdth_internal_cache_cmd() cmd 0x%x hdrive %d\n",
2335 scp
->result
= DID_OK
<< 16;
2336 scp
->sense_buffer
[0] = 0;
2338 switch (scp
->cmnd
[0]) {
2339 case TEST_UNIT_READY
:
2342 TRACE2(("Test/Verify/Start hdrive %d\n",t
));
2346 TRACE2(("Inquiry hdrive %d devtype %d\n",
2347 t
,ha
->hdr
[t
].devtype
));
2348 inq
.type_qual
= (ha
->hdr
[t
].devtype
&4) ? TYPE_ROM
:TYPE_DISK
;
2349 /* you can here set all disks to removable, if you want to do
2350 a flush using the ALLOW_MEDIUM_REMOVAL command */
2351 inq
.modif_rmb
= 0x00;
2352 if ((ha
->hdr
[t
].devtype
& 1) ||
2353 (ha
->hdr
[t
].cluster_type
& CLUSTER_DRIVE
))
2354 inq
.modif_rmb
= 0x80;
2358 strcpy(inq
.vendor
,ha
->oem_name
);
2359 sprintf(inq
.product
,"Host Drive #%02d",t
);
2360 strcpy(inq
.revision
," ");
2361 gdth_copy_internal_data(ha
, scp
, (char*)&inq
, sizeof(gdth_inq_data
));
2365 TRACE2(("Request sense hdrive %d\n",t
));
2366 sd
.errorcode
= 0x70;
2371 gdth_copy_internal_data(ha
, scp
, (char*)&sd
, sizeof(gdth_sense_data
));
2375 TRACE2(("Mode sense hdrive %d\n",t
));
2376 memset((char*)&mpd
,0,sizeof(gdth_modep_data
));
2377 mpd
.hd
.data_length
= sizeof(gdth_modep_data
);
2378 mpd
.hd
.dev_par
= (ha
->hdr
[t
].devtype
&2) ? 0x80:0;
2379 mpd
.hd
.bd_length
= sizeof(mpd
.bd
);
2380 mpd
.bd
.block_length
[0] = (SECTOR_SIZE
& 0x00ff0000) >> 16;
2381 mpd
.bd
.block_length
[1] = (SECTOR_SIZE
& 0x0000ff00) >> 8;
2382 mpd
.bd
.block_length
[2] = (SECTOR_SIZE
& 0x000000ff);
2383 gdth_copy_internal_data(ha
, scp
, (char*)&mpd
, sizeof(gdth_modep_data
));
2387 TRACE2(("Read capacity hdrive %d\n",t
));
2388 if (ha
->hdr
[t
].size
> (u64
)0xffffffff)
2389 rdc
.last_block_no
= 0xffffffff;
2391 rdc
.last_block_no
= cpu_to_be32(ha
->hdr
[t
].size
-1);
2392 rdc
.block_length
= cpu_to_be32(SECTOR_SIZE
);
2393 gdth_copy_internal_data(ha
, scp
, (char*)&rdc
, sizeof(gdth_rdcap_data
));
2396 case SERVICE_ACTION_IN
:
2397 if ((scp
->cmnd
[1] & 0x1f) == SAI_READ_CAPACITY_16
&&
2398 (ha
->cache_feat
& GDT_64BIT
)) {
2399 gdth_rdcap16_data rdc16
;
2401 TRACE2(("Read capacity (16) hdrive %d\n",t
));
2402 rdc16
.last_block_no
= cpu_to_be64(ha
->hdr
[t
].size
-1);
2403 rdc16
.block_length
= cpu_to_be32(SECTOR_SIZE
);
2404 gdth_copy_internal_data(ha
, scp
, (char*)&rdc16
,
2405 sizeof(gdth_rdcap16_data
));
2407 scp
->result
= DID_ABORT
<< 16;
2412 TRACE2(("Internal cache cmd 0x%x unknown\n",scp
->cmnd
[0]));
2416 if (!cmndinfo
->wait_for_completion
)
2417 cmndinfo
->wait_for_completion
++;
2424 static int gdth_fill_cache_cmd(gdth_ha_str
*ha
, Scsi_Cmnd
*scp
, u16 hdrive
)
2426 register gdth_cmd_str
*cmdp
;
2427 struct gdth_cmndinfo
*cmndinfo
= gdth_cmnd_priv(scp
);
2430 int i
, cmd_index
, read_write
, sgcnt
, mode64
;
2433 TRACE(("gdth_fill_cache_cmd() cmd 0x%x cmdsize %d hdrive %d\n",
2434 scp
->cmnd
[0],scp
->cmd_len
,hdrive
));
2436 if (ha
->type
==GDT_EISA
&& ha
->cmd_cnt
>0)
2439 mode64
= (ha
->cache_feat
& GDT_64BIT
) ? TRUE
: FALSE
;
2440 /* test for READ_16, WRITE_16 if !mode64 ? ---
2441 not required, should not occur due to error return on
2444 cmdp
->Service
= CACHESERVICE
;
2445 cmdp
->RequestBuffer
= scp
;
2446 /* search free command index */
2447 if (!(cmd_index
=gdth_get_cmd_index(ha
))) {
2448 TRACE(("GDT: No free command index found\n"));
2451 /* if it's the first command, set command semaphore */
2452 if (ha
->cmd_cnt
== 0)
2457 if (cmndinfo
->OpCode
!= -1)
2458 cmdp
->OpCode
= cmndinfo
->OpCode
; /* special cache cmd. */
2459 else if (scp
->cmnd
[0] == RESERVE
)
2460 cmdp
->OpCode
= GDT_RESERVE_DRV
;
2461 else if (scp
->cmnd
[0] == RELEASE
)
2462 cmdp
->OpCode
= GDT_RELEASE_DRV
;
2463 else if (scp
->cmnd
[0] == ALLOW_MEDIUM_REMOVAL
) {
2464 if (scp
->cmnd
[4] & 1) /* prevent ? */
2465 cmdp
->OpCode
= GDT_MOUNT
;
2466 else if (scp
->cmnd
[3] & 1) /* removable drive ? */
2467 cmdp
->OpCode
= GDT_UNMOUNT
;
2469 cmdp
->OpCode
= GDT_FLUSH
;
2470 } else if (scp
->cmnd
[0] == WRITE_6
|| scp
->cmnd
[0] == WRITE_10
||
2471 scp
->cmnd
[0] == WRITE_12
|| scp
->cmnd
[0] == WRITE_16
2474 if (gdth_write_through
|| ((ha
->hdr
[hdrive
].rw_attribs
& 1) &&
2475 (ha
->cache_feat
& GDT_WR_THROUGH
)))
2476 cmdp
->OpCode
= GDT_WRITE_THR
;
2478 cmdp
->OpCode
= GDT_WRITE
;
2481 cmdp
->OpCode
= GDT_READ
;
2484 cmdp
->BoardNode
= LOCALBOARD
;
2486 cmdp
->u
.cache64
.DeviceNo
= hdrive
;
2487 cmdp
->u
.cache64
.BlockNo
= 1;
2488 cmdp
->u
.cache64
.sg_canz
= 0;
2490 cmdp
->u
.cache
.DeviceNo
= hdrive
;
2491 cmdp
->u
.cache
.BlockNo
= 1;
2492 cmdp
->u
.cache
.sg_canz
= 0;
2496 if (scp
->cmd_len
== 16) {
2497 memcpy(&no
, &scp
->cmnd
[2], sizeof(u64
));
2498 blockno
= be64_to_cpu(no
);
2499 memcpy(&cnt
, &scp
->cmnd
[10], sizeof(u32
));
2500 blockcnt
= be32_to_cpu(cnt
);
2501 } else if (scp
->cmd_len
== 10) {
2502 memcpy(&no
, &scp
->cmnd
[2], sizeof(u32
));
2503 blockno
= be32_to_cpu(no
);
2504 memcpy(&cnt
, &scp
->cmnd
[7], sizeof(u16
));
2505 blockcnt
= be16_to_cpu(cnt
);
2507 memcpy(&no
, &scp
->cmnd
[0], sizeof(u32
));
2508 blockno
= be32_to_cpu(no
) & 0x001fffffUL
;
2509 blockcnt
= scp
->cmnd
[4]==0 ? 0x100 : scp
->cmnd
[4];
2512 cmdp
->u
.cache64
.BlockNo
= blockno
;
2513 cmdp
->u
.cache64
.BlockCnt
= blockcnt
;
2515 cmdp
->u
.cache
.BlockNo
= (u32
)blockno
;
2516 cmdp
->u
.cache
.BlockCnt
= blockcnt
;
2519 if (scsi_bufflen(scp
)) {
2520 cmndinfo
->dma_dir
= (read_write
== 1 ?
2521 PCI_DMA_TODEVICE
: PCI_DMA_FROMDEVICE
);
2522 sgcnt
= pci_map_sg(ha
->pdev
, scsi_sglist(scp
), scsi_sg_count(scp
),
2525 struct scatterlist
*sl
;
2527 cmdp
->u
.cache64
.DestAddr
= (u64
)-1;
2528 cmdp
->u
.cache64
.sg_canz
= sgcnt
;
2529 scsi_for_each_sg(scp
, sl
, sgcnt
, i
) {
2530 cmdp
->u
.cache64
.sg_lst
[i
].sg_ptr
= sg_dma_address(sl
);
2531 #ifdef GDTH_DMA_STATISTICS
2532 if (cmdp
->u
.cache64
.sg_lst
[i
].sg_ptr
> (u64
)0xffffffff)
2537 cmdp
->u
.cache64
.sg_lst
[i
].sg_len
= sg_dma_len(sl
);
2540 struct scatterlist
*sl
;
2542 cmdp
->u
.cache
.DestAddr
= 0xffffffff;
2543 cmdp
->u
.cache
.sg_canz
= sgcnt
;
2544 scsi_for_each_sg(scp
, sl
, sgcnt
, i
) {
2545 cmdp
->u
.cache
.sg_lst
[i
].sg_ptr
= sg_dma_address(sl
);
2546 #ifdef GDTH_DMA_STATISTICS
2549 cmdp
->u
.cache
.sg_lst
[i
].sg_len
= sg_dma_len(sl
);
2553 #ifdef GDTH_STATISTICS
2554 if (max_sg
< (u32
)sgcnt
) {
2555 max_sg
= (u32
)sgcnt
;
2556 TRACE3(("GDT: max_sg = %d\n",max_sg
));
2562 /* evaluate command size, check space */
2564 TRACE(("cache cmd: addr. %x sganz %x sgptr0 %x sglen0 %x\n",
2565 cmdp
->u
.cache64
.DestAddr
,cmdp
->u
.cache64
.sg_canz
,
2566 cmdp
->u
.cache64
.sg_lst
[0].sg_ptr
,
2567 cmdp
->u
.cache64
.sg_lst
[0].sg_len
));
2568 TRACE(("cache cmd: cmd %d blockno. %d, blockcnt %d\n",
2569 cmdp
->OpCode
,cmdp
->u
.cache64
.BlockNo
,cmdp
->u
.cache64
.BlockCnt
));
2570 ha
->cmd_len
= GDTOFFSOF(gdth_cmd_str
,u
.cache64
.sg_lst
) +
2571 (u16
)cmdp
->u
.cache64
.sg_canz
* sizeof(gdth_sg64_str
);
2573 TRACE(("cache cmd: addr. %x sganz %x sgptr0 %x sglen0 %x\n",
2574 cmdp
->u
.cache
.DestAddr
,cmdp
->u
.cache
.sg_canz
,
2575 cmdp
->u
.cache
.sg_lst
[0].sg_ptr
,
2576 cmdp
->u
.cache
.sg_lst
[0].sg_len
));
2577 TRACE(("cache cmd: cmd %d blockno. %d, blockcnt %d\n",
2578 cmdp
->OpCode
,cmdp
->u
.cache
.BlockNo
,cmdp
->u
.cache
.BlockCnt
));
2579 ha
->cmd_len
= GDTOFFSOF(gdth_cmd_str
,u
.cache
.sg_lst
) +
2580 (u16
)cmdp
->u
.cache
.sg_canz
* sizeof(gdth_sg_str
);
2582 if (ha
->cmd_len
& 3)
2583 ha
->cmd_len
+= (4 - (ha
->cmd_len
& 3));
2585 if (ha
->cmd_cnt
> 0) {
2586 if ((ha
->cmd_offs_dpmem
+ ha
->cmd_len
+ DPMEM_COMMAND_OFFSET
) >
2588 TRACE2(("gdth_fill_cache() DPMEM overflow\n"));
2589 ha
->cmd_tab
[cmd_index
-2].cmnd
= UNUSED_CMND
;
2595 gdth_copy_command(ha
);
2599 static int gdth_fill_raw_cmd(gdth_ha_str
*ha
, Scsi_Cmnd
*scp
, u8 b
)
2601 register gdth_cmd_str
*cmdp
;
2603 dma_addr_t sense_paddr
;
2604 int cmd_index
, sgcnt
, mode64
;
2607 unsigned long offset
;
2608 struct gdth_cmndinfo
*cmndinfo
;
2610 t
= scp
->device
->id
;
2611 l
= scp
->device
->lun
;
2613 TRACE(("gdth_fill_raw_cmd() cmd 0x%x bus %d ID %d LUN %d\n",
2614 scp
->cmnd
[0],b
,t
,l
));
2616 if (ha
->type
==GDT_EISA
&& ha
->cmd_cnt
>0)
2619 mode64
= (ha
->raw_feat
& GDT_64BIT
) ? TRUE
: FALSE
;
2621 cmdp
->Service
= SCSIRAWSERVICE
;
2622 cmdp
->RequestBuffer
= scp
;
2623 /* search free command index */
2624 if (!(cmd_index
=gdth_get_cmd_index(ha
))) {
2625 TRACE(("GDT: No free command index found\n"));
2628 /* if it's the first command, set command semaphore */
2629 if (ha
->cmd_cnt
== 0)
2632 cmndinfo
= gdth_cmnd_priv(scp
);
2634 if (cmndinfo
->OpCode
!= -1) {
2635 cmdp
->OpCode
= cmndinfo
->OpCode
; /* special raw cmd. */
2636 cmdp
->BoardNode
= LOCALBOARD
;
2638 cmdp
->u
.raw64
.direction
= (cmndinfo
->phase
>> 8);
2639 TRACE2(("special raw cmd 0x%x param 0x%x\n",
2640 cmdp
->OpCode
, cmdp
->u
.raw64
.direction
));
2641 /* evaluate command size */
2642 ha
->cmd_len
= GDTOFFSOF(gdth_cmd_str
,u
.raw64
.sg_lst
);
2644 cmdp
->u
.raw
.direction
= (cmndinfo
->phase
>> 8);
2645 TRACE2(("special raw cmd 0x%x param 0x%x\n",
2646 cmdp
->OpCode
, cmdp
->u
.raw
.direction
));
2647 /* evaluate command size */
2648 ha
->cmd_len
= GDTOFFSOF(gdth_cmd_str
,u
.raw
.sg_lst
);
2652 page
= virt_to_page(scp
->sense_buffer
);
2653 offset
= (unsigned long)scp
->sense_buffer
& ~PAGE_MASK
;
2654 sense_paddr
= pci_map_page(ha
->pdev
,page
,offset
,
2655 16,PCI_DMA_FROMDEVICE
);
2657 cmndinfo
->sense_paddr
= sense_paddr
;
2658 cmdp
->OpCode
= GDT_WRITE
; /* always */
2659 cmdp
->BoardNode
= LOCALBOARD
;
2661 cmdp
->u
.raw64
.reserved
= 0;
2662 cmdp
->u
.raw64
.mdisc_time
= 0;
2663 cmdp
->u
.raw64
.mcon_time
= 0;
2664 cmdp
->u
.raw64
.clen
= scp
->cmd_len
;
2665 cmdp
->u
.raw64
.target
= t
;
2666 cmdp
->u
.raw64
.lun
= l
;
2667 cmdp
->u
.raw64
.bus
= b
;
2668 cmdp
->u
.raw64
.priority
= 0;
2669 cmdp
->u
.raw64
.sdlen
= scsi_bufflen(scp
);
2670 cmdp
->u
.raw64
.sense_len
= 16;
2671 cmdp
->u
.raw64
.sense_data
= sense_paddr
;
2672 cmdp
->u
.raw64
.direction
=
2673 gdth_direction_tab
[scp
->cmnd
[0]]==DOU
? GDTH_DATA_OUT
:GDTH_DATA_IN
;
2674 memcpy(cmdp
->u
.raw64
.cmd
,scp
->cmnd
,16);
2675 cmdp
->u
.raw64
.sg_ranz
= 0;
2677 cmdp
->u
.raw
.reserved
= 0;
2678 cmdp
->u
.raw
.mdisc_time
= 0;
2679 cmdp
->u
.raw
.mcon_time
= 0;
2680 cmdp
->u
.raw
.clen
= scp
->cmd_len
;
2681 cmdp
->u
.raw
.target
= t
;
2682 cmdp
->u
.raw
.lun
= l
;
2683 cmdp
->u
.raw
.bus
= b
;
2684 cmdp
->u
.raw
.priority
= 0;
2685 cmdp
->u
.raw
.link_p
= 0;
2686 cmdp
->u
.raw
.sdlen
= scsi_bufflen(scp
);
2687 cmdp
->u
.raw
.sense_len
= 16;
2688 cmdp
->u
.raw
.sense_data
= sense_paddr
;
2689 cmdp
->u
.raw
.direction
=
2690 gdth_direction_tab
[scp
->cmnd
[0]]==DOU
? GDTH_DATA_OUT
:GDTH_DATA_IN
;
2691 memcpy(cmdp
->u
.raw
.cmd
,scp
->cmnd
,12);
2692 cmdp
->u
.raw
.sg_ranz
= 0;
2695 if (scsi_bufflen(scp
)) {
2696 cmndinfo
->dma_dir
= PCI_DMA_BIDIRECTIONAL
;
2697 sgcnt
= pci_map_sg(ha
->pdev
, scsi_sglist(scp
), scsi_sg_count(scp
),
2700 struct scatterlist
*sl
;
2702 cmdp
->u
.raw64
.sdata
= (u64
)-1;
2703 cmdp
->u
.raw64
.sg_ranz
= sgcnt
;
2704 scsi_for_each_sg(scp
, sl
, sgcnt
, i
) {
2705 cmdp
->u
.raw64
.sg_lst
[i
].sg_ptr
= sg_dma_address(sl
);
2706 #ifdef GDTH_DMA_STATISTICS
2707 if (cmdp
->u
.raw64
.sg_lst
[i
].sg_ptr
> (u64
)0xffffffff)
2712 cmdp
->u
.raw64
.sg_lst
[i
].sg_len
= sg_dma_len(sl
);
2715 struct scatterlist
*sl
;
2717 cmdp
->u
.raw
.sdata
= 0xffffffff;
2718 cmdp
->u
.raw
.sg_ranz
= sgcnt
;
2719 scsi_for_each_sg(scp
, sl
, sgcnt
, i
) {
2720 cmdp
->u
.raw
.sg_lst
[i
].sg_ptr
= sg_dma_address(sl
);
2721 #ifdef GDTH_DMA_STATISTICS
2724 cmdp
->u
.raw
.sg_lst
[i
].sg_len
= sg_dma_len(sl
);
2728 #ifdef GDTH_STATISTICS
2729 if (max_sg
< sgcnt
) {
2731 TRACE3(("GDT: max_sg = %d\n",sgcnt
));
2737 TRACE(("raw cmd: addr. %x sganz %x sgptr0 %x sglen0 %x\n",
2738 cmdp
->u
.raw64
.sdata
,cmdp
->u
.raw64
.sg_ranz
,
2739 cmdp
->u
.raw64
.sg_lst
[0].sg_ptr
,
2740 cmdp
->u
.raw64
.sg_lst
[0].sg_len
));
2741 /* evaluate command size */
2742 ha
->cmd_len
= GDTOFFSOF(gdth_cmd_str
,u
.raw64
.sg_lst
) +
2743 (u16
)cmdp
->u
.raw64
.sg_ranz
* sizeof(gdth_sg64_str
);
2745 TRACE(("raw cmd: addr. %x sganz %x sgptr0 %x sglen0 %x\n",
2746 cmdp
->u
.raw
.sdata
,cmdp
->u
.raw
.sg_ranz
,
2747 cmdp
->u
.raw
.sg_lst
[0].sg_ptr
,
2748 cmdp
->u
.raw
.sg_lst
[0].sg_len
));
2749 /* evaluate command size */
2750 ha
->cmd_len
= GDTOFFSOF(gdth_cmd_str
,u
.raw
.sg_lst
) +
2751 (u16
)cmdp
->u
.raw
.sg_ranz
* sizeof(gdth_sg_str
);
2755 if (ha
->cmd_len
& 3)
2756 ha
->cmd_len
+= (4 - (ha
->cmd_len
& 3));
2758 if (ha
->cmd_cnt
> 0) {
2759 if ((ha
->cmd_offs_dpmem
+ ha
->cmd_len
+ DPMEM_COMMAND_OFFSET
) >
2761 TRACE2(("gdth_fill_raw() DPMEM overflow\n"));
2762 ha
->cmd_tab
[cmd_index
-2].cmnd
= UNUSED_CMND
;
2768 gdth_copy_command(ha
);
2772 static int gdth_special_cmd(gdth_ha_str
*ha
, Scsi_Cmnd
*scp
)
2774 register gdth_cmd_str
*cmdp
;
2775 struct gdth_cmndinfo
*cmndinfo
= gdth_cmnd_priv(scp
);
2779 TRACE2(("gdth_special_cmd(): "));
2781 if (ha
->type
==GDT_EISA
&& ha
->cmd_cnt
>0)
2784 *cmdp
= *cmndinfo
->internal_cmd_str
;
2785 cmdp
->RequestBuffer
= scp
;
2787 /* search free command index */
2788 if (!(cmd_index
=gdth_get_cmd_index(ha
))) {
2789 TRACE(("GDT: No free command index found\n"));
2793 /* if it's the first command, set command semaphore */
2794 if (ha
->cmd_cnt
== 0)
2797 /* evaluate command size, check space */
2798 if (cmdp
->OpCode
== GDT_IOCTL
) {
2799 TRACE2(("IOCTL\n"));
2801 GDTOFFSOF(gdth_cmd_str
,u
.ioctl
.p_param
) + sizeof(u64
);
2802 } else if (cmdp
->Service
== CACHESERVICE
) {
2803 TRACE2(("cache command %d\n",cmdp
->OpCode
));
2804 if (ha
->cache_feat
& GDT_64BIT
)
2806 GDTOFFSOF(gdth_cmd_str
,u
.cache64
.sg_lst
) + sizeof(gdth_sg64_str
);
2809 GDTOFFSOF(gdth_cmd_str
,u
.cache
.sg_lst
) + sizeof(gdth_sg_str
);
2810 } else if (cmdp
->Service
== SCSIRAWSERVICE
) {
2811 TRACE2(("raw command %d\n",cmdp
->OpCode
));
2812 if (ha
->raw_feat
& GDT_64BIT
)
2814 GDTOFFSOF(gdth_cmd_str
,u
.raw64
.sg_lst
) + sizeof(gdth_sg64_str
);
2817 GDTOFFSOF(gdth_cmd_str
,u
.raw
.sg_lst
) + sizeof(gdth_sg_str
);
2820 if (ha
->cmd_len
& 3)
2821 ha
->cmd_len
+= (4 - (ha
->cmd_len
& 3));
2823 if (ha
->cmd_cnt
> 0) {
2824 if ((ha
->cmd_offs_dpmem
+ ha
->cmd_len
+ DPMEM_COMMAND_OFFSET
) >
2826 TRACE2(("gdth_special_cmd() DPMEM overflow\n"));
2827 ha
->cmd_tab
[cmd_index
-2].cmnd
= UNUSED_CMND
;
2833 gdth_copy_command(ha
);
2838 /* Controller event handling functions */
2839 static gdth_evt_str
*gdth_store_event(gdth_ha_str
*ha
, u16 source
,
2840 u16 idx
, gdth_evt_data
*evt
)
2845 /* no GDTH_LOCK_HA() ! */
2846 TRACE2(("gdth_store_event() source %d idx %d\n", source
, idx
));
2847 if (source
== 0) /* no source -> no event */
2850 if (ebuffer
[elastidx
].event_source
== source
&&
2851 ebuffer
[elastidx
].event_idx
== idx
&&
2852 ((evt
->size
!= 0 && ebuffer
[elastidx
].event_data
.size
!= 0 &&
2853 !memcmp((char *)&ebuffer
[elastidx
].event_data
.eu
,
2854 (char *)&evt
->eu
, evt
->size
)) ||
2855 (evt
->size
== 0 && ebuffer
[elastidx
].event_data
.size
== 0 &&
2856 !strcmp((char *)&ebuffer
[elastidx
].event_data
.event_string
,
2857 (char *)&evt
->event_string
)))) {
2858 e
= &ebuffer
[elastidx
];
2859 do_gettimeofday(&tv
);
2860 e
->last_stamp
= tv
.tv_sec
;
2863 if (ebuffer
[elastidx
].event_source
!= 0) { /* entry not free ? */
2865 if (elastidx
== MAX_EVENTS
)
2867 if (elastidx
== eoldidx
) { /* reached mark ? */
2869 if (eoldidx
== MAX_EVENTS
)
2873 e
= &ebuffer
[elastidx
];
2874 e
->event_source
= source
;
2876 do_gettimeofday(&tv
);
2877 e
->first_stamp
= e
->last_stamp
= tv
.tv_sec
;
2879 e
->event_data
= *evt
;
2885 static int gdth_read_event(gdth_ha_str
*ha
, int handle
, gdth_evt_str
*estr
)
2889 unsigned long flags
;
2891 TRACE2(("gdth_read_event() handle %d\n", handle
));
2892 spin_lock_irqsave(&ha
->smp_lock
, flags
);
2897 estr
->event_source
= 0;
2899 if (eindex
< 0 || eindex
>= MAX_EVENTS
) {
2900 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
2903 e
= &ebuffer
[eindex
];
2904 if (e
->event_source
!= 0) {
2905 if (eindex
!= elastidx
) {
2906 if (++eindex
== MAX_EVENTS
)
2911 memcpy(estr
, e
, sizeof(gdth_evt_str
));
2913 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
2917 static void gdth_readapp_event(gdth_ha_str
*ha
,
2918 u8 application
, gdth_evt_str
*estr
)
2922 unsigned long flags
;
2925 TRACE2(("gdth_readapp_event() app. %d\n", application
));
2926 spin_lock_irqsave(&ha
->smp_lock
, flags
);
2929 e
= &ebuffer
[eindex
];
2930 if (e
->event_source
== 0)
2932 if ((e
->application
& application
) == 0) {
2933 e
->application
|= application
;
2937 if (eindex
== elastidx
)
2939 if (++eindex
== MAX_EVENTS
)
2943 memcpy(estr
, e
, sizeof(gdth_evt_str
));
2945 estr
->event_source
= 0;
2946 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
2949 static void gdth_clear_events(void)
2951 TRACE(("gdth_clear_events()"));
2953 eoldidx
= elastidx
= 0;
2954 ebuffer
[0].event_source
= 0;
2958 /* SCSI interface functions */
2960 static irqreturn_t
__gdth_interrupt(gdth_ha_str
*ha
,
2961 int gdth_from_wait
, int* pIndex
)
2963 gdt6m_dpram_str __iomem
*dp6m_ptr
= NULL
;
2964 gdt6_dpram_str __iomem
*dp6_ptr
;
2965 gdt2_dpram_str __iomem
*dp2_ptr
;
2970 unsigned long flags
= 0;
2972 int coalesced
= FALSE
;
2974 gdth_coal_status
*pcs
= NULL
;
2975 int act_int_coal
= 0;
2978 TRACE(("gdth_interrupt() IRQ %d\n", ha
->irq
));
2980 /* if polling and not from gdth_wait() -> return */
2982 if (!gdth_from_wait
) {
2988 spin_lock_irqsave(&ha
->smp_lock
, flags
);
2990 /* search controller */
2991 IStatus
= gdth_get_status(ha
);
2993 /* spurious interrupt */
2995 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
2999 #ifdef GDTH_STATISTICS
3004 /* See if the fw is returning coalesced status */
3005 if (IStatus
== COALINDEX
) {
3006 /* Coalesced status. Setup the initial status
3007 buffer pointer and flags */
3008 pcs
= ha
->coal_stat
;
3015 /* For coalesced requests all status
3016 information is found in the status buffer */
3017 IStatus
= (u8
)(pcs
->status
& 0xff);
3021 if (ha
->type
== GDT_EISA
) {
3022 if (IStatus
& 0x80) { /* error flag */
3024 ha
->status
= inw(ha
->bmic
+ MAILBOXREG
+8);
3025 TRACE2(("gdth_interrupt() error %d/%d\n",IStatus
,ha
->status
));
3026 } else /* no error */
3028 ha
->info
= inl(ha
->bmic
+ MAILBOXREG
+12);
3029 ha
->service
= inw(ha
->bmic
+ MAILBOXREG
+10);
3030 ha
->info2
= inl(ha
->bmic
+ MAILBOXREG
+4);
3032 outb(0xff, ha
->bmic
+ EDOORREG
); /* acknowledge interrupt */
3033 outb(0x00, ha
->bmic
+ SEMA1REG
); /* reset status semaphore */
3034 } else if (ha
->type
== GDT_ISA
) {
3036 if (IStatus
& 0x80) { /* error flag */
3038 ha
->status
= readw(&dp2_ptr
->u
.ic
.Status
);
3039 TRACE2(("gdth_interrupt() error %d/%d\n",IStatus
,ha
->status
));
3040 } else /* no error */
3042 ha
->info
= readl(&dp2_ptr
->u
.ic
.Info
[0]);
3043 ha
->service
= readw(&dp2_ptr
->u
.ic
.Service
);
3044 ha
->info2
= readl(&dp2_ptr
->u
.ic
.Info
[1]);
3046 writeb(0xff, &dp2_ptr
->io
.irqdel
); /* acknowledge interrupt */
3047 writeb(0, &dp2_ptr
->u
.ic
.Cmd_Index
);/* reset command index */
3048 writeb(0, &dp2_ptr
->io
.Sema1
); /* reset status semaphore */
3049 } else if (ha
->type
== GDT_PCI
) {
3051 if (IStatus
& 0x80) { /* error flag */
3053 ha
->status
= readw(&dp6_ptr
->u
.ic
.Status
);
3054 TRACE2(("gdth_interrupt() error %d/%d\n",IStatus
,ha
->status
));
3055 } else /* no error */
3057 ha
->info
= readl(&dp6_ptr
->u
.ic
.Info
[0]);
3058 ha
->service
= readw(&dp6_ptr
->u
.ic
.Service
);
3059 ha
->info2
= readl(&dp6_ptr
->u
.ic
.Info
[1]);
3061 writeb(0xff, &dp6_ptr
->io
.irqdel
); /* acknowledge interrupt */
3062 writeb(0, &dp6_ptr
->u
.ic
.Cmd_Index
);/* reset command index */
3063 writeb(0, &dp6_ptr
->io
.Sema1
); /* reset status semaphore */
3064 } else if (ha
->type
== GDT_PCINEW
) {
3065 if (IStatus
& 0x80) { /* error flag */
3067 ha
->status
= inw(PTR2USHORT(&ha
->plx
->status
));
3068 TRACE2(("gdth_interrupt() error %d/%d\n",IStatus
,ha
->status
));
3071 ha
->info
= inl(PTR2USHORT(&ha
->plx
->info
[0]));
3072 ha
->service
= inw(PTR2USHORT(&ha
->plx
->service
));
3073 ha
->info2
= inl(PTR2USHORT(&ha
->plx
->info
[1]));
3075 outb(0xff, PTR2USHORT(&ha
->plx
->edoor_reg
));
3076 outb(0x00, PTR2USHORT(&ha
->plx
->sema1_reg
));
3077 } else if (ha
->type
== GDT_PCIMPR
) {
3079 if (IStatus
& 0x80) { /* error flag */
3083 ha
->status
= pcs
->ext_status
& 0xffff;
3086 ha
->status
= readw(&dp6m_ptr
->i960r
.status
);
3087 TRACE2(("gdth_interrupt() error %d/%d\n",IStatus
,ha
->status
));
3088 } else /* no error */
3091 /* get information */
3093 ha
->info
= pcs
->info0
;
3094 ha
->info2
= pcs
->info1
;
3095 ha
->service
= (pcs
->ext_status
>> 16) & 0xffff;
3099 ha
->info
= readl(&dp6m_ptr
->i960r
.info
[0]);
3100 ha
->service
= readw(&dp6m_ptr
->i960r
.service
);
3101 ha
->info2
= readl(&dp6m_ptr
->i960r
.info
[1]);
3104 if (IStatus
== ASYNCINDEX
) {
3105 if (ha
->service
!= SCREENSERVICE
&&
3106 (ha
->fw_vers
& 0xff) >= 0x1a) {
3107 ha
->dvr
.severity
= readb
3108 (&((gdt6m_dpram_str __iomem
*)ha
->brd
)->i960r
.severity
);
3109 for (i
= 0; i
< 256; ++i
) {
3110 ha
->dvr
.event_string
[i
] = readb
3111 (&((gdt6m_dpram_str __iomem
*)ha
->brd
)->i960r
.evt_str
[i
]);
3112 if (ha
->dvr
.event_string
[i
] == 0)
3118 /* Make sure that non coalesced interrupts get cleared
3119 before being handled by gdth_async_event/gdth_sync_event */
3123 writeb(0xff, &dp6m_ptr
->i960r
.edoor_reg
);
3124 writeb(0, &dp6m_ptr
->i960r
.sema1_reg
);
3127 TRACE2(("gdth_interrupt() unknown controller type\n"));
3129 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
3133 TRACE(("gdth_interrupt() index %d stat %d info %d\n",
3134 IStatus
,ha
->status
,ha
->info
));
3136 if (gdth_from_wait
) {
3137 *pIndex
= (int)IStatus
;
3140 if (IStatus
== ASYNCINDEX
) {
3141 TRACE2(("gdth_interrupt() async. event\n"));
3142 gdth_async_event(ha
);
3144 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
3149 if (IStatus
== SPEZINDEX
) {
3150 TRACE2(("Service unknown or not initialized !\n"));
3151 ha
->dvr
.size
= sizeof(ha
->dvr
.eu
.driver
);
3152 ha
->dvr
.eu
.driver
.ionode
= ha
->hanum
;
3153 gdth_store_event(ha
, ES_DRIVER
, 4, &ha
->dvr
);
3155 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
3158 scp
= ha
->cmd_tab
[IStatus
-2].cmnd
;
3159 Service
= ha
->cmd_tab
[IStatus
-2].service
;
3160 ha
->cmd_tab
[IStatus
-2].cmnd
= UNUSED_CMND
;
3161 if (scp
== UNUSED_CMND
) {
3162 TRACE2(("gdth_interrupt() index to unused command (%d)\n",IStatus
));
3163 ha
->dvr
.size
= sizeof(ha
->dvr
.eu
.driver
);
3164 ha
->dvr
.eu
.driver
.ionode
= ha
->hanum
;
3165 ha
->dvr
.eu
.driver
.index
= IStatus
;
3166 gdth_store_event(ha
, ES_DRIVER
, 1, &ha
->dvr
);
3168 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
3171 if (scp
== INTERNAL_CMND
) {
3172 TRACE(("gdth_interrupt() answer to internal command\n"));
3174 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
3178 TRACE(("gdth_interrupt() sync. status\n"));
3179 rval
= gdth_sync_event(ha
,Service
,IStatus
,scp
);
3181 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
3183 gdth_putq(ha
, scp
, gdth_cmnd_priv(scp
)->priority
);
3184 } else if (rval
== 1) {
3185 gdth_scsi_done(scp
);
3190 /* go to the next status in the status buffer */
3192 #ifdef GDTH_STATISTICS
3194 if (act_int_coal
> max_int_coal
) {
3195 max_int_coal
= act_int_coal
;
3196 printk("GDT: max_int_coal = %d\n",(u16
)max_int_coal
);
3199 /* see if there is another status */
3200 if (pcs
->status
== 0)
3201 /* Stop the coalesce loop */
3206 /* coalescing only for new GDT_PCIMPR controllers available */
3207 if (ha
->type
== GDT_PCIMPR
&& coalesced
) {
3208 writeb(0xff, &dp6m_ptr
->i960r
.edoor_reg
);
3209 writeb(0, &dp6m_ptr
->i960r
.sema1_reg
);
3217 static irqreturn_t
gdth_interrupt(int irq
, void *dev_id
)
3219 gdth_ha_str
*ha
= dev_id
;
3221 return __gdth_interrupt(ha
, false, NULL
);
3224 static int gdth_sync_event(gdth_ha_str
*ha
, int service
, u8 index
,
3230 struct gdth_cmndinfo
*cmndinfo
= gdth_cmnd_priv(scp
);
3233 TRACE(("gdth_sync_event() serv %d status %d\n",
3234 service
,ha
->status
));
3236 if (service
== SCREENSERVICE
) {
3238 TRACE(("len: %d, answer: %d, ext: %d, alen: %d\n",
3239 msg
->msg_len
,msg
->msg_answer
,msg
->msg_ext
,msg
->msg_alen
));
3240 if (msg
->msg_len
> MSGLEN
+1)
3241 msg
->msg_len
= MSGLEN
+1;
3243 if (!(msg
->msg_answer
&& msg
->msg_ext
)) {
3244 msg
->msg_text
[msg
->msg_len
] = '\0';
3245 printk("%s",msg
->msg_text
);
3248 if (msg
->msg_ext
&& !msg
->msg_answer
) {
3249 while (gdth_test_busy(ha
))
3251 cmdp
->Service
= SCREENSERVICE
;
3252 cmdp
->RequestBuffer
= SCREEN_CMND
;
3253 gdth_get_cmd_index(ha
);
3255 cmdp
->OpCode
= GDT_READ
;
3256 cmdp
->BoardNode
= LOCALBOARD
;
3257 cmdp
->u
.screen
.reserved
= 0;
3258 cmdp
->u
.screen
.su
.msg
.msg_handle
= msg
->msg_handle
;
3259 cmdp
->u
.screen
.su
.msg
.msg_addr
= ha
->msg_phys
;
3260 ha
->cmd_offs_dpmem
= 0;
3261 ha
->cmd_len
= GDTOFFSOF(gdth_cmd_str
,u
.screen
.su
.msg
.msg_addr
)
3264 gdth_copy_command(ha
);
3265 gdth_release_event(ha
);
3269 if (msg
->msg_answer
&& msg
->msg_alen
) {
3270 /* default answers (getchar() not possible) */
3271 if (msg
->msg_alen
== 1) {
3274 msg
->msg_text
[0] = 0;
3278 msg
->msg_text
[0] = 1;
3279 msg
->msg_text
[1] = 0;
3282 msg
->msg_answer
= 0;
3283 while (gdth_test_busy(ha
))
3285 cmdp
->Service
= SCREENSERVICE
;
3286 cmdp
->RequestBuffer
= SCREEN_CMND
;
3287 gdth_get_cmd_index(ha
);
3289 cmdp
->OpCode
= GDT_WRITE
;
3290 cmdp
->BoardNode
= LOCALBOARD
;
3291 cmdp
->u
.screen
.reserved
= 0;
3292 cmdp
->u
.screen
.su
.msg
.msg_handle
= msg
->msg_handle
;
3293 cmdp
->u
.screen
.su
.msg
.msg_addr
= ha
->msg_phys
;
3294 ha
->cmd_offs_dpmem
= 0;
3295 ha
->cmd_len
= GDTOFFSOF(gdth_cmd_str
,u
.screen
.su
.msg
.msg_addr
)
3298 gdth_copy_command(ha
);
3299 gdth_release_event(ha
);
3305 b
= scp
->device
->channel
;
3306 t
= scp
->device
->id
;
3307 if (cmndinfo
->OpCode
== -1 && b
!= ha
->virt_bus
) {
3308 ha
->raw
[BUS_L2P(ha
,b
)].io_cnt
[t
]--;
3310 /* cache or raw service */
3311 if (ha
->status
== S_BSY
) {
3312 TRACE2(("Controller busy -> retry !\n"));
3313 if (cmndinfo
->OpCode
== GDT_MOUNT
)
3314 cmndinfo
->OpCode
= GDT_CLUST_INFO
;
3318 if (scsi_bufflen(scp
))
3319 pci_unmap_sg(ha
->pdev
, scsi_sglist(scp
), scsi_sg_count(scp
),
3322 if (cmndinfo
->sense_paddr
)
3323 pci_unmap_page(ha
->pdev
, cmndinfo
->sense_paddr
, 16,
3324 PCI_DMA_FROMDEVICE
);
3326 if (ha
->status
== S_OK
) {
3327 cmndinfo
->status
= S_OK
;
3328 cmndinfo
->info
= ha
->info
;
3329 if (cmndinfo
->OpCode
!= -1) {
3330 TRACE2(("gdth_sync_event(): special cmd 0x%x OK\n",
3332 /* special commands GDT_CLUST_INFO/GDT_MOUNT ? */
3333 if (cmndinfo
->OpCode
== GDT_CLUST_INFO
) {
3334 ha
->hdr
[t
].cluster_type
= (u8
)ha
->info
;
3335 if (!(ha
->hdr
[t
].cluster_type
&
3337 /* NOT MOUNTED -> MOUNT */
3338 cmndinfo
->OpCode
= GDT_MOUNT
;
3339 if (ha
->hdr
[t
].cluster_type
&
3341 /* cluster drive RESERVED (on the other node) */
3342 cmndinfo
->phase
= -2; /* reservation conflict */
3345 cmndinfo
->OpCode
= -1;
3348 if (cmndinfo
->OpCode
== GDT_MOUNT
) {
3349 ha
->hdr
[t
].cluster_type
|= CLUSTER_MOUNTED
;
3350 ha
->hdr
[t
].media_changed
= TRUE
;
3351 } else if (cmndinfo
->OpCode
== GDT_UNMOUNT
) {
3352 ha
->hdr
[t
].cluster_type
&= ~CLUSTER_MOUNTED
;
3353 ha
->hdr
[t
].media_changed
= TRUE
;
3355 cmndinfo
->OpCode
= -1;
3358 cmndinfo
->priority
= HIGH_PRI
;
3361 /* RESERVE/RELEASE ? */
3362 if (scp
->cmnd
[0] == RESERVE
) {
3363 ha
->hdr
[t
].cluster_type
|= CLUSTER_RESERVED
;
3364 } else if (scp
->cmnd
[0] == RELEASE
) {
3365 ha
->hdr
[t
].cluster_type
&= ~CLUSTER_RESERVED
;
3367 scp
->result
= DID_OK
<< 16;
3368 scp
->sense_buffer
[0] = 0;
3371 cmndinfo
->status
= ha
->status
;
3372 cmndinfo
->info
= ha
->info
;
3374 if (cmndinfo
->OpCode
!= -1) {
3375 TRACE2(("gdth_sync_event(): special cmd 0x%x error 0x%x\n",
3376 cmndinfo
->OpCode
, ha
->status
));
3377 if (cmndinfo
->OpCode
== GDT_SCAN_START
||
3378 cmndinfo
->OpCode
== GDT_SCAN_END
) {
3379 cmndinfo
->OpCode
= -1;
3381 cmndinfo
->priority
= HIGH_PRI
;
3384 memset((char*)scp
->sense_buffer
,0,16);
3385 scp
->sense_buffer
[0] = 0x70;
3386 scp
->sense_buffer
[2] = NOT_READY
;
3387 scp
->result
= (DID_OK
<< 16) | (CHECK_CONDITION
<< 1);
3388 } else if (service
== CACHESERVICE
) {
3389 if (ha
->status
== S_CACHE_UNKNOWN
&&
3390 (ha
->hdr
[t
].cluster_type
&
3391 CLUSTER_RESERVE_STATE
) == CLUSTER_RESERVE_STATE
) {
3392 /* bus reset -> force GDT_CLUST_INFO */
3393 ha
->hdr
[t
].cluster_type
&= ~CLUSTER_RESERVED
;
3395 memset((char*)scp
->sense_buffer
,0,16);
3396 if (ha
->status
== (u16
)S_CACHE_RESERV
) {
3397 scp
->result
= (DID_OK
<< 16) | (RESERVATION_CONFLICT
<< 1);
3399 scp
->sense_buffer
[0] = 0x70;
3400 scp
->sense_buffer
[2] = NOT_READY
;
3401 scp
->result
= (DID_OK
<< 16) | (CHECK_CONDITION
<< 1);
3403 if (!cmndinfo
->internal_command
) {
3404 ha
->dvr
.size
= sizeof(ha
->dvr
.eu
.sync
);
3405 ha
->dvr
.eu
.sync
.ionode
= ha
->hanum
;
3406 ha
->dvr
.eu
.sync
.service
= service
;
3407 ha
->dvr
.eu
.sync
.status
= ha
->status
;
3408 ha
->dvr
.eu
.sync
.info
= ha
->info
;
3409 ha
->dvr
.eu
.sync
.hostdrive
= t
;
3410 if (ha
->status
>= 0x8000)
3411 gdth_store_event(ha
, ES_SYNC
, 0, &ha
->dvr
);
3413 gdth_store_event(ha
, ES_SYNC
, service
, &ha
->dvr
);
3416 /* sense buffer filled from controller firmware (DMA) */
3417 if (ha
->status
!= S_RAW_SCSI
|| ha
->info
>= 0x100) {
3418 scp
->result
= DID_BAD_TARGET
<< 16;
3420 scp
->result
= (DID_OK
<< 16) | ha
->info
;
3424 if (!cmndinfo
->wait_for_completion
)
3425 cmndinfo
->wait_for_completion
++;
3433 static char *async_cache_tab
[] = {
3434 /* 0*/ "\011\000\002\002\002\004\002\006\004"
3435 "GDT HA %u, service %u, async. status %u/%lu unknown",
3436 /* 1*/ "\011\000\002\002\002\004\002\006\004"
3437 "GDT HA %u, service %u, async. status %u/%lu unknown",
3438 /* 2*/ "\005\000\002\006\004"
3439 "GDT HA %u, Host Drive %lu not ready",
3440 /* 3*/ "\005\000\002\006\004"
3441 "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",
3442 /* 4*/ "\005\000\002\006\004"
3443 "GDT HA %u, mirror update on Host Drive %lu failed",
3444 /* 5*/ "\005\000\002\006\004"
3445 "GDT HA %u, Mirror Drive %lu failed",
3446 /* 6*/ "\005\000\002\006\004"
3447 "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",
3448 /* 7*/ "\005\000\002\006\004"
3449 "GDT HA %u, Host Drive %lu write protected",
3450 /* 8*/ "\005\000\002\006\004"
3451 "GDT HA %u, media changed in Host Drive %lu",
3452 /* 9*/ "\005\000\002\006\004"
3453 "GDT HA %u, Host Drive %lu is offline",
3454 /*10*/ "\005\000\002\006\004"
3455 "GDT HA %u, media change of Mirror Drive %lu",
3456 /*11*/ "\005\000\002\006\004"
3457 "GDT HA %u, Mirror Drive %lu is write protected",
3458 /*12*/ "\005\000\002\006\004"
3459 "GDT HA %u, general error on Host Drive %lu. Please check the devices of this drive!",
3460 /*13*/ "\007\000\002\006\002\010\002"
3461 "GDT HA %u, Array Drive %u: Cache Drive %u failed",
3462 /*14*/ "\005\000\002\006\002"
3463 "GDT HA %u, Array Drive %u: FAIL state entered",
3464 /*15*/ "\005\000\002\006\002"
3465 "GDT HA %u, Array Drive %u: error",
3466 /*16*/ "\007\000\002\006\002\010\002"
3467 "GDT HA %u, Array Drive %u: failed drive replaced by Cache Drive %u",
3468 /*17*/ "\005\000\002\006\002"
3469 "GDT HA %u, Array Drive %u: parity build failed",
3470 /*18*/ "\005\000\002\006\002"
3471 "GDT HA %u, Array Drive %u: drive rebuild failed",
3472 /*19*/ "\005\000\002\010\002"
3473 "GDT HA %u, Test of Hot Fix %u failed",
3474 /*20*/ "\005\000\002\006\002"
3475 "GDT HA %u, Array Drive %u: drive build finished successfully",
3476 /*21*/ "\005\000\002\006\002"
3477 "GDT HA %u, Array Drive %u: drive rebuild finished successfully",
3478 /*22*/ "\007\000\002\006\002\010\002"
3479 "GDT HA %u, Array Drive %u: Hot Fix %u activated",
3480 /*23*/ "\005\000\002\006\002"
3481 "GDT HA %u, Host Drive %u: processing of i/o aborted due to serious drive error",
3482 /*24*/ "\005\000\002\010\002"
3483 "GDT HA %u, mirror update on Cache Drive %u completed",
3484 /*25*/ "\005\000\002\010\002"
3485 "GDT HA %u, mirror update on Cache Drive %lu failed",
3486 /*26*/ "\005\000\002\006\002"
3487 "GDT HA %u, Array Drive %u: drive rebuild started",
3488 /*27*/ "\005\000\002\012\001"
3489 "GDT HA %u, Fault bus %u: SHELF OK detected",
3490 /*28*/ "\005\000\002\012\001"
3491 "GDT HA %u, Fault bus %u: SHELF not OK detected",
3492 /*29*/ "\007\000\002\012\001\013\001"
3493 "GDT HA %u, Fault bus %u, ID %u: Auto Hot Plug started",
3494 /*30*/ "\007\000\002\012\001\013\001"
3495 "GDT HA %u, Fault bus %u, ID %u: new disk detected",
3496 /*31*/ "\007\000\002\012\001\013\001"
3497 "GDT HA %u, Fault bus %u, ID %u: old disk detected",
3498 /*32*/ "\007\000\002\012\001\013\001"
3499 "GDT HA %u, Fault bus %u, ID %u: plugging an active disk is invalid",
3500 /*33*/ "\007\000\002\012\001\013\001"
3501 "GDT HA %u, Fault bus %u, ID %u: invalid device detected",
3502 /*34*/ "\011\000\002\012\001\013\001\006\004"
3503 "GDT HA %u, Fault bus %u, ID %u: insufficient disk capacity (%lu MB required)",
3504 /*35*/ "\007\000\002\012\001\013\001"
3505 "GDT HA %u, Fault bus %u, ID %u: disk write protected",
3506 /*36*/ "\007\000\002\012\001\013\001"
3507 "GDT HA %u, Fault bus %u, ID %u: disk not available",
3508 /*37*/ "\007\000\002\012\001\006\004"
3509 "GDT HA %u, Fault bus %u: swap detected (%lu)",
3510 /*38*/ "\007\000\002\012\001\013\001"
3511 "GDT HA %u, Fault bus %u, ID %u: Auto Hot Plug finished successfully",
3512 /*39*/ "\007\000\002\012\001\013\001"
3513 "GDT HA %u, Fault bus %u, ID %u: Auto Hot Plug aborted due to user Hot Plug",
3514 /*40*/ "\007\000\002\012\001\013\001"
3515 "GDT HA %u, Fault bus %u, ID %u: Auto Hot Plug aborted",
3516 /*41*/ "\007\000\002\012\001\013\001"
3517 "GDT HA %u, Fault bus %u, ID %u: Auto Hot Plug for Hot Fix started",
3518 /*42*/ "\005\000\002\006\002"
3519 "GDT HA %u, Array Drive %u: drive build started",
3520 /*43*/ "\003\000\002"
3521 "GDT HA %u, DRAM parity error detected",
3522 /*44*/ "\005\000\002\006\002"
3523 "GDT HA %u, Mirror Drive %u: update started",
3524 /*45*/ "\007\000\002\006\002\010\002"
3525 "GDT HA %u, Mirror Drive %u: Hot Fix %u activated",
3526 /*46*/ "\005\000\002\006\002"
3527 "GDT HA %u, Array Drive %u: no matching Pool Hot Fix Drive available",
3528 /*47*/ "\005\000\002\006\002"
3529 "GDT HA %u, Array Drive %u: Pool Hot Fix Drive available",
3530 /*48*/ "\005\000\002\006\002"
3531 "GDT HA %u, Mirror Drive %u: no matching Pool Hot Fix Drive available",
3532 /*49*/ "\005\000\002\006\002"
3533 "GDT HA %u, Mirror Drive %u: Pool Hot Fix Drive available",
3534 /*50*/ "\007\000\002\012\001\013\001"
3535 "GDT HA %u, SCSI bus %u, ID %u: IGNORE_WIDE_RESIDUE message received",
3536 /*51*/ "\005\000\002\006\002"
3537 "GDT HA %u, Array Drive %u: expand started",
3538 /*52*/ "\005\000\002\006\002"
3539 "GDT HA %u, Array Drive %u: expand finished successfully",
3540 /*53*/ "\005\000\002\006\002"
3541 "GDT HA %u, Array Drive %u: expand failed",
3542 /*54*/ "\003\000\002"
3543 "GDT HA %u, CPU temperature critical",
3544 /*55*/ "\003\000\002"
3545 "GDT HA %u, CPU temperature OK",
3546 /*56*/ "\005\000\002\006\004"
3547 "GDT HA %u, Host drive %lu created",
3548 /*57*/ "\005\000\002\006\002"
3549 "GDT HA %u, Array Drive %u: expand restarted",
3550 /*58*/ "\005\000\002\006\002"
3551 "GDT HA %u, Array Drive %u: expand stopped",
3552 /*59*/ "\005\000\002\010\002"
3553 "GDT HA %u, Mirror Drive %u: drive build quited",
3554 /*60*/ "\005\000\002\006\002"
3555 "GDT HA %u, Array Drive %u: parity build quited",
3556 /*61*/ "\005\000\002\006\002"
3557 "GDT HA %u, Array Drive %u: drive rebuild quited",
3558 /*62*/ "\005\000\002\006\002"
3559 "GDT HA %u, Array Drive %u: parity verify started",
3560 /*63*/ "\005\000\002\006\002"
3561 "GDT HA %u, Array Drive %u: parity verify done",
3562 /*64*/ "\005\000\002\006\002"
3563 "GDT HA %u, Array Drive %u: parity verify failed",
3564 /*65*/ "\005\000\002\006\002"
3565 "GDT HA %u, Array Drive %u: parity error detected",
3566 /*66*/ "\005\000\002\006\002"
3567 "GDT HA %u, Array Drive %u: parity verify quited",
3568 /*67*/ "\005\000\002\006\002"
3569 "GDT HA %u, Host Drive %u reserved",
3570 /*68*/ "\005\000\002\006\002"
3571 "GDT HA %u, Host Drive %u mounted and released",
3572 /*69*/ "\005\000\002\006\002"
3573 "GDT HA %u, Host Drive %u released",
3574 /*70*/ "\003\000\002"
3575 "GDT HA %u, DRAM error detected and corrected with ECC",
3576 /*71*/ "\003\000\002"
3577 "GDT HA %u, Uncorrectable DRAM error detected with ECC",
3578 /*72*/ "\011\000\002\012\001\013\001\014\001"
3579 "GDT HA %u, SCSI bus %u, ID %u, LUN %u: reassigning block",
3580 /*73*/ "\005\000\002\006\002"
3581 "GDT HA %u, Host drive %u resetted locally",
3582 /*74*/ "\005\000\002\006\002"
3583 "GDT HA %u, Host drive %u resetted remotely",
3584 /*75*/ "\003\000\002"
3585 "GDT HA %u, async. status 75 unknown",
3589 static int gdth_async_event(gdth_ha_str
*ha
)
3595 TRACE2(("gdth_async_event() ha %d serv %d\n",
3596 ha
->hanum
, ha
->service
));
3598 if (ha
->service
== SCREENSERVICE
) {
3599 if (ha
->status
== MSG_REQUEST
) {
3600 while (gdth_test_busy(ha
))
3602 cmdp
->Service
= SCREENSERVICE
;
3603 cmdp
->RequestBuffer
= SCREEN_CMND
;
3604 cmd_index
= gdth_get_cmd_index(ha
);
3606 cmdp
->OpCode
= GDT_READ
;
3607 cmdp
->BoardNode
= LOCALBOARD
;
3608 cmdp
->u
.screen
.reserved
= 0;
3609 cmdp
->u
.screen
.su
.msg
.msg_handle
= MSG_INV_HANDLE
;
3610 cmdp
->u
.screen
.su
.msg
.msg_addr
= ha
->msg_phys
;
3611 ha
->cmd_offs_dpmem
= 0;
3612 ha
->cmd_len
= GDTOFFSOF(gdth_cmd_str
,u
.screen
.su
.msg
.msg_addr
)
3615 gdth_copy_command(ha
);
3616 if (ha
->type
== GDT_EISA
)
3617 printk("[EISA slot %d] ",(u16
)ha
->brd_phys
);
3618 else if (ha
->type
== GDT_ISA
)
3619 printk("[DPMEM 0x%4X] ",(u16
)ha
->brd_phys
);
3621 printk("[PCI %d/%d] ",(u16
)(ha
->brd_phys
>>8),
3622 (u16
)((ha
->brd_phys
>>3)&0x1f));
3623 gdth_release_event(ha
);
3627 if (ha
->type
== GDT_PCIMPR
&&
3628 (ha
->fw_vers
& 0xff) >= 0x1a) {
3630 ha
->dvr
.eu
.async
.ionode
= ha
->hanum
;
3631 ha
->dvr
.eu
.async
.status
= ha
->status
;
3632 /* severity and event_string already set! */
3634 ha
->dvr
.size
= sizeof(ha
->dvr
.eu
.async
);
3635 ha
->dvr
.eu
.async
.ionode
= ha
->hanum
;
3636 ha
->dvr
.eu
.async
.service
= ha
->service
;
3637 ha
->dvr
.eu
.async
.status
= ha
->status
;
3638 ha
->dvr
.eu
.async
.info
= ha
->info
;
3639 *(u32
*)ha
->dvr
.eu
.async
.scsi_coord
= ha
->info2
;
3641 gdth_store_event( ha
, ES_ASYNC
, ha
->service
, &ha
->dvr
);
3642 gdth_log_event( &ha
->dvr
, NULL
);
3644 /* new host drive from expand? */
3645 if (ha
->service
== CACHESERVICE
&& ha
->status
== 56) {
3646 TRACE2(("gdth_async_event(): new host drive %d created\n",
3648 /* gdth_analyse_hdrive(hanum, (u16)ha->info); */
3654 static void gdth_log_event(gdth_evt_data
*dvr
, char *buffer
)
3656 gdth_stackframe stack
;
3660 TRACE2(("gdth_log_event()\n"));
3661 if (dvr
->size
== 0) {
3662 if (buffer
== NULL
) {
3663 printk("Adapter %d: %s\n",dvr
->eu
.async
.ionode
,dvr
->event_string
);
3665 sprintf(buffer
,"Adapter %d: %s\n",
3666 dvr
->eu
.async
.ionode
,dvr
->event_string
);
3668 } else if (dvr
->eu
.async
.service
== CACHESERVICE
&&
3669 INDEX_OK(dvr
->eu
.async
.status
, async_cache_tab
)) {
3670 TRACE2(("GDT: Async. event cache service, event no.: %d\n",
3671 dvr
->eu
.async
.status
));
3673 f
= async_cache_tab
[dvr
->eu
.async
.status
];
3675 /* i: parameter to push, j: stack element to fill */
3676 for (j
=0,i
=1; i
< f
[0]; i
+=2) {
3679 stack
.b
[j
++] = *(u32
*)&dvr
->eu
.stream
[(int)f
[i
]];
3682 stack
.b
[j
++] = *(u16
*)&dvr
->eu
.stream
[(int)f
[i
]];
3685 stack
.b
[j
++] = *(u8
*)&dvr
->eu
.stream
[(int)f
[i
]];
3692 if (buffer
== NULL
) {
3693 printk(&f
[(int)f
[0]],stack
);
3696 sprintf(buffer
,&f
[(int)f
[0]],stack
);
3700 if (buffer
== NULL
) {
3701 printk("GDT HA %u, Unknown async. event service %d event no. %d\n",
3702 dvr
->eu
.async
.ionode
,dvr
->eu
.async
.service
,dvr
->eu
.async
.status
);
3704 sprintf(buffer
,"GDT HA %u, Unknown async. event service %d event no. %d",
3705 dvr
->eu
.async
.ionode
,dvr
->eu
.async
.service
,dvr
->eu
.async
.status
);
3710 #ifdef GDTH_STATISTICS
3711 static u8 gdth_timer_running
;
3713 static void gdth_timeout(unsigned long data
)
3718 unsigned long flags
;
3720 if(unlikely(list_empty(&gdth_instances
))) {
3721 gdth_timer_running
= 0;
3725 ha
= list_first_entry(&gdth_instances
, gdth_ha_str
, list
);
3726 spin_lock_irqsave(&ha
->smp_lock
, flags
);
3728 for (act_stats
=0,i
=0; i
<GDTH_MAXCMDS
; ++i
)
3729 if (ha
->cmd_tab
[i
].cmnd
!= UNUSED_CMND
)
3732 for (act_rq
=0,nscp
=ha
->req_first
; nscp
; nscp
=(Scsi_Cmnd
*)nscp
->SCp
.ptr
)
3735 TRACE2(("gdth_to(): ints %d, ios %d, act_stats %d, act_rq %d\n",
3736 act_ints
, act_ios
, act_stats
, act_rq
));
3737 act_ints
= act_ios
= 0;
3739 gdth_timer
.expires
= jiffies
+ 30 * HZ
;
3740 add_timer(&gdth_timer
);
3741 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
3744 static void gdth_timer_init(void)
3746 if (gdth_timer_running
)
3748 gdth_timer_running
= 1;
3749 TRACE2(("gdth_detect(): Initializing timer !\n"));
3750 gdth_timer
.expires
= jiffies
+ HZ
;
3751 gdth_timer
.data
= 0L;
3752 gdth_timer
.function
= gdth_timeout
;
3753 add_timer(&gdth_timer
);
3756 static inline void gdth_timer_init(void)
3761 static void __init
internal_setup(char *str
,int *ints
)
3764 char *cur_str
, *argv
;
3766 TRACE2(("internal_setup() str %s ints[0] %d\n",
3767 str
? str
:"NULL", ints
? ints
[0]:0));
3769 /* read irq[] from ints[] */
3775 for (i
= 0; i
< argc
; ++i
)
3780 /* analyse string */
3782 while (argv
&& (cur_str
= strchr(argv
, ':'))) {
3783 int val
= 0, c
= *++cur_str
;
3785 if (c
== 'n' || c
== 'N')
3787 else if (c
== 'y' || c
== 'Y')
3790 val
= (int)simple_strtoul(cur_str
, NULL
, 0);
3792 if (!strncmp(argv
, "disable:", 8))
3794 else if (!strncmp(argv
, "reserve_mode:", 13))
3796 else if (!strncmp(argv
, "reverse_scan:", 13))
3798 else if (!strncmp(argv
, "hdr_channel:", 12))
3800 else if (!strncmp(argv
, "max_ids:", 8))
3802 else if (!strncmp(argv
, "rescan:", 7))
3804 else if (!strncmp(argv
, "shared_access:", 14))
3805 shared_access
= val
;
3806 else if (!strncmp(argv
, "probe_eisa_isa:", 15))
3807 probe_eisa_isa
= val
;
3808 else if (!strncmp(argv
, "reserve_list:", 13)) {
3809 reserve_list
[0] = val
;
3810 for (i
= 1; i
< MAX_RES_ARGS
; i
++) {
3811 cur_str
= strchr(cur_str
, ',');
3814 if (!isdigit((int)*++cur_str
)) {
3819 (int)simple_strtoul(cur_str
, NULL
, 0);
3827 if ((argv
= strchr(argv
, ',')))
3832 int __init
option_setup(char *str
)
3838 TRACE2(("option_setup() str %s\n", str
? str
:"NULL"));
3840 while (cur
&& isdigit(*cur
) && i
< MAXHA
) {
3841 ints
[i
++] = simple_strtoul(cur
, NULL
, 0);
3842 if ((cur
= strchr(cur
, ',')) != NULL
) cur
++;
3846 internal_setup(cur
, ints
);
3850 static const char *gdth_ctr_name(gdth_ha_str
*ha
)
3852 TRACE2(("gdth_ctr_name()\n"));
3854 if (ha
->type
== GDT_EISA
) {
3855 switch (ha
->stype
) {
3857 return("GDT3000/3020");
3859 return("GDT3000A/3020A/3050A");
3861 return("GDT3000B/3010A");
3863 } else if (ha
->type
== GDT_ISA
) {
3864 return("GDT2000/2020");
3865 } else if (ha
->type
== GDT_PCI
) {
3866 switch (ha
->pdev
->device
) {
3867 case PCI_DEVICE_ID_VORTEX_GDT60x0
:
3868 return("GDT6000/6020/6050");
3869 case PCI_DEVICE_ID_VORTEX_GDT6000B
:
3870 return("GDT6000B/6010");
3873 /* new controllers (GDT_PCINEW, GDT_PCIMPR, ..) use board_info IOCTL! */
3878 static const char *gdth_info(struct Scsi_Host
*shp
)
3880 gdth_ha_str
*ha
= shost_priv(shp
);
3882 TRACE2(("gdth_info()\n"));
3883 return ((const char *)ha
->binfo
.type_string
);
3886 static enum blk_eh_timer_return
gdth_timed_out(struct scsi_cmnd
*scp
)
3888 gdth_ha_str
*ha
= shost_priv(scp
->device
->host
);
3889 struct gdth_cmndinfo
*cmndinfo
= gdth_cmnd_priv(scp
);
3891 unsigned long flags
;
3892 enum blk_eh_timer_return retval
= BLK_EH_NOT_HANDLED
;
3894 TRACE(("%s() cmd 0x%x\n", scp
->cmnd
[0], __func__
));
3895 b
= scp
->device
->channel
;
3896 t
= scp
->device
->id
;
3899 * We don't really honor the command timeout, but we try to
3900 * honor 6 times of the actual command timeout! So reset the
3901 * timer if this is less than 6th timeout on this command!
3903 if (++cmndinfo
->timeout_count
< 6)
3904 retval
= BLK_EH_RESET_TIMER
;
3906 /* Reset the timeout if it is locked IO */
3907 spin_lock_irqsave(&ha
->smp_lock
, flags
);
3908 if ((b
!= ha
->virt_bus
&& ha
->raw
[BUS_L2P(ha
, b
)].lock
) ||
3909 (b
== ha
->virt_bus
&& t
< MAX_HDRIVES
&& ha
->hdr
[t
].lock
)) {
3910 TRACE2(("%s(): locked IO, reset timeout\n", __func__
));
3911 retval
= BLK_EH_RESET_TIMER
;
3913 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
3919 static int gdth_eh_bus_reset(Scsi_Cmnd
*scp
)
3921 gdth_ha_str
*ha
= shost_priv(scp
->device
->host
);
3923 unsigned long flags
;
3927 TRACE2(("gdth_eh_bus_reset()\n"));
3929 b
= scp
->device
->channel
;
3931 /* clear command tab */
3932 spin_lock_irqsave(&ha
->smp_lock
, flags
);
3933 for (i
= 0; i
< GDTH_MAXCMDS
; ++i
) {
3934 cmnd
= ha
->cmd_tab
[i
].cmnd
;
3935 if (!SPECIAL_SCP(cmnd
) && cmnd
->device
->channel
== b
)
3936 ha
->cmd_tab
[i
].cmnd
= UNUSED_CMND
;
3938 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
3940 if (b
== ha
->virt_bus
) {
3942 for (i
= 0; i
< MAX_HDRIVES
; ++i
) {
3943 if (ha
->hdr
[i
].present
) {
3944 spin_lock_irqsave(&ha
->smp_lock
, flags
);
3945 gdth_polling
= TRUE
;
3946 while (gdth_test_busy(ha
))
3948 if (gdth_internal_cmd(ha
, CACHESERVICE
,
3949 GDT_CLUST_RESET
, i
, 0, 0))
3950 ha
->hdr
[i
].cluster_type
&= ~CLUSTER_RESERVED
;
3951 gdth_polling
= FALSE
;
3952 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
3957 spin_lock_irqsave(&ha
->smp_lock
, flags
);
3958 for (i
= 0; i
< MAXID
; ++i
)
3959 ha
->raw
[BUS_L2P(ha
,b
)].io_cnt
[i
] = 0;
3960 gdth_polling
= TRUE
;
3961 while (gdth_test_busy(ha
))
3963 gdth_internal_cmd(ha
, SCSIRAWSERVICE
, GDT_RESET_BUS
,
3964 BUS_L2P(ha
,b
), 0, 0);
3965 gdth_polling
= FALSE
;
3966 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
3971 static int gdth_bios_param(struct scsi_device
*sdev
,struct block_device
*bdev
,sector_t cap
,int *ip
)
3974 gdth_ha_str
*ha
= shost_priv(sdev
->host
);
3975 struct scsi_device
*sd
;
3982 TRACE2(("gdth_bios_param() ha %d bus %d target %d\n", ha
->hanum
, b
, t
));
3984 if (b
!= ha
->virt_bus
|| ha
->hdr
[t
].heads
== 0) {
3985 /* raw device or host drive without mapping information */
3986 TRACE2(("Evaluate mapping\n"));
3987 gdth_eval_mapping(capacity
,&ip
[2],&ip
[0],&ip
[1]);
3989 ip
[0] = ha
->hdr
[t
].heads
;
3990 ip
[1] = ha
->hdr
[t
].secs
;
3991 ip
[2] = capacity
/ ip
[0] / ip
[1];
3994 TRACE2(("gdth_bios_param(): %d heads, %d secs, %d cyls\n",
3995 ip
[0],ip
[1],ip
[2]));
4000 static int gdth_queuecommand_lck(struct scsi_cmnd
*scp
,
4001 void (*done
)(struct scsi_cmnd
*))
4003 gdth_ha_str
*ha
= shost_priv(scp
->device
->host
);
4004 struct gdth_cmndinfo
*cmndinfo
;
4006 TRACE(("gdth_queuecommand() cmd 0x%x\n", scp
->cmnd
[0]));
4008 cmndinfo
= gdth_get_cmndinfo(ha
);
4011 scp
->scsi_done
= done
;
4012 cmndinfo
->timeout_count
= 0;
4013 cmndinfo
->priority
= DEFAULT_PRI
;
4015 return __gdth_queuecommand(ha
, scp
, cmndinfo
);
4018 static DEF_SCSI_QCMD(gdth_queuecommand
)
4020 static int __gdth_queuecommand(gdth_ha_str
*ha
, struct scsi_cmnd
*scp
,
4021 struct gdth_cmndinfo
*cmndinfo
)
4023 scp
->host_scribble
= (unsigned char *)cmndinfo
;
4024 cmndinfo
->wait_for_completion
= 1;
4025 cmndinfo
->phase
= -1;
4026 cmndinfo
->OpCode
= -1;
4028 #ifdef GDTH_STATISTICS
4032 gdth_putq(ha
, scp
, cmndinfo
->priority
);
4038 static int gdth_open(struct inode
*inode
, struct file
*filep
)
4042 mutex_lock(&gdth_mutex
);
4043 list_for_each_entry(ha
, &gdth_instances
, list
) {
4045 ha
->sdev
= scsi_get_host_dev(ha
->shost
);
4047 mutex_unlock(&gdth_mutex
);
4049 TRACE(("gdth_open()\n"));
4053 static int gdth_close(struct inode
*inode
, struct file
*filep
)
4055 TRACE(("gdth_close()\n"));
4059 static int ioc_event(void __user
*arg
)
4061 gdth_ioctl_event evt
;
4063 unsigned long flags
;
4065 if (copy_from_user(&evt
, arg
, sizeof(gdth_ioctl_event
)))
4067 ha
= gdth_find_ha(evt
.ionode
);
4071 if (evt
.erase
== 0xff) {
4072 if (evt
.event
.event_source
== ES_TEST
)
4073 evt
.event
.event_data
.size
=sizeof(evt
.event
.event_data
.eu
.test
);
4074 else if (evt
.event
.event_source
== ES_DRIVER
)
4075 evt
.event
.event_data
.size
=sizeof(evt
.event
.event_data
.eu
.driver
);
4076 else if (evt
.event
.event_source
== ES_SYNC
)
4077 evt
.event
.event_data
.size
=sizeof(evt
.event
.event_data
.eu
.sync
);
4079 evt
.event
.event_data
.size
=sizeof(evt
.event
.event_data
.eu
.async
);
4080 spin_lock_irqsave(&ha
->smp_lock
, flags
);
4081 gdth_store_event(ha
, evt
.event
.event_source
, evt
.event
.event_idx
,
4082 &evt
.event
.event_data
);
4083 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
4084 } else if (evt
.erase
== 0xfe) {
4085 gdth_clear_events();
4086 } else if (evt
.erase
== 0) {
4087 evt
.handle
= gdth_read_event(ha
, evt
.handle
, &evt
.event
);
4089 gdth_readapp_event(ha
, evt
.erase
, &evt
.event
);
4091 if (copy_to_user(arg
, &evt
, sizeof(gdth_ioctl_event
)))
4096 static int ioc_lockdrv(void __user
*arg
)
4098 gdth_ioctl_lockdrv ldrv
;
4100 unsigned long flags
;
4103 if (copy_from_user(&ldrv
, arg
, sizeof(gdth_ioctl_lockdrv
)))
4105 ha
= gdth_find_ha(ldrv
.ionode
);
4109 for (i
= 0; i
< ldrv
.drive_cnt
&& i
< MAX_HDRIVES
; ++i
) {
4111 if (j
>= MAX_HDRIVES
|| !ha
->hdr
[j
].present
)
4114 spin_lock_irqsave(&ha
->smp_lock
, flags
);
4115 ha
->hdr
[j
].lock
= 1;
4116 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
4117 gdth_wait_completion(ha
, ha
->bus_cnt
, j
);
4119 spin_lock_irqsave(&ha
->smp_lock
, flags
);
4120 ha
->hdr
[j
].lock
= 0;
4121 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
4128 static int ioc_resetdrv(void __user
*arg
, char *cmnd
)
4130 gdth_ioctl_reset res
;
4135 if (copy_from_user(&res
, arg
, sizeof(gdth_ioctl_reset
)) ||
4136 res
.number
>= MAX_HDRIVES
)
4138 ha
= gdth_find_ha(res
.ionode
);
4142 if (!ha
->hdr
[res
.number
].present
)
4144 memset(&cmd
, 0, sizeof(gdth_cmd_str
));
4145 cmd
.Service
= CACHESERVICE
;
4146 cmd
.OpCode
= GDT_CLUST_RESET
;
4147 if (ha
->cache_feat
& GDT_64BIT
)
4148 cmd
.u
.cache64
.DeviceNo
= res
.number
;
4150 cmd
.u
.cache
.DeviceNo
= res
.number
;
4152 rval
= __gdth_execute(ha
->sdev
, &cmd
, cmnd
, 30, NULL
);
4157 if (copy_to_user(arg
, &res
, sizeof(gdth_ioctl_reset
)))
4162 static int ioc_general(void __user
*arg
, char *cmnd
)
4164 gdth_ioctl_general gen
;
4170 if (copy_from_user(&gen
, arg
, sizeof(gdth_ioctl_general
)))
4172 ha
= gdth_find_ha(gen
.ionode
);
4176 if (gen
.data_len
> INT_MAX
)
4178 if (gen
.sense_len
> INT_MAX
)
4180 if (gen
.data_len
+ gen
.sense_len
> INT_MAX
)
4183 if (gen
.data_len
+ gen
.sense_len
!= 0) {
4184 if (!(buf
= gdth_ioctl_alloc(ha
, gen
.data_len
+ gen
.sense_len
,
4187 if (copy_from_user(buf
, arg
+ sizeof(gdth_ioctl_general
),
4188 gen
.data_len
+ gen
.sense_len
)) {
4189 gdth_ioctl_free(ha
, gen
.data_len
+gen
.sense_len
, buf
, paddr
);
4193 if (gen
.command
.OpCode
== GDT_IOCTL
) {
4194 gen
.command
.u
.ioctl
.p_param
= paddr
;
4195 } else if (gen
.command
.Service
== CACHESERVICE
) {
4196 if (ha
->cache_feat
& GDT_64BIT
) {
4197 /* copy elements from 32-bit IOCTL structure */
4198 gen
.command
.u
.cache64
.BlockCnt
= gen
.command
.u
.cache
.BlockCnt
;
4199 gen
.command
.u
.cache64
.BlockNo
= gen
.command
.u
.cache
.BlockNo
;
4200 gen
.command
.u
.cache64
.DeviceNo
= gen
.command
.u
.cache
.DeviceNo
;
4202 if (ha
->cache_feat
& SCATTER_GATHER
) {
4203 gen
.command
.u
.cache64
.DestAddr
= (u64
)-1;
4204 gen
.command
.u
.cache64
.sg_canz
= 1;
4205 gen
.command
.u
.cache64
.sg_lst
[0].sg_ptr
= paddr
;
4206 gen
.command
.u
.cache64
.sg_lst
[0].sg_len
= gen
.data_len
;
4207 gen
.command
.u
.cache64
.sg_lst
[1].sg_len
= 0;
4209 gen
.command
.u
.cache64
.DestAddr
= paddr
;
4210 gen
.command
.u
.cache64
.sg_canz
= 0;
4213 if (ha
->cache_feat
& SCATTER_GATHER
) {
4214 gen
.command
.u
.cache
.DestAddr
= 0xffffffff;
4215 gen
.command
.u
.cache
.sg_canz
= 1;
4216 gen
.command
.u
.cache
.sg_lst
[0].sg_ptr
= (u32
)paddr
;
4217 gen
.command
.u
.cache
.sg_lst
[0].sg_len
= gen
.data_len
;
4218 gen
.command
.u
.cache
.sg_lst
[1].sg_len
= 0;
4220 gen
.command
.u
.cache
.DestAddr
= paddr
;
4221 gen
.command
.u
.cache
.sg_canz
= 0;
4224 } else if (gen
.command
.Service
== SCSIRAWSERVICE
) {
4225 if (ha
->raw_feat
& GDT_64BIT
) {
4226 /* copy elements from 32-bit IOCTL structure */
4228 gen
.command
.u
.raw64
.sense_len
= gen
.command
.u
.raw
.sense_len
;
4229 gen
.command
.u
.raw64
.bus
= gen
.command
.u
.raw
.bus
;
4230 gen
.command
.u
.raw64
.lun
= gen
.command
.u
.raw
.lun
;
4231 gen
.command
.u
.raw64
.target
= gen
.command
.u
.raw
.target
;
4232 memcpy(cmd
, gen
.command
.u
.raw
.cmd
, 16);
4233 memcpy(gen
.command
.u
.raw64
.cmd
, cmd
, 16);
4234 gen
.command
.u
.raw64
.clen
= gen
.command
.u
.raw
.clen
;
4235 gen
.command
.u
.raw64
.sdlen
= gen
.command
.u
.raw
.sdlen
;
4236 gen
.command
.u
.raw64
.direction
= gen
.command
.u
.raw
.direction
;
4238 if (ha
->raw_feat
& SCATTER_GATHER
) {
4239 gen
.command
.u
.raw64
.sdata
= (u64
)-1;
4240 gen
.command
.u
.raw64
.sg_ranz
= 1;
4241 gen
.command
.u
.raw64
.sg_lst
[0].sg_ptr
= paddr
;
4242 gen
.command
.u
.raw64
.sg_lst
[0].sg_len
= gen
.data_len
;
4243 gen
.command
.u
.raw64
.sg_lst
[1].sg_len
= 0;
4245 gen
.command
.u
.raw64
.sdata
= paddr
;
4246 gen
.command
.u
.raw64
.sg_ranz
= 0;
4248 gen
.command
.u
.raw64
.sense_data
= paddr
+ gen
.data_len
;
4250 if (ha
->raw_feat
& SCATTER_GATHER
) {
4251 gen
.command
.u
.raw
.sdata
= 0xffffffff;
4252 gen
.command
.u
.raw
.sg_ranz
= 1;
4253 gen
.command
.u
.raw
.sg_lst
[0].sg_ptr
= (u32
)paddr
;
4254 gen
.command
.u
.raw
.sg_lst
[0].sg_len
= gen
.data_len
;
4255 gen
.command
.u
.raw
.sg_lst
[1].sg_len
= 0;
4257 gen
.command
.u
.raw
.sdata
= paddr
;
4258 gen
.command
.u
.raw
.sg_ranz
= 0;
4260 gen
.command
.u
.raw
.sense_data
= (u32
)paddr
+ gen
.data_len
;
4263 gdth_ioctl_free(ha
, gen
.data_len
+gen
.sense_len
, buf
, paddr
);
4268 rval
= __gdth_execute(ha
->sdev
, &gen
.command
, cmnd
, gen
.timeout
, &gen
.info
);
4270 gdth_ioctl_free(ha
, gen
.data_len
+gen
.sense_len
, buf
, paddr
);
4275 if (copy_to_user(arg
+ sizeof(gdth_ioctl_general
), buf
,
4276 gen
.data_len
+ gen
.sense_len
)) {
4277 gdth_ioctl_free(ha
, gen
.data_len
+gen
.sense_len
, buf
, paddr
);
4280 if (copy_to_user(arg
, &gen
,
4281 sizeof(gdth_ioctl_general
) - sizeof(gdth_cmd_str
))) {
4282 gdth_ioctl_free(ha
, gen
.data_len
+gen
.sense_len
, buf
, paddr
);
4285 gdth_ioctl_free(ha
, gen
.data_len
+gen
.sense_len
, buf
, paddr
);
4289 static int ioc_hdrlist(void __user
*arg
, char *cmnd
)
4291 gdth_ioctl_rescan
*rsc
;
4296 u32 cluster_type
= 0;
4298 rsc
= kmalloc(sizeof(*rsc
), GFP_KERNEL
);
4299 cmd
= kmalloc(sizeof(*cmd
), GFP_KERNEL
);
4303 if (copy_from_user(rsc
, arg
, sizeof(gdth_ioctl_rescan
)) ||
4304 (NULL
== (ha
= gdth_find_ha(rsc
->ionode
)))) {
4308 memset(cmd
, 0, sizeof(gdth_cmd_str
));
4310 for (i
= 0; i
< MAX_HDRIVES
; ++i
) {
4311 if (!ha
->hdr
[i
].present
) {
4312 rsc
->hdr_list
[i
].bus
= 0xff;
4315 rsc
->hdr_list
[i
].bus
= ha
->virt_bus
;
4316 rsc
->hdr_list
[i
].target
= i
;
4317 rsc
->hdr_list
[i
].lun
= 0;
4318 rsc
->hdr_list
[i
].cluster_type
= ha
->hdr
[i
].cluster_type
;
4319 if (ha
->hdr
[i
].cluster_type
& CLUSTER_DRIVE
) {
4320 cmd
->Service
= CACHESERVICE
;
4321 cmd
->OpCode
= GDT_CLUST_INFO
;
4322 if (ha
->cache_feat
& GDT_64BIT
)
4323 cmd
->u
.cache64
.DeviceNo
= i
;
4325 cmd
->u
.cache
.DeviceNo
= i
;
4326 if (__gdth_execute(ha
->sdev
, cmd
, cmnd
, 30, &cluster_type
) == S_OK
)
4327 rsc
->hdr_list
[i
].cluster_type
= cluster_type
;
4331 if (copy_to_user(arg
, rsc
, sizeof(gdth_ioctl_rescan
)))
4342 static int ioc_rescan(void __user
*arg
, char *cmnd
)
4344 gdth_ioctl_rescan
*rsc
;
4346 u16 i
, status
, hdr_cnt
;
4348 int cyls
, hds
, secs
;
4350 unsigned long flags
;
4353 rsc
= kmalloc(sizeof(*rsc
), GFP_KERNEL
);
4354 cmd
= kmalloc(sizeof(*cmd
), GFP_KERNEL
);
4358 if (copy_from_user(rsc
, arg
, sizeof(gdth_ioctl_rescan
)) ||
4359 (NULL
== (ha
= gdth_find_ha(rsc
->ionode
)))) {
4363 memset(cmd
, 0, sizeof(gdth_cmd_str
));
4365 if (rsc
->flag
== 0) {
4366 /* old method: re-init. cache service */
4367 cmd
->Service
= CACHESERVICE
;
4368 if (ha
->cache_feat
& GDT_64BIT
) {
4369 cmd
->OpCode
= GDT_X_INIT_HOST
;
4370 cmd
->u
.cache64
.DeviceNo
= LINUX_OS
;
4372 cmd
->OpCode
= GDT_INIT
;
4373 cmd
->u
.cache
.DeviceNo
= LINUX_OS
;
4376 status
= __gdth_execute(ha
->sdev
, cmd
, cmnd
, 30, &info
);
4378 hdr_cnt
= (status
== S_OK
? (u16
)info
: 0);
4384 for (; i
< hdr_cnt
&& i
< MAX_HDRIVES
; ++i
) {
4385 cmd
->Service
= CACHESERVICE
;
4386 cmd
->OpCode
= GDT_INFO
;
4387 if (ha
->cache_feat
& GDT_64BIT
)
4388 cmd
->u
.cache64
.DeviceNo
= i
;
4390 cmd
->u
.cache
.DeviceNo
= i
;
4392 status
= __gdth_execute(ha
->sdev
, cmd
, cmnd
, 30, &info
);
4394 spin_lock_irqsave(&ha
->smp_lock
, flags
);
4395 rsc
->hdr_list
[i
].bus
= ha
->virt_bus
;
4396 rsc
->hdr_list
[i
].target
= i
;
4397 rsc
->hdr_list
[i
].lun
= 0;
4398 if (status
!= S_OK
) {
4399 ha
->hdr
[i
].present
= FALSE
;
4401 ha
->hdr
[i
].present
= TRUE
;
4402 ha
->hdr
[i
].size
= info
;
4403 /* evaluate mapping */
4404 ha
->hdr
[i
].size
&= ~SECS32
;
4405 gdth_eval_mapping(ha
->hdr
[i
].size
,&cyls
,&hds
,&secs
);
4406 ha
->hdr
[i
].heads
= hds
;
4407 ha
->hdr
[i
].secs
= secs
;
4409 ha
->hdr
[i
].size
= cyls
* hds
* secs
;
4411 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
4415 /* extended info, if GDT_64BIT, for drives > 2 TB */
4416 /* but we need ha->info2, not yet stored in scp->SCp */
4418 /* devtype, cluster info, R/W attribs */
4419 cmd
->Service
= CACHESERVICE
;
4420 cmd
->OpCode
= GDT_DEVTYPE
;
4421 if (ha
->cache_feat
& GDT_64BIT
)
4422 cmd
->u
.cache64
.DeviceNo
= i
;
4424 cmd
->u
.cache
.DeviceNo
= i
;
4426 status
= __gdth_execute(ha
->sdev
, cmd
, cmnd
, 30, &info
);
4428 spin_lock_irqsave(&ha
->smp_lock
, flags
);
4429 ha
->hdr
[i
].devtype
= (status
== S_OK
? (u16
)info
: 0);
4430 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
4432 cmd
->Service
= CACHESERVICE
;
4433 cmd
->OpCode
= GDT_CLUST_INFO
;
4434 if (ha
->cache_feat
& GDT_64BIT
)
4435 cmd
->u
.cache64
.DeviceNo
= i
;
4437 cmd
->u
.cache
.DeviceNo
= i
;
4439 status
= __gdth_execute(ha
->sdev
, cmd
, cmnd
, 30, &info
);
4441 spin_lock_irqsave(&ha
->smp_lock
, flags
);
4442 ha
->hdr
[i
].cluster_type
=
4443 ((status
== S_OK
&& !shared_access
) ? (u16
)info
: 0);
4444 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
4445 rsc
->hdr_list
[i
].cluster_type
= ha
->hdr
[i
].cluster_type
;
4447 cmd
->Service
= CACHESERVICE
;
4448 cmd
->OpCode
= GDT_RW_ATTRIBS
;
4449 if (ha
->cache_feat
& GDT_64BIT
)
4450 cmd
->u
.cache64
.DeviceNo
= i
;
4452 cmd
->u
.cache
.DeviceNo
= i
;
4454 status
= __gdth_execute(ha
->sdev
, cmd
, cmnd
, 30, &info
);
4456 spin_lock_irqsave(&ha
->smp_lock
, flags
);
4457 ha
->hdr
[i
].rw_attribs
= (status
== S_OK
? (u16
)info
: 0);
4458 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
4461 if (copy_to_user(arg
, rsc
, sizeof(gdth_ioctl_rescan
)))
4472 static int gdth_ioctl(struct file
*filep
, unsigned int cmd
, unsigned long arg
)
4476 unsigned long flags
;
4477 char cmnd
[MAX_COMMAND_SIZE
];
4478 void __user
*argp
= (void __user
*)arg
;
4480 memset(cmnd
, 0xff, 12);
4482 TRACE(("gdth_ioctl() cmd 0x%x\n", cmd
));
4485 case GDTIOCTL_CTRCNT
:
4487 int cnt
= gdth_ctr_count
;
4488 if (put_user(cnt
, (int __user
*)argp
))
4493 case GDTIOCTL_DRVERS
:
4495 int ver
= (GDTH_VERSION
<<8) | GDTH_SUBVERSION
;
4496 if (put_user(ver
, (int __user
*)argp
))
4501 case GDTIOCTL_OSVERS
:
4503 gdth_ioctl_osvers osv
;
4505 osv
.version
= (u8
)(LINUX_VERSION_CODE
>> 16);
4506 osv
.subversion
= (u8
)(LINUX_VERSION_CODE
>> 8);
4507 osv
.revision
= (u16
)(LINUX_VERSION_CODE
& 0xff);
4508 if (copy_to_user(argp
, &osv
, sizeof(gdth_ioctl_osvers
)))
4513 case GDTIOCTL_CTRTYPE
:
4515 gdth_ioctl_ctrtype ctrt
;
4517 if (copy_from_user(&ctrt
, argp
, sizeof(gdth_ioctl_ctrtype
)) ||
4518 (NULL
== (ha
= gdth_find_ha(ctrt
.ionode
))))
4521 if (ha
->type
== GDT_ISA
|| ha
->type
== GDT_EISA
) {
4522 ctrt
.type
= (u8
)((ha
->stype
>>20) - 0x10);
4524 if (ha
->type
!= GDT_PCIMPR
) {
4525 ctrt
.type
= (u8
)((ha
->stype
<<4) + 6);
4528 (ha
->oem_id
== OEM_ID_INTEL
? 0xfd : 0xfe);
4529 if (ha
->stype
>= 0x300)
4530 ctrt
.ext_type
= 0x6000 | ha
->pdev
->subsystem_device
;
4532 ctrt
.ext_type
= 0x6000 | ha
->stype
;
4534 ctrt
.device_id
= ha
->pdev
->device
;
4535 ctrt
.sub_device_id
= ha
->pdev
->subsystem_device
;
4537 ctrt
.info
= ha
->brd_phys
;
4538 ctrt
.oem_id
= ha
->oem_id
;
4539 if (copy_to_user(argp
, &ctrt
, sizeof(gdth_ioctl_ctrtype
)))
4544 case GDTIOCTL_GENERAL
:
4545 return ioc_general(argp
, cmnd
);
4547 case GDTIOCTL_EVENT
:
4548 return ioc_event(argp
);
4550 case GDTIOCTL_LOCKDRV
:
4551 return ioc_lockdrv(argp
);
4553 case GDTIOCTL_LOCKCHN
:
4555 gdth_ioctl_lockchn lchn
;
4558 if (copy_from_user(&lchn
, argp
, sizeof(gdth_ioctl_lockchn
)) ||
4559 (NULL
== (ha
= gdth_find_ha(lchn
.ionode
))))
4563 if (i
< ha
->bus_cnt
) {
4565 spin_lock_irqsave(&ha
->smp_lock
, flags
);
4566 ha
->raw
[i
].lock
= 1;
4567 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
4568 for (j
= 0; j
< ha
->tid_cnt
; ++j
)
4569 gdth_wait_completion(ha
, i
, j
);
4571 spin_lock_irqsave(&ha
->smp_lock
, flags
);
4572 ha
->raw
[i
].lock
= 0;
4573 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
4574 for (j
= 0; j
< ha
->tid_cnt
; ++j
)
4581 case GDTIOCTL_RESCAN
:
4582 return ioc_rescan(argp
, cmnd
);
4584 case GDTIOCTL_HDRLIST
:
4585 return ioc_hdrlist(argp
, cmnd
);
4587 case GDTIOCTL_RESET_BUS
:
4589 gdth_ioctl_reset res
;
4592 if (copy_from_user(&res
, argp
, sizeof(gdth_ioctl_reset
)) ||
4593 (NULL
== (ha
= gdth_find_ha(res
.ionode
))))
4596 scp
= kzalloc(sizeof(*scp
), GFP_KERNEL
);
4599 scp
->device
= ha
->sdev
;
4601 scp
->device
->channel
= res
.number
;
4602 rval
= gdth_eh_bus_reset(scp
);
4603 res
.status
= (rval
== SUCCESS
? S_OK
: S_GENERR
);
4606 if (copy_to_user(argp
, &res
, sizeof(gdth_ioctl_reset
)))
4611 case GDTIOCTL_RESET_DRV
:
4612 return ioc_resetdrv(argp
, cmnd
);
4620 static long gdth_unlocked_ioctl(struct file
*file
, unsigned int cmd
,
4625 mutex_lock(&gdth_mutex
);
4626 ret
= gdth_ioctl(file
, cmd
, arg
);
4627 mutex_unlock(&gdth_mutex
);
4633 static void gdth_flush(gdth_ha_str
*ha
)
4636 gdth_cmd_str gdtcmd
;
4637 char cmnd
[MAX_COMMAND_SIZE
];
4638 memset(cmnd
, 0xff, MAX_COMMAND_SIZE
);
4640 TRACE2(("gdth_flush() hanum %d\n", ha
->hanum
));
4642 for (i
= 0; i
< MAX_HDRIVES
; ++i
) {
4643 if (ha
->hdr
[i
].present
) {
4644 gdtcmd
.BoardNode
= LOCALBOARD
;
4645 gdtcmd
.Service
= CACHESERVICE
;
4646 gdtcmd
.OpCode
= GDT_FLUSH
;
4647 if (ha
->cache_feat
& GDT_64BIT
) {
4648 gdtcmd
.u
.cache64
.DeviceNo
= i
;
4649 gdtcmd
.u
.cache64
.BlockNo
= 1;
4650 gdtcmd
.u
.cache64
.sg_canz
= 0;
4652 gdtcmd
.u
.cache
.DeviceNo
= i
;
4653 gdtcmd
.u
.cache
.BlockNo
= 1;
4654 gdtcmd
.u
.cache
.sg_canz
= 0;
4656 TRACE2(("gdth_flush(): flush ha %d drive %d\n", ha
->hanum
, i
));
4658 gdth_execute(ha
->shost
, &gdtcmd
, cmnd
, 30, NULL
);
4664 static int gdth_slave_configure(struct scsi_device
*sdev
)
4666 scsi_adjust_queue_depth(sdev
, 0, sdev
->host
->cmd_per_lun
);
4667 sdev
->skip_ms_page_3f
= 1;
4668 sdev
->skip_ms_page_8
= 1;
4672 static struct scsi_host_template gdth_template
= {
4673 .name
= "GDT SCSI Disk Array Controller",
4675 .queuecommand
= gdth_queuecommand
,
4676 .eh_bus_reset_handler
= gdth_eh_bus_reset
,
4677 .slave_configure
= gdth_slave_configure
,
4678 .bios_param
= gdth_bios_param
,
4679 .show_info
= gdth_show_info
,
4680 .write_info
= gdth_set_info
,
4681 .eh_timed_out
= gdth_timed_out
,
4682 .proc_name
= "gdth",
4683 .can_queue
= GDTH_MAXCMDS
,
4685 .sg_tablesize
= GDTH_MAXSG
,
4686 .cmd_per_lun
= GDTH_MAXC_P_L
,
4687 .unchecked_isa_dma
= 1,
4688 .use_clustering
= ENABLE_CLUSTERING
,
4692 static int __init
gdth_isa_probe_one(u32 isa_bios
)
4694 struct Scsi_Host
*shp
;
4696 dma_addr_t scratch_dma_handle
= 0;
4699 if (!gdth_search_isa(isa_bios
))
4702 shp
= scsi_host_alloc(&gdth_template
, sizeof(gdth_ha_str
));
4705 ha
= shost_priv(shp
);
4708 if (!gdth_init_isa(isa_bios
,ha
))
4711 /* controller found and initialized */
4712 printk("Configuring GDT-ISA HA at BIOS 0x%05X IRQ %u DRQ %u\n",
4713 isa_bios
, ha
->irq
, ha
->drq
);
4715 error
= request_irq(ha
->irq
, gdth_interrupt
, IRQF_DISABLED
, "gdth", ha
);
4717 printk("GDT-ISA: Unable to allocate IRQ\n");
4721 error
= request_dma(ha
->drq
, "gdth");
4723 printk("GDT-ISA: Unable to allocate DMA channel\n");
4727 set_dma_mode(ha
->drq
,DMA_MODE_CASCADE
);
4728 enable_dma(ha
->drq
);
4729 shp
->unchecked_isa_dma
= 1;
4731 shp
->dma_channel
= ha
->drq
;
4733 ha
->hanum
= gdth_ctr_count
++;
4736 ha
->pccb
= &ha
->cmdext
;
4742 ha
->pscratch
= pci_alloc_consistent(ha
->pdev
, GDTH_SCRATCH
,
4743 &scratch_dma_handle
);
4745 goto out_dec_counters
;
4746 ha
->scratch_phys
= scratch_dma_handle
;
4748 ha
->pmsg
= pci_alloc_consistent(ha
->pdev
, sizeof(gdth_msg_str
),
4749 &scratch_dma_handle
);
4751 goto out_free_pscratch
;
4752 ha
->msg_phys
= scratch_dma_handle
;
4755 ha
->coal_stat
= pci_alloc_consistent(ha
->pdev
,
4756 sizeof(gdth_coal_status
) * MAXOFFSETS
,
4757 &scratch_dma_handle
);
4760 ha
->coal_stat_phys
= scratch_dma_handle
;
4763 ha
->scratch_busy
= FALSE
;
4764 ha
->req_first
= NULL
;
4765 ha
->tid_cnt
= MAX_HDRIVES
;
4766 if (max_ids
> 0 && max_ids
< ha
->tid_cnt
)
4767 ha
->tid_cnt
= max_ids
;
4768 for (i
= 0; i
< GDTH_MAXCMDS
; ++i
)
4769 ha
->cmd_tab
[i
].cmnd
= UNUSED_CMND
;
4770 ha
->scan_mode
= rescan
? 0x10 : 0;
4773 if (!gdth_search_drives(ha
)) {
4774 printk("GDT-ISA: Error during device scan\n");
4775 goto out_free_coal_stat
;
4778 if (hdr_channel
< 0 || hdr_channel
> ha
->bus_cnt
)
4779 hdr_channel
= ha
->bus_cnt
;
4780 ha
->virt_bus
= hdr_channel
;
4782 if (ha
->cache_feat
& ha
->raw_feat
& ha
->screen_feat
& GDT_64BIT
)
4783 shp
->max_cmd_len
= 16;
4785 shp
->max_id
= ha
->tid_cnt
;
4786 shp
->max_lun
= MAXLUN
;
4787 shp
->max_channel
= ha
->bus_cnt
;
4789 spin_lock_init(&ha
->smp_lock
);
4790 gdth_enable_int(ha
);
4792 error
= scsi_add_host(shp
, NULL
);
4794 goto out_free_coal_stat
;
4795 list_add_tail(&ha
->list
, &gdth_instances
);
4798 scsi_scan_host(shp
);
4804 pci_free_consistent(ha
->pdev
, sizeof(gdth_coal_status
) * MAXOFFSETS
,
4805 ha
->coal_stat
, ha
->coal_stat_phys
);
4808 pci_free_consistent(ha
->pdev
, sizeof(gdth_msg_str
),
4809 ha
->pmsg
, ha
->msg_phys
);
4811 pci_free_consistent(ha
->pdev
, GDTH_SCRATCH
,
4812 ha
->pscratch
, ha
->scratch_phys
);
4816 free_irq(ha
->irq
, ha
);
4821 #endif /* CONFIG_ISA */
4824 static int __init
gdth_eisa_probe_one(u16 eisa_slot
)
4826 struct Scsi_Host
*shp
;
4828 dma_addr_t scratch_dma_handle
= 0;
4831 if (!gdth_search_eisa(eisa_slot
))
4834 shp
= scsi_host_alloc(&gdth_template
, sizeof(gdth_ha_str
));
4837 ha
= shost_priv(shp
);
4840 if (!gdth_init_eisa(eisa_slot
,ha
))
4843 /* controller found and initialized */
4844 printk("Configuring GDT-EISA HA at Slot %d IRQ %u\n",
4845 eisa_slot
>> 12, ha
->irq
);
4847 error
= request_irq(ha
->irq
, gdth_interrupt
, IRQF_DISABLED
, "gdth", ha
);
4849 printk("GDT-EISA: Unable to allocate IRQ\n");
4853 shp
->unchecked_isa_dma
= 0;
4855 shp
->dma_channel
= 0xff;
4857 ha
->hanum
= gdth_ctr_count
++;
4860 TRACE2(("EISA detect Bus 0: hanum %d\n", ha
->hanum
));
4862 ha
->pccb
= &ha
->cmdext
;
4868 ha
->pscratch
= pci_alloc_consistent(ha
->pdev
, GDTH_SCRATCH
,
4869 &scratch_dma_handle
);
4872 ha
->scratch_phys
= scratch_dma_handle
;
4874 ha
->pmsg
= pci_alloc_consistent(ha
->pdev
, sizeof(gdth_msg_str
),
4875 &scratch_dma_handle
);
4877 goto out_free_pscratch
;
4878 ha
->msg_phys
= scratch_dma_handle
;
4881 ha
->coal_stat
= pci_alloc_consistent(ha
->pdev
,
4882 sizeof(gdth_coal_status
) * MAXOFFSETS
,
4883 &scratch_dma_handle
);
4886 ha
->coal_stat_phys
= scratch_dma_handle
;
4889 ha
->ccb_phys
= pci_map_single(ha
->pdev
,ha
->pccb
,
4890 sizeof(gdth_cmd_str
), PCI_DMA_BIDIRECTIONAL
);
4892 goto out_free_coal_stat
;
4894 ha
->scratch_busy
= FALSE
;
4895 ha
->req_first
= NULL
;
4896 ha
->tid_cnt
= MAX_HDRIVES
;
4897 if (max_ids
> 0 && max_ids
< ha
->tid_cnt
)
4898 ha
->tid_cnt
= max_ids
;
4899 for (i
= 0; i
< GDTH_MAXCMDS
; ++i
)
4900 ha
->cmd_tab
[i
].cmnd
= UNUSED_CMND
;
4901 ha
->scan_mode
= rescan
? 0x10 : 0;
4903 if (!gdth_search_drives(ha
)) {
4904 printk("GDT-EISA: Error during device scan\n");
4906 goto out_free_ccb_phys
;
4909 if (hdr_channel
< 0 || hdr_channel
> ha
->bus_cnt
)
4910 hdr_channel
= ha
->bus_cnt
;
4911 ha
->virt_bus
= hdr_channel
;
4913 if (ha
->cache_feat
& ha
->raw_feat
& ha
->screen_feat
& GDT_64BIT
)
4914 shp
->max_cmd_len
= 16;
4916 shp
->max_id
= ha
->tid_cnt
;
4917 shp
->max_lun
= MAXLUN
;
4918 shp
->max_channel
= ha
->bus_cnt
;
4920 spin_lock_init(&ha
->smp_lock
);
4921 gdth_enable_int(ha
);
4923 error
= scsi_add_host(shp
, NULL
);
4925 goto out_free_ccb_phys
;
4926 list_add_tail(&ha
->list
, &gdth_instances
);
4929 scsi_scan_host(shp
);
4934 pci_unmap_single(ha
->pdev
,ha
->ccb_phys
, sizeof(gdth_cmd_str
),
4935 PCI_DMA_BIDIRECTIONAL
);
4938 pci_free_consistent(ha
->pdev
, sizeof(gdth_coal_status
) * MAXOFFSETS
,
4939 ha
->coal_stat
, ha
->coal_stat_phys
);
4942 pci_free_consistent(ha
->pdev
, sizeof(gdth_msg_str
),
4943 ha
->pmsg
, ha
->msg_phys
);
4945 pci_free_consistent(ha
->pdev
, GDTH_SCRATCH
,
4946 ha
->pscratch
, ha
->scratch_phys
);
4948 free_irq(ha
->irq
, ha
);
4954 #endif /* CONFIG_EISA */
4957 static int gdth_pci_probe_one(gdth_pci_str
*pcistr
, gdth_ha_str
**ha_out
)
4959 struct Scsi_Host
*shp
;
4961 dma_addr_t scratch_dma_handle
= 0;
4963 struct pci_dev
*pdev
= pcistr
->pdev
;
4967 shp
= scsi_host_alloc(&gdth_template
, sizeof(gdth_ha_str
));
4970 ha
= shost_priv(shp
);
4973 if (!gdth_init_pci(pdev
, pcistr
, ha
))
4976 /* controller found and initialized */
4977 printk("Configuring GDT-PCI HA at %d/%d IRQ %u\n",
4979 PCI_SLOT(pdev
->devfn
),
4982 error
= request_irq(ha
->irq
, gdth_interrupt
,
4983 IRQF_DISABLED
|IRQF_SHARED
, "gdth", ha
);
4985 printk("GDT-PCI: Unable to allocate IRQ\n");
4989 shp
->unchecked_isa_dma
= 0;
4991 shp
->dma_channel
= 0xff;
4993 ha
->hanum
= gdth_ctr_count
++;
4996 ha
->pccb
= &ha
->cmdext
;
5001 ha
->pscratch
= pci_alloc_consistent(ha
->pdev
, GDTH_SCRATCH
,
5002 &scratch_dma_handle
);
5005 ha
->scratch_phys
= scratch_dma_handle
;
5007 ha
->pmsg
= pci_alloc_consistent(ha
->pdev
, sizeof(gdth_msg_str
),
5008 &scratch_dma_handle
);
5010 goto out_free_pscratch
;
5011 ha
->msg_phys
= scratch_dma_handle
;
5014 ha
->coal_stat
= pci_alloc_consistent(ha
->pdev
,
5015 sizeof(gdth_coal_status
) * MAXOFFSETS
,
5016 &scratch_dma_handle
);
5019 ha
->coal_stat_phys
= scratch_dma_handle
;
5022 ha
->scratch_busy
= FALSE
;
5023 ha
->req_first
= NULL
;
5024 ha
->tid_cnt
= pdev
->device
>= 0x200 ? MAXID
: MAX_HDRIVES
;
5025 if (max_ids
> 0 && max_ids
< ha
->tid_cnt
)
5026 ha
->tid_cnt
= max_ids
;
5027 for (i
= 0; i
< GDTH_MAXCMDS
; ++i
)
5028 ha
->cmd_tab
[i
].cmnd
= UNUSED_CMND
;
5029 ha
->scan_mode
= rescan
? 0x10 : 0;
5032 if (!gdth_search_drives(ha
)) {
5033 printk("GDT-PCI %d: Error during device scan\n", ha
->hanum
);
5034 goto out_free_coal_stat
;
5037 if (hdr_channel
< 0 || hdr_channel
> ha
->bus_cnt
)
5038 hdr_channel
= ha
->bus_cnt
;
5039 ha
->virt_bus
= hdr_channel
;
5041 /* 64-bit DMA only supported from FW >= x.43 */
5042 if (!(ha
->cache_feat
& ha
->raw_feat
& ha
->screen_feat
& GDT_64BIT
) ||
5043 !ha
->dma64_support
) {
5044 if (pci_set_dma_mask(pdev
, DMA_BIT_MASK(32))) {
5045 printk(KERN_WARNING
"GDT-PCI %d: "
5046 "Unable to set 32-bit DMA\n", ha
->hanum
);
5047 goto out_free_coal_stat
;
5050 shp
->max_cmd_len
= 16;
5051 if (!pci_set_dma_mask(pdev
, DMA_BIT_MASK(64))) {
5052 printk("GDT-PCI %d: 64-bit DMA enabled\n", ha
->hanum
);
5053 } else if (pci_set_dma_mask(pdev
, DMA_BIT_MASK(32))) {
5054 printk(KERN_WARNING
"GDT-PCI %d: "
5055 "Unable to set 64/32-bit DMA\n", ha
->hanum
);
5056 goto out_free_coal_stat
;
5060 shp
->max_id
= ha
->tid_cnt
;
5061 shp
->max_lun
= MAXLUN
;
5062 shp
->max_channel
= ha
->bus_cnt
;
5064 spin_lock_init(&ha
->smp_lock
);
5065 gdth_enable_int(ha
);
5067 error
= scsi_add_host(shp
, &pdev
->dev
);
5069 goto out_free_coal_stat
;
5070 list_add_tail(&ha
->list
, &gdth_instances
);
5072 pci_set_drvdata(ha
->pdev
, ha
);
5075 scsi_scan_host(shp
);
5083 pci_free_consistent(ha
->pdev
, sizeof(gdth_coal_status
) * MAXOFFSETS
,
5084 ha
->coal_stat
, ha
->coal_stat_phys
);
5087 pci_free_consistent(ha
->pdev
, sizeof(gdth_msg_str
),
5088 ha
->pmsg
, ha
->msg_phys
);
5090 pci_free_consistent(ha
->pdev
, GDTH_SCRATCH
,
5091 ha
->pscratch
, ha
->scratch_phys
);
5093 free_irq(ha
->irq
, ha
);
5099 #endif /* CONFIG_PCI */
5101 static void gdth_remove_one(gdth_ha_str
*ha
)
5103 struct Scsi_Host
*shp
= ha
->shost
;
5105 TRACE2(("gdth_remove_one()\n"));
5107 scsi_remove_host(shp
);
5112 scsi_free_host_dev(ha
->sdev
);
5117 free_irq(shp
->irq
,ha
);
5120 if (shp
->dma_channel
!= 0xff)
5121 free_dma(shp
->dma_channel
);
5125 pci_free_consistent(ha
->pdev
, sizeof(gdth_coal_status
) *
5126 MAXOFFSETS
, ha
->coal_stat
, ha
->coal_stat_phys
);
5129 pci_free_consistent(ha
->pdev
, GDTH_SCRATCH
,
5130 ha
->pscratch
, ha
->scratch_phys
);
5132 pci_free_consistent(ha
->pdev
, sizeof(gdth_msg_str
),
5133 ha
->pmsg
, ha
->msg_phys
);
5135 pci_unmap_single(ha
->pdev
,ha
->ccb_phys
,
5136 sizeof(gdth_cmd_str
),PCI_DMA_BIDIRECTIONAL
);
5141 static int gdth_halt(struct notifier_block
*nb
, unsigned long event
, void *buf
)
5145 TRACE2(("gdth_halt() event %d\n", (int)event
));
5146 if (event
!= SYS_RESTART
&& event
!= SYS_HALT
&& event
!= SYS_POWER_OFF
)
5149 list_for_each_entry(ha
, &gdth_instances
, list
)
5155 static struct notifier_block gdth_notifier
= {
5159 static int __init
gdth_init(void)
5162 printk("GDT-HA: Controller driver disabled from"
5163 " command line !\n");
5167 printk("GDT-HA: Storage RAID Controller Driver. Version: %s\n",
5170 /* initializations */
5171 gdth_polling
= TRUE
;
5172 gdth_clear_events();
5173 init_timer(&gdth_timer
);
5175 /* As default we do not probe for EISA or ISA controllers */
5176 if (probe_eisa_isa
) {
5177 /* scanning for controllers, at first: ISA controller */
5180 for (isa_bios
= 0xc8000UL
; isa_bios
<= 0xd8000UL
;
5181 isa_bios
+= 0x8000UL
)
5182 gdth_isa_probe_one(isa_bios
);
5187 for (eisa_slot
= 0x1000; eisa_slot
<= 0x8000;
5188 eisa_slot
+= 0x1000)
5189 gdth_eisa_probe_one(eisa_slot
);
5195 /* scanning for PCI controllers */
5196 if (pci_register_driver(&gdth_pci_driver
)) {
5199 list_for_each_entry(ha
, &gdth_instances
, list
)
5200 gdth_remove_one(ha
);
5203 #endif /* CONFIG_PCI */
5205 TRACE2(("gdth_detect() %d controller detected\n", gdth_ctr_count
));
5207 major
= register_chrdev(0,"gdth", &gdth_fops
);
5208 register_reboot_notifier(&gdth_notifier
);
5209 gdth_polling
= FALSE
;
5213 static void __exit
gdth_exit(void)
5217 unregister_chrdev(major
, "gdth");
5218 unregister_reboot_notifier(&gdth_notifier
);
5220 #ifdef GDTH_STATISTICS
5221 del_timer_sync(&gdth_timer
);
5225 pci_unregister_driver(&gdth_pci_driver
);
5228 list_for_each_entry(ha
, &gdth_instances
, list
)
5229 gdth_remove_one(ha
);
5232 module_init(gdth_init
);
5233 module_exit(gdth_exit
);
5236 __setup("gdth=", option_setup
);