1 /************************************************************************
3 * ICP vortex GmbH: GDT 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 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 * After the optional list of IRQ values, other possible
40 * command line options are:
41 * disable:Y disable driver
42 * disable:N enable driver
43 * reserve_mode:0 reserve no drives for the raw service
44 * reserve_mode:1 reserve all not init., removable drives
45 * reserve_mode:2 reserve all not init. drives
46 * reserve_list:h,b,t,l,h,b,t,l,... reserve particular drive(s) with
47 * h- controller no., b- channel no.,
48 * t- target ID, l- LUN
49 * reverse_scan:Y reverse scan order for PCI controllers
50 * reverse_scan:N scan PCI controllers like BIOS
51 * max_ids:x x - target ID count per channel (1..MAXID)
52 * rescan:Y rescan all channels/IDs
53 * rescan:N use all devices found until now
54 * hdr_channel:x x - number of virtual bus for host drives
55 * shared_access:Y disable driver reserve/release protocol to
56 * access a shared resource from several nodes,
57 * appropriate controller firmware required
58 * shared_access:N enable driver reserve/release protocol
59 * force_dma32:Y use only 32 bit DMA mode
60 * force_dma32:N use 64 bit DMA mode, if supported
62 * The default values are: "gdth=disable:N,reserve_mode:1,reverse_scan:N,
63 * max_ids:127,rescan:N,hdr_channel:0,
64 * shared_access:Y,force_dma32:N".
65 * Here is another example: "gdth=reserve_list:0,1,2,0,0,1,3,0,rescan:Y".
67 * When loading the gdth driver as a module, the same options are available.
68 * You can set the IRQs with "IRQ=...". However, the syntax to specify the
69 * options changes slightly. You must replace all ',' between options
70 * with ' ' and all ':' with '=' and you must use
71 * '1' in place of 'Y' and '0' in place of 'N'.
73 * Default: "modprobe gdth disable=0 reserve_mode=1 reverse_scan=0
74 * max_ids=127 rescan=0 hdr_channel=0 shared_access=0
76 * The other example: "modprobe gdth reserve_list=0,1,2,0,0,1,3,0 rescan=1".
79 /* The meaning of the Scsi_Pointer members in this driver is as follows:
81 * this_residual: unused
84 * buffers_residual: unused
87 * have_data_in: unused
88 * sent_command: unused
93 #define GDTH_STATISTICS
95 #include <linux/module.h>
97 #include <linux/version.h>
98 #include <linux/kernel.h>
99 #include <linux/types.h>
100 #include <linux/pci.h>
101 #include <linux/string.h>
102 #include <linux/ctype.h>
103 #include <linux/ioport.h>
104 #include <linux/delay.h>
105 #include <linux/interrupt.h>
106 #include <linux/in.h>
107 #include <linux/proc_fs.h>
108 #include <linux/time.h>
109 #include <linux/timer.h>
110 #include <linux/dma-mapping.h>
111 #include <linux/list.h>
112 #include <linux/mutex.h>
113 #include <linux/slab.h>
114 #include <linux/reboot.h>
118 #include <linux/uaccess.h>
119 #include <linux/spinlock.h>
120 #include <linux/blkdev.h>
121 #include <linux/scatterlist.h>
124 #include <scsi/scsi_host.h>
127 static DEFINE_MUTEX(gdth_mutex
);
128 static void gdth_delay(int milliseconds
);
129 static void gdth_eval_mapping(u32 size
, u32
*cyls
, int *heads
, int *secs
);
130 static irqreturn_t
gdth_interrupt(int irq
, void *dev_id
);
131 static irqreturn_t
__gdth_interrupt(gdth_ha_str
*ha
,
132 int gdth_from_wait
, int* pIndex
);
133 static int gdth_sync_event(gdth_ha_str
*ha
, int service
, u8 index
,
134 struct scsi_cmnd
*scp
);
135 static int gdth_async_event(gdth_ha_str
*ha
);
136 static void gdth_log_event(gdth_evt_data
*dvr
, char *buffer
);
138 static void gdth_putq(gdth_ha_str
*ha
, struct scsi_cmnd
*scp
, u8 priority
);
139 static void gdth_next(gdth_ha_str
*ha
);
140 static int gdth_fill_raw_cmd(gdth_ha_str
*ha
, struct scsi_cmnd
*scp
, u8 b
);
141 static int gdth_special_cmd(gdth_ha_str
*ha
, struct scsi_cmnd
*scp
);
142 static gdth_evt_str
*gdth_store_event(gdth_ha_str
*ha
, u16 source
,
143 u16 idx
, gdth_evt_data
*evt
);
144 static int gdth_read_event(gdth_ha_str
*ha
, int handle
, gdth_evt_str
*estr
);
145 static void gdth_readapp_event(gdth_ha_str
*ha
, u8 application
,
147 static void gdth_clear_events(void);
149 static void gdth_copy_internal_data(gdth_ha_str
*ha
, struct scsi_cmnd
*scp
,
150 char *buffer
, u16 count
);
151 static int gdth_internal_cache_cmd(gdth_ha_str
*ha
, struct scsi_cmnd
*scp
);
152 static int gdth_fill_cache_cmd(gdth_ha_str
*ha
, struct scsi_cmnd
*scp
,
155 static void gdth_enable_int(gdth_ha_str
*ha
);
156 static int gdth_test_busy(gdth_ha_str
*ha
);
157 static int gdth_get_cmd_index(gdth_ha_str
*ha
);
158 static void gdth_release_event(gdth_ha_str
*ha
);
159 static int gdth_wait(gdth_ha_str
*ha
, int index
,u32 time
);
160 static int gdth_internal_cmd(gdth_ha_str
*ha
, u8 service
, u16 opcode
,
161 u32 p1
, u64 p2
,u64 p3
);
162 static int gdth_search_drives(gdth_ha_str
*ha
);
163 static int gdth_analyse_hdrive(gdth_ha_str
*ha
, u16 hdrive
);
165 static const char *gdth_ctr_name(gdth_ha_str
*ha
);
167 static int gdth_open(struct inode
*inode
, struct file
*filep
);
168 static int gdth_close(struct inode
*inode
, struct file
*filep
);
169 static long gdth_unlocked_ioctl(struct file
*filep
, unsigned int cmd
,
172 static void gdth_flush(gdth_ha_str
*ha
);
173 static int gdth_queuecommand(struct Scsi_Host
*h
, struct scsi_cmnd
*cmd
);
174 static int __gdth_queuecommand(gdth_ha_str
*ha
, struct scsi_cmnd
*scp
,
175 struct gdth_cmndinfo
*cmndinfo
);
176 static void gdth_scsi_done(struct scsi_cmnd
*scp
);
179 static u8 DebugState
= DEBUG_GDTH
;
180 #define TRACE(a) {if (DebugState==1) {printk a;}}
181 #define TRACE2(a) {if (DebugState==1 || DebugState==2) {printk a;}}
182 #define TRACE3(a) {if (DebugState!=0) {printk a;}}
189 #ifdef GDTH_STATISTICS
190 static u32 max_rq
=0, max_index
=0, max_sg
=0;
191 static u32 act_ints
=0, act_ios
=0, act_stats
=0, act_rq
=0;
192 static struct timer_list gdth_timer
;
195 #define PTR2USHORT(a) (u16)(unsigned long)(a)
196 #define GDTOFFSOF(a,b) (size_t)&(((a*)0)->b)
197 #define INDEX_OK(i,t) ((i)<ARRAY_SIZE(t))
199 #define BUS_L2P(a,b) ((b)>(a)->virt_bus ? (b-1):(b))
201 static u8 gdth_polling
; /* polling if TRUE */
202 static int gdth_ctr_count
= 0; /* controller count */
203 static LIST_HEAD(gdth_instances
); /* controller list */
204 static u8 gdth_write_through
= FALSE
; /* write through */
205 static gdth_evt_str ebuffer
[MAX_EVENTS
]; /* event buffer */
210 #define DIN 1 /* IN data direction */
211 #define DOU 2 /* OUT data direction */
212 #define DNO DIN /* no data transfer */
213 #define DUN DIN /* unknown data direction */
214 static u8 gdth_direction_tab
[0x100] = {
215 DNO
,DNO
,DIN
,DIN
,DOU
,DIN
,DIN
,DOU
,DIN
,DUN
,DOU
,DOU
,DUN
,DUN
,DUN
,DIN
,
216 DNO
,DIN
,DIN
,DOU
,DIN
,DOU
,DNO
,DNO
,DOU
,DNO
,DIN
,DNO
,DIN
,DOU
,DNO
,DUN
,
217 DIN
,DUN
,DIN
,DUN
,DOU
,DIN
,DUN
,DUN
,DIN
,DIN
,DOU
,DNO
,DUN
,DIN
,DOU
,DOU
,
218 DOU
,DOU
,DOU
,DNO
,DIN
,DNO
,DNO
,DIN
,DOU
,DOU
,DOU
,DOU
,DIN
,DOU
,DIN
,DOU
,
219 DOU
,DOU
,DIN
,DIN
,DIN
,DNO
,DUN
,DNO
,DNO
,DNO
,DUN
,DNO
,DOU
,DIN
,DUN
,DUN
,
220 DUN
,DUN
,DUN
,DUN
,DUN
,DOU
,DUN
,DUN
,DUN
,DUN
,DIN
,DUN
,DUN
,DUN
,DUN
,DUN
,
221 DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,
222 DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,
223 DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DIN
,DUN
,DOU
,DUN
,DUN
,DUN
,DUN
,DUN
,
224 DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DIN
,DUN
,
225 DUN
,DUN
,DUN
,DUN
,DUN
,DNO
,DNO
,DUN
,DIN
,DNO
,DOU
,DUN
,DNO
,DUN
,DOU
,DOU
,
226 DOU
,DOU
,DOU
,DNO
,DUN
,DIN
,DOU
,DIN
,DIN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,
227 DUN
,DUN
,DOU
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,
228 DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,
229 DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DOU
,DUN
,DUN
,DUN
,DUN
,DUN
,
230 DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
,DUN
233 /* LILO and modprobe/insmod parameters */
234 /* disable driver flag */
235 static int disable __initdata
= 0;
237 static int reserve_mode
= 1;
239 static int reserve_list
[MAX_RES_ARGS
] =
240 {0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
241 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
242 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff};
243 /* scan order for PCI controllers */
244 static int reverse_scan
= 0;
245 /* virtual channel for the host drives */
246 static int hdr_channel
= 0;
247 /* max. IDs per channel */
248 static int max_ids
= MAXID
;
250 static int rescan
= 0;
252 static int shared_access
= 1;
253 /* 64 bit DMA mode, support for drives > 2 TB, if force_dma32 = 0 */
254 static int force_dma32
= 0;
256 /* parameters for modprobe/insmod */
257 module_param(disable
, int, 0);
258 module_param(reserve_mode
, int, 0);
259 module_param_array(reserve_list
, int, NULL
, 0);
260 module_param(reverse_scan
, int, 0);
261 module_param(hdr_channel
, int, 0);
262 module_param(max_ids
, int, 0);
263 module_param(rescan
, int, 0);
264 module_param(shared_access
, int, 0);
265 module_param(force_dma32
, int, 0);
266 MODULE_AUTHOR("Achim Leubner");
267 MODULE_LICENSE("GPL");
269 /* ioctl interface */
270 static const struct file_operations gdth_fops
= {
271 .unlocked_ioctl
= gdth_unlocked_ioctl
,
273 .release
= gdth_close
,
274 .llseek
= noop_llseek
,
277 #include "gdth_proc.h"
278 #include "gdth_proc.c"
280 static gdth_ha_str
*gdth_find_ha(int hanum
)
284 list_for_each_entry(ha
, &gdth_instances
, list
)
285 if (hanum
== ha
->hanum
)
291 static struct gdth_cmndinfo
*gdth_get_cmndinfo(gdth_ha_str
*ha
)
293 struct gdth_cmndinfo
*priv
= NULL
;
297 spin_lock_irqsave(&ha
->smp_lock
, flags
);
299 for (i
=0; i
<GDTH_MAXCMDS
; ++i
) {
300 if (ha
->cmndinfo
[i
].index
== 0) {
301 priv
= &ha
->cmndinfo
[i
];
302 memset(priv
, 0, sizeof(*priv
));
308 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
313 static void gdth_put_cmndinfo(struct gdth_cmndinfo
*priv
)
319 static void gdth_delay(int milliseconds
)
321 if (milliseconds
== 0) {
324 mdelay(milliseconds
);
328 static void gdth_scsi_done(struct scsi_cmnd
*scp
)
330 struct gdth_cmndinfo
*cmndinfo
= gdth_cmnd_priv(scp
);
331 int internal_command
= cmndinfo
->internal_command
;
333 TRACE2(("gdth_scsi_done()\n"));
335 gdth_put_cmndinfo(cmndinfo
);
336 scp
->host_scribble
= NULL
;
338 if (internal_command
)
339 complete((struct completion
*)scp
->request
);
344 int __gdth_execute(struct scsi_device
*sdev
, gdth_cmd_str
*gdtcmd
, char *cmnd
,
345 int timeout
, u32
*info
)
347 gdth_ha_str
*ha
= shost_priv(sdev
->host
);
348 struct scsi_cmnd
*scp
;
349 struct gdth_cmndinfo cmndinfo
;
350 DECLARE_COMPLETION_ONSTACK(wait
);
353 scp
= kzalloc(sizeof(*scp
), GFP_KERNEL
);
357 scp
->sense_buffer
= kzalloc(SCSI_SENSE_BUFFERSIZE
, GFP_KERNEL
);
358 if (!scp
->sense_buffer
) {
364 memset(&cmndinfo
, 0, sizeof(cmndinfo
));
366 /* use request field to save the ptr. to completion struct. */
367 scp
->request
= (struct request
*)&wait
;
370 cmndinfo
.priority
= IOCTL_PRI
;
371 cmndinfo
.internal_cmd_str
= gdtcmd
;
372 cmndinfo
.internal_command
= 1;
374 TRACE(("__gdth_execute() cmd 0x%x\n", scp
->cmnd
[0]));
375 __gdth_queuecommand(ha
, scp
, &cmndinfo
);
377 wait_for_completion(&wait
);
379 rval
= cmndinfo
.status
;
381 *info
= cmndinfo
.info
;
382 kfree(scp
->sense_buffer
);
387 int gdth_execute(struct Scsi_Host
*shost
, gdth_cmd_str
*gdtcmd
, char *cmnd
,
388 int timeout
, u32
*info
)
390 struct scsi_device
*sdev
= scsi_get_host_dev(shost
);
391 int rval
= __gdth_execute(sdev
, gdtcmd
, cmnd
, timeout
, info
);
393 scsi_free_host_dev(sdev
);
397 static void gdth_eval_mapping(u32 size
, u32
*cyls
, int *heads
, int *secs
)
399 *cyls
= size
/HEADS
/SECS
;
400 if (*cyls
<= MAXCYLS
) {
403 } else { /* too high for 64*32 */
404 *cyls
= size
/MEDHEADS
/MEDSECS
;
405 if (*cyls
<= MAXCYLS
) {
408 } else { /* too high for 127*63 */
409 *cyls
= size
/BIGHEADS
/BIGSECS
;
416 static bool gdth_search_vortex(u16 device
)
418 if (device
<= PCI_DEVICE_ID_VORTEX_GDT6555
)
420 if (device
>= PCI_DEVICE_ID_VORTEX_GDT6x17RP
&&
421 device
<= PCI_DEVICE_ID_VORTEX_GDTMAXRP
)
423 if (device
== PCI_DEVICE_ID_VORTEX_GDTNEWRX
||
424 device
== PCI_DEVICE_ID_VORTEX_GDTNEWRX2
)
429 static int gdth_pci_probe_one(gdth_pci_str
*pcistr
, gdth_ha_str
**ha_out
);
430 static int gdth_pci_init_one(struct pci_dev
*pdev
,
431 const struct pci_device_id
*ent
);
432 static void gdth_pci_remove_one(struct pci_dev
*pdev
);
433 static void gdth_remove_one(gdth_ha_str
*ha
);
435 /* Vortex only makes RAID controllers.
436 * We do not really want to specify all 550 ids here, so wildcard match.
438 static const struct pci_device_id gdthtable
[] = {
439 { PCI_VDEVICE(VORTEX
, PCI_ANY_ID
) },
440 { PCI_VDEVICE(INTEL
, PCI_DEVICE_ID_INTEL_SRC
) },
441 { PCI_VDEVICE(INTEL
, PCI_DEVICE_ID_INTEL_SRC_XSCALE
) },
442 { } /* terminate list */
444 MODULE_DEVICE_TABLE(pci
, gdthtable
);
446 static struct pci_driver gdth_pci_driver
= {
448 .id_table
= gdthtable
,
449 .probe
= gdth_pci_init_one
,
450 .remove
= gdth_pci_remove_one
,
453 static void gdth_pci_remove_one(struct pci_dev
*pdev
)
455 gdth_ha_str
*ha
= pci_get_drvdata(pdev
);
460 pci_disable_device(pdev
);
463 static int gdth_pci_init_one(struct pci_dev
*pdev
,
464 const struct pci_device_id
*ent
)
466 u16 vendor
= pdev
->vendor
;
467 u16 device
= pdev
->device
;
468 unsigned long base0
, base1
, base2
;
470 gdth_pci_str gdth_pcistr
;
471 gdth_ha_str
*ha
= NULL
;
473 TRACE(("gdth_search_dev() cnt %d vendor %x device %x\n",
474 gdth_ctr_count
, vendor
, device
));
476 memset(&gdth_pcistr
, 0, sizeof(gdth_pcistr
));
478 if (vendor
== PCI_VENDOR_ID_VORTEX
&& !gdth_search_vortex(device
))
481 rc
= pci_enable_device(pdev
);
485 if (gdth_ctr_count
>= MAXHA
)
488 /* GDT PCI controller found, resources are already in pdev */
489 gdth_pcistr
.pdev
= pdev
;
490 base0
= pci_resource_flags(pdev
, 0);
491 base1
= pci_resource_flags(pdev
, 1);
492 base2
= pci_resource_flags(pdev
, 2);
493 if (device
<= PCI_DEVICE_ID_VORTEX_GDT6000B
|| /* GDT6000/B */
494 device
>= PCI_DEVICE_ID_VORTEX_GDT6x17RP
) { /* MPR */
495 if (!(base0
& IORESOURCE_MEM
))
497 gdth_pcistr
.dpmem
= pci_resource_start(pdev
, 0);
498 } else { /* GDT6110, GDT6120, .. */
499 if (!(base0
& IORESOURCE_MEM
) ||
500 !(base2
& IORESOURCE_MEM
) ||
501 !(base1
& IORESOURCE_IO
))
503 gdth_pcistr
.dpmem
= pci_resource_start(pdev
, 2);
504 gdth_pcistr
.io
= pci_resource_start(pdev
, 1);
506 TRACE2(("Controller found at %d/%d, irq %d, dpmem 0x%lx\n",
507 gdth_pcistr
.pdev
->bus
->number
,
508 PCI_SLOT(gdth_pcistr
.pdev
->devfn
),
512 rc
= gdth_pci_probe_one(&gdth_pcistr
, &ha
);
519 static int gdth_init_pci(struct pci_dev
*pdev
, gdth_pci_str
*pcistr
,
522 register gdt6_dpram_str __iomem
*dp6_ptr
;
523 register gdt6c_dpram_str __iomem
*dp6c_ptr
;
524 register gdt6m_dpram_str __iomem
*dp6m_ptr
;
528 int i
, found
= FALSE
;
530 TRACE(("gdth_init_pci()\n"));
532 if (pdev
->vendor
== PCI_VENDOR_ID_INTEL
)
533 ha
->oem_id
= OEM_ID_INTEL
;
535 ha
->oem_id
= OEM_ID_ICP
;
536 ha
->brd_phys
= (pdev
->bus
->number
<< 8) | (pdev
->devfn
& 0xf8);
537 ha
->stype
= (u32
)pdev
->device
;
541 if (ha
->pdev
->device
<= PCI_DEVICE_ID_VORTEX_GDT6000B
) { /* GDT6000/B */
542 TRACE2(("init_pci() dpmem %lx irq %d\n",pcistr
->dpmem
,ha
->irq
));
543 ha
->brd
= ioremap(pcistr
->dpmem
, sizeof(gdt6_dpram_str
));
544 if (ha
->brd
== NULL
) {
545 printk("GDT-PCI: Initialization error (DPMEM remap error)\n");
548 /* check and reset interface area */
550 writel(DPMEM_MAGIC
, &dp6_ptr
->u
);
551 if (readl(&dp6_ptr
->u
) != DPMEM_MAGIC
) {
552 printk("GDT-PCI: Cannot access DPMEM at 0x%lx (shadowed?)\n",
555 for (i
= 0xC8000; i
< 0xE8000; i
+= 0x4000) {
557 ha
->brd
= ioremap(i
, sizeof(u16
));
558 if (ha
->brd
== NULL
) {
559 printk("GDT-PCI: Initialization error (DPMEM remap error)\n");
562 if (readw(ha
->brd
) != 0xffff) {
563 TRACE2(("init_pci_old() address 0x%x busy\n", i
));
567 pci_write_config_dword(pdev
, PCI_BASE_ADDRESS_0
, i
);
568 ha
->brd
= ioremap(i
, sizeof(gdt6_dpram_str
));
569 if (ha
->brd
== NULL
) {
570 printk("GDT-PCI: Initialization error (DPMEM remap error)\n");
574 writel(DPMEM_MAGIC
, &dp6_ptr
->u
);
575 if (readl(&dp6_ptr
->u
) == DPMEM_MAGIC
) {
576 printk("GDT-PCI: Use free address at 0x%x\n", i
);
582 printk("GDT-PCI: No free address found!\n");
587 memset_io(&dp6_ptr
->u
, 0, sizeof(dp6_ptr
->u
));
588 if (readl(&dp6_ptr
->u
) != 0) {
589 printk("GDT-PCI: Initialization error (DPMEM write error)\n");
594 /* disable board interrupts, deinit services */
595 writeb(0xff, &dp6_ptr
->io
.irqdel
);
596 writeb(0x00, &dp6_ptr
->io
.irqen
);
597 writeb(0x00, &dp6_ptr
->u
.ic
.S_Status
);
598 writeb(0x00, &dp6_ptr
->u
.ic
.Cmd_Index
);
600 writel(pcistr
->dpmem
, &dp6_ptr
->u
.ic
.S_Info
[0]);
601 writeb(0xff, &dp6_ptr
->u
.ic
.S_Cmd_Indx
);
602 writeb(0, &dp6_ptr
->io
.event
);
603 retries
= INIT_RETRIES
;
605 while (readb(&dp6_ptr
->u
.ic
.S_Status
) != 0xff) {
606 if (--retries
== 0) {
607 printk("GDT-PCI: Initialization error (DEINIT failed)\n");
613 prot_ver
= (u8
)readl(&dp6_ptr
->u
.ic
.S_Info
[0]);
614 writeb(0, &dp6_ptr
->u
.ic
.S_Status
);
615 writeb(0xff, &dp6_ptr
->io
.irqdel
);
616 if (prot_ver
!= PROTOCOL_VERSION
) {
617 printk("GDT-PCI: Illegal protocol version\n");
623 ha
->ic_all_size
= sizeof(dp6_ptr
->u
);
625 /* special command to controller BIOS */
626 writel(0x00, &dp6_ptr
->u
.ic
.S_Info
[0]);
627 writel(0x00, &dp6_ptr
->u
.ic
.S_Info
[1]);
628 writel(0x00, &dp6_ptr
->u
.ic
.S_Info
[2]);
629 writel(0x00, &dp6_ptr
->u
.ic
.S_Info
[3]);
630 writeb(0xfe, &dp6_ptr
->u
.ic
.S_Cmd_Indx
);
631 writeb(0, &dp6_ptr
->io
.event
);
632 retries
= INIT_RETRIES
;
634 while (readb(&dp6_ptr
->u
.ic
.S_Status
) != 0xfe) {
635 if (--retries
== 0) {
636 printk("GDT-PCI: Initialization error\n");
642 writeb(0, &dp6_ptr
->u
.ic
.S_Status
);
643 writeb(0xff, &dp6_ptr
->io
.irqdel
);
645 ha
->dma64_support
= 0;
647 } else if (ha
->pdev
->device
<= PCI_DEVICE_ID_VORTEX_GDT6555
) { /* GDT6110, ... */
648 ha
->plx
= (gdt6c_plx_regs
*)pcistr
->io
;
649 TRACE2(("init_pci_new() dpmem %lx irq %d\n",
650 pcistr
->dpmem
,ha
->irq
));
651 ha
->brd
= ioremap(pcistr
->dpmem
, sizeof(gdt6c_dpram_str
));
652 if (ha
->brd
== NULL
) {
653 printk("GDT-PCI: Initialization error (DPMEM remap error)\n");
657 /* check and reset interface area */
659 writel(DPMEM_MAGIC
, &dp6c_ptr
->u
);
660 if (readl(&dp6c_ptr
->u
) != DPMEM_MAGIC
) {
661 printk("GDT-PCI: Cannot access DPMEM at 0x%lx (shadowed?)\n",
664 for (i
= 0xC8000; i
< 0xE8000; i
+= 0x4000) {
666 ha
->brd
= ioremap(i
, sizeof(u16
));
667 if (ha
->brd
== NULL
) {
668 printk("GDT-PCI: Initialization error (DPMEM remap error)\n");
671 if (readw(ha
->brd
) != 0xffff) {
672 TRACE2(("init_pci_plx() address 0x%x busy\n", i
));
676 pci_write_config_dword(pdev
, PCI_BASE_ADDRESS_2
, i
);
677 ha
->brd
= ioremap(i
, sizeof(gdt6c_dpram_str
));
678 if (ha
->brd
== NULL
) {
679 printk("GDT-PCI: Initialization error (DPMEM remap error)\n");
683 writel(DPMEM_MAGIC
, &dp6c_ptr
->u
);
684 if (readl(&dp6c_ptr
->u
) == DPMEM_MAGIC
) {
685 printk("GDT-PCI: Use free address at 0x%x\n", i
);
691 printk("GDT-PCI: No free address found!\n");
696 memset_io(&dp6c_ptr
->u
, 0, sizeof(dp6c_ptr
->u
));
697 if (readl(&dp6c_ptr
->u
) != 0) {
698 printk("GDT-PCI: Initialization error (DPMEM write error)\n");
703 /* disable board interrupts, deinit services */
704 outb(0x00,PTR2USHORT(&ha
->plx
->control1
));
705 outb(0xff,PTR2USHORT(&ha
->plx
->edoor_reg
));
707 writeb(0x00, &dp6c_ptr
->u
.ic
.S_Status
);
708 writeb(0x00, &dp6c_ptr
->u
.ic
.Cmd_Index
);
710 writel(pcistr
->dpmem
, &dp6c_ptr
->u
.ic
.S_Info
[0]);
711 writeb(0xff, &dp6c_ptr
->u
.ic
.S_Cmd_Indx
);
713 outb(1,PTR2USHORT(&ha
->plx
->ldoor_reg
));
715 retries
= INIT_RETRIES
;
717 while (readb(&dp6c_ptr
->u
.ic
.S_Status
) != 0xff) {
718 if (--retries
== 0) {
719 printk("GDT-PCI: Initialization error (DEINIT failed)\n");
725 prot_ver
= (u8
)readl(&dp6c_ptr
->u
.ic
.S_Info
[0]);
726 writeb(0, &dp6c_ptr
->u
.ic
.Status
);
727 if (prot_ver
!= PROTOCOL_VERSION
) {
728 printk("GDT-PCI: Illegal protocol version\n");
733 ha
->type
= GDT_PCINEW
;
734 ha
->ic_all_size
= sizeof(dp6c_ptr
->u
);
736 /* special command to controller BIOS */
737 writel(0x00, &dp6c_ptr
->u
.ic
.S_Info
[0]);
738 writel(0x00, &dp6c_ptr
->u
.ic
.S_Info
[1]);
739 writel(0x00, &dp6c_ptr
->u
.ic
.S_Info
[2]);
740 writel(0x00, &dp6c_ptr
->u
.ic
.S_Info
[3]);
741 writeb(0xfe, &dp6c_ptr
->u
.ic
.S_Cmd_Indx
);
743 outb(1,PTR2USHORT(&ha
->plx
->ldoor_reg
));
745 retries
= INIT_RETRIES
;
747 while (readb(&dp6c_ptr
->u
.ic
.S_Status
) != 0xfe) {
748 if (--retries
== 0) {
749 printk("GDT-PCI: Initialization error\n");
755 writeb(0, &dp6c_ptr
->u
.ic
.S_Status
);
757 ha
->dma64_support
= 0;
760 TRACE2(("init_pci_mpr() dpmem %lx irq %d\n",pcistr
->dpmem
,ha
->irq
));
761 ha
->brd
= ioremap(pcistr
->dpmem
, sizeof(gdt6m_dpram_str
));
762 if (ha
->brd
== NULL
) {
763 printk("GDT-PCI: Initialization error (DPMEM remap error)\n");
767 /* manipulate config. space to enable DPMEM, start RP controller */
768 pci_read_config_word(pdev
, PCI_COMMAND
, &command
);
770 pci_write_config_word(pdev
, PCI_COMMAND
, command
);
775 /* Ensure that it is safe to access the non HW portions of DPMEM.
776 * Aditional check needed for Xscale based RAID controllers */
777 while( ((int)readb(&dp6m_ptr
->i960r
.sema0_reg
) ) & 3 )
780 /* check and reset interface area */
781 writel(DPMEM_MAGIC
, &dp6m_ptr
->u
);
782 if (readl(&dp6m_ptr
->u
) != DPMEM_MAGIC
) {
783 printk("GDT-PCI: Cannot access DPMEM at 0x%lx (shadowed?)\n",
786 for (i
= 0xC8000; i
< 0xE8000; i
+= 0x4000) {
788 ha
->brd
= ioremap(i
, sizeof(u16
));
789 if (ha
->brd
== NULL
) {
790 printk("GDT-PCI: Initialization error (DPMEM remap error)\n");
793 if (readw(ha
->brd
) != 0xffff) {
794 TRACE2(("init_pci_mpr() address 0x%x busy\n", i
));
798 pci_write_config_dword(pdev
, PCI_BASE_ADDRESS_0
, i
);
799 ha
->brd
= ioremap(i
, sizeof(gdt6m_dpram_str
));
800 if (ha
->brd
== NULL
) {
801 printk("GDT-PCI: Initialization error (DPMEM remap error)\n");
805 writel(DPMEM_MAGIC
, &dp6m_ptr
->u
);
806 if (readl(&dp6m_ptr
->u
) == DPMEM_MAGIC
) {
807 printk("GDT-PCI: Use free address at 0x%x\n", i
);
813 printk("GDT-PCI: No free address found!\n");
818 memset_io(&dp6m_ptr
->u
, 0, sizeof(dp6m_ptr
->u
));
820 /* disable board interrupts, deinit services */
821 writeb(readb(&dp6m_ptr
->i960r
.edoor_en_reg
) | 4,
822 &dp6m_ptr
->i960r
.edoor_en_reg
);
823 writeb(0xff, &dp6m_ptr
->i960r
.edoor_reg
);
824 writeb(0x00, &dp6m_ptr
->u
.ic
.S_Status
);
825 writeb(0x00, &dp6m_ptr
->u
.ic
.Cmd_Index
);
827 writel(pcistr
->dpmem
, &dp6m_ptr
->u
.ic
.S_Info
[0]);
828 writeb(0xff, &dp6m_ptr
->u
.ic
.S_Cmd_Indx
);
829 writeb(1, &dp6m_ptr
->i960r
.ldoor_reg
);
830 retries
= INIT_RETRIES
;
832 while (readb(&dp6m_ptr
->u
.ic
.S_Status
) != 0xff) {
833 if (--retries
== 0) {
834 printk("GDT-PCI: Initialization error (DEINIT failed)\n");
840 prot_ver
= (u8
)readl(&dp6m_ptr
->u
.ic
.S_Info
[0]);
841 writeb(0, &dp6m_ptr
->u
.ic
.S_Status
);
842 if (prot_ver
!= PROTOCOL_VERSION
) {
843 printk("GDT-PCI: Illegal protocol version\n");
848 ha
->type
= GDT_PCIMPR
;
849 ha
->ic_all_size
= sizeof(dp6m_ptr
->u
);
851 /* special command to controller BIOS */
852 writel(0x00, &dp6m_ptr
->u
.ic
.S_Info
[0]);
853 writel(0x00, &dp6m_ptr
->u
.ic
.S_Info
[1]);
854 writel(0x00, &dp6m_ptr
->u
.ic
.S_Info
[2]);
855 writel(0x00, &dp6m_ptr
->u
.ic
.S_Info
[3]);
856 writeb(0xfe, &dp6m_ptr
->u
.ic
.S_Cmd_Indx
);
857 writeb(1, &dp6m_ptr
->i960r
.ldoor_reg
);
858 retries
= INIT_RETRIES
;
860 while (readb(&dp6m_ptr
->u
.ic
.S_Status
) != 0xfe) {
861 if (--retries
== 0) {
862 printk("GDT-PCI: Initialization error\n");
868 writeb(0, &dp6m_ptr
->u
.ic
.S_Status
);
870 /* read FW version to detect 64-bit DMA support */
871 writeb(0xfd, &dp6m_ptr
->u
.ic
.S_Cmd_Indx
);
872 writeb(1, &dp6m_ptr
->i960r
.ldoor_reg
);
873 retries
= INIT_RETRIES
;
875 while (readb(&dp6m_ptr
->u
.ic
.S_Status
) != 0xfd) {
876 if (--retries
== 0) {
877 printk("GDT-PCI: Initialization error (DEINIT failed)\n");
883 prot_ver
= (u8
)(readl(&dp6m_ptr
->u
.ic
.S_Info
[0]) >> 16);
884 writeb(0, &dp6m_ptr
->u
.ic
.S_Status
);
885 if (prot_ver
< 0x2b) /* FW < x.43: no 64-bit DMA support */
886 ha
->dma64_support
= 0;
888 ha
->dma64_support
= 1;
894 /* controller protocol functions */
896 static void gdth_enable_int(gdth_ha_str
*ha
)
899 gdt6_dpram_str __iomem
*dp6_ptr
;
900 gdt6m_dpram_str __iomem
*dp6m_ptr
;
902 TRACE(("gdth_enable_int() hanum %d\n",ha
->hanum
));
903 spin_lock_irqsave(&ha
->smp_lock
, flags
);
905 if (ha
->type
== GDT_PCI
) {
907 writeb(1, &dp6_ptr
->io
.irqdel
);
908 writeb(0, &dp6_ptr
->u
.ic
.Cmd_Index
);
909 writeb(1, &dp6_ptr
->io
.irqen
);
910 } else if (ha
->type
== GDT_PCINEW
) {
911 outb(0xff, PTR2USHORT(&ha
->plx
->edoor_reg
));
912 outb(0x03, PTR2USHORT(&ha
->plx
->control1
));
913 } else if (ha
->type
== GDT_PCIMPR
) {
915 writeb(0xff, &dp6m_ptr
->i960r
.edoor_reg
);
916 writeb(readb(&dp6m_ptr
->i960r
.edoor_en_reg
) & ~4,
917 &dp6m_ptr
->i960r
.edoor_en_reg
);
919 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
922 /* return IStatus if interrupt was from this card else 0 */
923 static u8
gdth_get_status(gdth_ha_str
*ha
)
927 TRACE(("gdth_get_status() irq %d ctr_count %d\n", ha
->irq
, gdth_ctr_count
));
929 if (ha
->type
== GDT_PCI
)
931 readb(&((gdt6_dpram_str __iomem
*)ha
->brd
)->u
.ic
.Cmd_Index
);
932 else if (ha
->type
== GDT_PCINEW
)
933 IStatus
= inb(PTR2USHORT(&ha
->plx
->edoor_reg
));
934 else if (ha
->type
== GDT_PCIMPR
)
936 readb(&((gdt6m_dpram_str __iomem
*)ha
->brd
)->i960r
.edoor_reg
);
941 static int gdth_test_busy(gdth_ha_str
*ha
)
943 register int gdtsema0
= 0;
945 TRACE(("gdth_test_busy() hanum %d\n", ha
->hanum
));
947 if (ha
->type
== GDT_PCI
)
948 gdtsema0
= (int)readb(&((gdt6_dpram_str __iomem
*)ha
->brd
)->u
.ic
.Sema0
);
949 else if (ha
->type
== GDT_PCINEW
)
950 gdtsema0
= (int)inb(PTR2USHORT(&ha
->plx
->sema0_reg
));
951 else if (ha
->type
== GDT_PCIMPR
)
953 (int)readb(&((gdt6m_dpram_str __iomem
*)ha
->brd
)->i960r
.sema0_reg
);
955 return (gdtsema0
& 1);
959 static int gdth_get_cmd_index(gdth_ha_str
*ha
)
963 TRACE(("gdth_get_cmd_index() hanum %d\n", ha
->hanum
));
965 for (i
=0; i
<GDTH_MAXCMDS
; ++i
) {
966 if (ha
->cmd_tab
[i
].cmnd
== UNUSED_CMND
) {
967 ha
->cmd_tab
[i
].cmnd
= ha
->pccb
->RequestBuffer
;
968 ha
->cmd_tab
[i
].service
= ha
->pccb
->Service
;
969 ha
->pccb
->CommandIndex
= (u32
)i
+2;
977 static void gdth_set_sema0(gdth_ha_str
*ha
)
979 TRACE(("gdth_set_sema0() hanum %d\n", ha
->hanum
));
981 if (ha
->type
== GDT_PCI
) {
982 writeb(1, &((gdt6_dpram_str __iomem
*)ha
->brd
)->u
.ic
.Sema0
);
983 } else if (ha
->type
== GDT_PCINEW
) {
984 outb(1, PTR2USHORT(&ha
->plx
->sema0_reg
));
985 } else if (ha
->type
== GDT_PCIMPR
) {
986 writeb(1, &((gdt6m_dpram_str __iomem
*)ha
->brd
)->i960r
.sema0_reg
);
991 static void gdth_copy_command(gdth_ha_str
*ha
)
993 register gdth_cmd_str
*cmd_ptr
;
994 register gdt6m_dpram_str __iomem
*dp6m_ptr
;
995 register gdt6c_dpram_str __iomem
*dp6c_ptr
;
996 gdt6_dpram_str __iomem
*dp6_ptr
;
997 u16 cp_count
,dp_offset
,cmd_no
;
999 TRACE(("gdth_copy_command() hanum %d\n", ha
->hanum
));
1001 cp_count
= ha
->cmd_len
;
1002 dp_offset
= ha
->cmd_offs_dpmem
;
1003 cmd_no
= ha
->cmd_cnt
;
1008 /* set cpcount dword aligned */
1010 cp_count
+= (4 - (cp_count
& 3));
1012 ha
->cmd_offs_dpmem
+= cp_count
;
1014 /* set offset and service, copy command to DPMEM */
1015 if (ha
->type
== GDT_PCI
) {
1017 writew(dp_offset
+ DPMEM_COMMAND_OFFSET
,
1018 &dp6_ptr
->u
.ic
.comm_queue
[cmd_no
].offset
);
1019 writew((u16
)cmd_ptr
->Service
,
1020 &dp6_ptr
->u
.ic
.comm_queue
[cmd_no
].serv_id
);
1021 memcpy_toio(&dp6_ptr
->u
.ic
.gdt_dpr_cmd
[dp_offset
],cmd_ptr
,cp_count
);
1022 } else if (ha
->type
== GDT_PCINEW
) {
1024 writew(dp_offset
+ DPMEM_COMMAND_OFFSET
,
1025 &dp6c_ptr
->u
.ic
.comm_queue
[cmd_no
].offset
);
1026 writew((u16
)cmd_ptr
->Service
,
1027 &dp6c_ptr
->u
.ic
.comm_queue
[cmd_no
].serv_id
);
1028 memcpy_toio(&dp6c_ptr
->u
.ic
.gdt_dpr_cmd
[dp_offset
],cmd_ptr
,cp_count
);
1029 } else if (ha
->type
== GDT_PCIMPR
) {
1031 writew(dp_offset
+ DPMEM_COMMAND_OFFSET
,
1032 &dp6m_ptr
->u
.ic
.comm_queue
[cmd_no
].offset
);
1033 writew((u16
)cmd_ptr
->Service
,
1034 &dp6m_ptr
->u
.ic
.comm_queue
[cmd_no
].serv_id
);
1035 memcpy_toio(&dp6m_ptr
->u
.ic
.gdt_dpr_cmd
[dp_offset
],cmd_ptr
,cp_count
);
1040 static void gdth_release_event(gdth_ha_str
*ha
)
1042 TRACE(("gdth_release_event() hanum %d\n", ha
->hanum
));
1044 #ifdef GDTH_STATISTICS
1047 for (i
=0,j
=0; j
<GDTH_MAXCMDS
; ++j
) {
1048 if (ha
->cmd_tab
[j
].cmnd
!= UNUSED_CMND
)
1051 if (max_index
< i
) {
1053 TRACE3(("GDT: max_index = %d\n",(u16
)i
));
1058 if (ha
->pccb
->OpCode
== GDT_INIT
)
1059 ha
->pccb
->Service
|= 0x80;
1061 if (ha
->type
== GDT_PCI
) {
1062 writeb(0, &((gdt6_dpram_str __iomem
*)ha
->brd
)->io
.event
);
1063 } else if (ha
->type
== GDT_PCINEW
) {
1064 outb(1, PTR2USHORT(&ha
->plx
->ldoor_reg
));
1065 } else if (ha
->type
== GDT_PCIMPR
) {
1066 writeb(1, &((gdt6m_dpram_str __iomem
*)ha
->brd
)->i960r
.ldoor_reg
);
1070 static int gdth_wait(gdth_ha_str
*ha
, int index
, u32 time
)
1072 int answer_found
= FALSE
;
1075 TRACE(("gdth_wait() hanum %d index %d time %d\n", ha
->hanum
, index
, time
));
1078 return 1; /* no wait required */
1081 __gdth_interrupt(ha
, true, &wait_index
);
1082 if (wait_index
== index
) {
1083 answer_found
= TRUE
;
1089 while (gdth_test_busy(ha
))
1092 return (answer_found
);
1096 static int gdth_internal_cmd(gdth_ha_str
*ha
, u8 service
, u16 opcode
,
1097 u32 p1
, u64 p2
, u64 p3
)
1099 register gdth_cmd_str
*cmd_ptr
;
1102 TRACE2(("gdth_internal_cmd() service %d opcode %d\n",service
,opcode
));
1105 memset((char*)cmd_ptr
,0,sizeof(gdth_cmd_str
));
1108 for (retries
= INIT_RETRIES
;;) {
1109 cmd_ptr
->Service
= service
;
1110 cmd_ptr
->RequestBuffer
= INTERNAL_CMND
;
1111 if (!(index
=gdth_get_cmd_index(ha
))) {
1112 TRACE(("GDT: No free command index found\n"));
1116 cmd_ptr
->OpCode
= opcode
;
1117 cmd_ptr
->BoardNode
= LOCALBOARD
;
1118 if (service
== CACHESERVICE
) {
1119 if (opcode
== GDT_IOCTL
) {
1120 cmd_ptr
->u
.ioctl
.subfunc
= p1
;
1121 cmd_ptr
->u
.ioctl
.channel
= (u32
)p2
;
1122 cmd_ptr
->u
.ioctl
.param_size
= (u16
)p3
;
1123 cmd_ptr
->u
.ioctl
.p_param
= ha
->scratch_phys
;
1125 if (ha
->cache_feat
& GDT_64BIT
) {
1126 cmd_ptr
->u
.cache64
.DeviceNo
= (u16
)p1
;
1127 cmd_ptr
->u
.cache64
.BlockNo
= p2
;
1129 cmd_ptr
->u
.cache
.DeviceNo
= (u16
)p1
;
1130 cmd_ptr
->u
.cache
.BlockNo
= (u32
)p2
;
1133 } else if (service
== SCSIRAWSERVICE
) {
1134 if (ha
->raw_feat
& GDT_64BIT
) {
1135 cmd_ptr
->u
.raw64
.direction
= p1
;
1136 cmd_ptr
->u
.raw64
.bus
= (u8
)p2
;
1137 cmd_ptr
->u
.raw64
.target
= (u8
)p3
;
1138 cmd_ptr
->u
.raw64
.lun
= (u8
)(p3
>> 8);
1140 cmd_ptr
->u
.raw
.direction
= p1
;
1141 cmd_ptr
->u
.raw
.bus
= (u8
)p2
;
1142 cmd_ptr
->u
.raw
.target
= (u8
)p3
;
1143 cmd_ptr
->u
.raw
.lun
= (u8
)(p3
>> 8);
1145 } else if (service
== SCREENSERVICE
) {
1146 if (opcode
== GDT_REALTIME
) {
1147 *(u32
*)&cmd_ptr
->u
.screen
.su
.data
[0] = p1
;
1148 *(u32
*)&cmd_ptr
->u
.screen
.su
.data
[4] = (u32
)p2
;
1149 *(u32
*)&cmd_ptr
->u
.screen
.su
.data
[8] = (u32
)p3
;
1152 ha
->cmd_len
= sizeof(gdth_cmd_str
);
1153 ha
->cmd_offs_dpmem
= 0;
1155 gdth_copy_command(ha
);
1156 gdth_release_event(ha
);
1158 if (!gdth_wait(ha
, index
, INIT_TIMEOUT
)) {
1159 printk("GDT: Initialization error (timeout service %d)\n",service
);
1162 if (ha
->status
!= S_BSY
|| --retries
== 0)
1167 return (ha
->status
!= S_OK
? 0:1);
1171 /* search for devices */
1173 static int gdth_search_drives(gdth_ha_str
*ha
)
1177 u32 bus_no
, drv_cnt
, drv_no
, j
;
1178 gdth_getch_str
*chn
;
1179 gdth_drlist_str
*drl
;
1180 gdth_iochan_str
*ioc
;
1181 gdth_raw_iochan_str
*iocr
;
1182 gdth_arcdl_str
*alst
;
1183 gdth_alist_str
*alst2
;
1184 gdth_oem_str_ioctl
*oemstr
;
1186 TRACE(("gdth_search_drives() hanum %d\n", ha
->hanum
));
1189 /* initialize controller services, at first: screen service */
1190 ha
->screen_feat
= 0;
1192 ok
= gdth_internal_cmd(ha
, SCREENSERVICE
, GDT_X_INIT_SCR
, 0, 0, 0);
1194 ha
->screen_feat
= GDT_64BIT
;
1196 if (force_dma32
|| (!ok
&& ha
->status
== (u16
)S_NOFUNC
))
1197 ok
= gdth_internal_cmd(ha
, SCREENSERVICE
, GDT_INIT
, 0, 0, 0);
1199 printk("GDT-HA %d: Initialization error screen service (code %d)\n",
1200 ha
->hanum
, ha
->status
);
1203 TRACE2(("gdth_search_drives(): SCREENSERVICE initialized\n"));
1205 /* unfreeze all IOs */
1206 gdth_internal_cmd(ha
, CACHESERVICE
, GDT_UNFREEZE_IO
, 0, 0, 0);
1208 /* initialize cache service */
1211 ok
= gdth_internal_cmd(ha
, CACHESERVICE
, GDT_X_INIT_HOST
, LINUX_OS
,
1214 ha
->cache_feat
= GDT_64BIT
;
1216 if (force_dma32
|| (!ok
&& ha
->status
== (u16
)S_NOFUNC
))
1217 ok
= gdth_internal_cmd(ha
, CACHESERVICE
, GDT_INIT
, LINUX_OS
, 0, 0);
1219 printk("GDT-HA %d: Initialization error cache service (code %d)\n",
1220 ha
->hanum
, ha
->status
);
1223 TRACE2(("gdth_search_drives(): CACHESERVICE initialized\n"));
1224 cdev_cnt
= (u16
)ha
->info
;
1225 ha
->fw_vers
= ha
->service
;
1227 /* detect number of buses - try new IOCTL */
1228 iocr
= (gdth_raw_iochan_str
*)ha
->pscratch
;
1229 iocr
->hdr
.version
= 0xffffffff;
1230 iocr
->hdr
.list_entries
= MAXBUS
;
1231 iocr
->hdr
.first_chan
= 0;
1232 iocr
->hdr
.last_chan
= MAXBUS
-1;
1233 iocr
->hdr
.list_offset
= GDTOFFSOF(gdth_raw_iochan_str
, list
[0]);
1234 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_IOCTL
, IOCHAN_RAW_DESC
,
1235 INVALID_CHANNEL
,sizeof(gdth_raw_iochan_str
))) {
1236 TRACE2(("IOCHAN_RAW_DESC supported!\n"));
1237 ha
->bus_cnt
= iocr
->hdr
.chan_count
;
1238 for (bus_no
= 0; bus_no
< ha
->bus_cnt
; ++bus_no
) {
1239 if (iocr
->list
[bus_no
].proc_id
< MAXID
)
1240 ha
->bus_id
[bus_no
] = iocr
->list
[bus_no
].proc_id
;
1242 ha
->bus_id
[bus_no
] = 0xff;
1246 chn
= (gdth_getch_str
*)ha
->pscratch
;
1247 for (bus_no
= 0; bus_no
< MAXBUS
; ++bus_no
) {
1248 chn
->channel_no
= bus_no
;
1249 if (!gdth_internal_cmd(ha
, CACHESERVICE
, GDT_IOCTL
,
1250 SCSI_CHAN_CNT
| L_CTRL_PATTERN
,
1251 IO_CHANNEL
| INVALID_CHANNEL
,
1252 sizeof(gdth_getch_str
))) {
1254 printk("GDT-HA %d: Error detecting channel count (0x%x)\n",
1255 ha
->hanum
, ha
->status
);
1260 if (chn
->siop_id
< MAXID
)
1261 ha
->bus_id
[bus_no
] = chn
->siop_id
;
1263 ha
->bus_id
[bus_no
] = 0xff;
1265 ha
->bus_cnt
= (u8
)bus_no
;
1267 TRACE2(("gdth_search_drives() %d channels\n",ha
->bus_cnt
));
1269 /* read cache configuration */
1270 if (!gdth_internal_cmd(ha
, CACHESERVICE
, GDT_IOCTL
, CACHE_INFO
,
1271 INVALID_CHANNEL
,sizeof(gdth_cinfo_str
))) {
1272 printk("GDT-HA %d: Initialization error cache service (code %d)\n",
1273 ha
->hanum
, ha
->status
);
1276 ha
->cpar
= ((gdth_cinfo_str
*)ha
->pscratch
)->cpar
;
1277 TRACE2(("gdth_search_drives() cinfo: vs %x sta %d str %d dw %d b %d\n",
1278 ha
->cpar
.version
,ha
->cpar
.state
,ha
->cpar
.strategy
,
1279 ha
->cpar
.write_back
,ha
->cpar
.block_size
));
1281 /* read board info and features */
1282 ha
->more_proc
= FALSE
;
1283 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_IOCTL
, BOARD_INFO
,
1284 INVALID_CHANNEL
,sizeof(gdth_binfo_str
))) {
1285 memcpy(&ha
->binfo
, (gdth_binfo_str
*)ha
->pscratch
,
1286 sizeof(gdth_binfo_str
));
1287 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_IOCTL
, BOARD_FEATURES
,
1288 INVALID_CHANNEL
,sizeof(gdth_bfeat_str
))) {
1289 TRACE2(("BOARD_INFO/BOARD_FEATURES supported\n"));
1290 ha
->bfeat
= *(gdth_bfeat_str
*)ha
->pscratch
;
1291 ha
->more_proc
= TRUE
;
1294 TRACE2(("BOARD_INFO requires firmware >= 1.10/2.08\n"));
1295 strcpy(ha
->binfo
.type_string
, gdth_ctr_name(ha
));
1297 TRACE2(("Controller name: %s\n",ha
->binfo
.type_string
));
1299 /* read more informations */
1300 if (ha
->more_proc
) {
1301 /* physical drives, channel addresses */
1302 ioc
= (gdth_iochan_str
*)ha
->pscratch
;
1303 ioc
->hdr
.version
= 0xffffffff;
1304 ioc
->hdr
.list_entries
= MAXBUS
;
1305 ioc
->hdr
.first_chan
= 0;
1306 ioc
->hdr
.last_chan
= MAXBUS
-1;
1307 ioc
->hdr
.list_offset
= GDTOFFSOF(gdth_iochan_str
, list
[0]);
1308 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_IOCTL
, IOCHAN_DESC
,
1309 INVALID_CHANNEL
,sizeof(gdth_iochan_str
))) {
1310 for (bus_no
= 0; bus_no
< ha
->bus_cnt
; ++bus_no
) {
1311 ha
->raw
[bus_no
].address
= ioc
->list
[bus_no
].address
;
1312 ha
->raw
[bus_no
].local_no
= ioc
->list
[bus_no
].local_no
;
1315 for (bus_no
= 0; bus_no
< ha
->bus_cnt
; ++bus_no
) {
1316 ha
->raw
[bus_no
].address
= IO_CHANNEL
;
1317 ha
->raw
[bus_no
].local_no
= bus_no
;
1320 for (bus_no
= 0; bus_no
< ha
->bus_cnt
; ++bus_no
) {
1321 chn
= (gdth_getch_str
*)ha
->pscratch
;
1322 chn
->channel_no
= ha
->raw
[bus_no
].local_no
;
1323 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_IOCTL
,
1324 SCSI_CHAN_CNT
| L_CTRL_PATTERN
,
1325 ha
->raw
[bus_no
].address
| INVALID_CHANNEL
,
1326 sizeof(gdth_getch_str
))) {
1327 ha
->raw
[bus_no
].pdev_cnt
= chn
->drive_cnt
;
1328 TRACE2(("Channel %d: %d phys. drives\n",
1329 bus_no
,chn
->drive_cnt
));
1331 if (ha
->raw
[bus_no
].pdev_cnt
> 0) {
1332 drl
= (gdth_drlist_str
*)ha
->pscratch
;
1333 drl
->sc_no
= ha
->raw
[bus_no
].local_no
;
1334 drl
->sc_cnt
= ha
->raw
[bus_no
].pdev_cnt
;
1335 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_IOCTL
,
1336 SCSI_DR_LIST
| L_CTRL_PATTERN
,
1337 ha
->raw
[bus_no
].address
| INVALID_CHANNEL
,
1338 sizeof(gdth_drlist_str
))) {
1339 for (j
= 0; j
< ha
->raw
[bus_no
].pdev_cnt
; ++j
)
1340 ha
->raw
[bus_no
].id_list
[j
] = drl
->sc_list
[j
];
1342 ha
->raw
[bus_no
].pdev_cnt
= 0;
1347 /* logical drives */
1348 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_IOCTL
, CACHE_DRV_CNT
,
1349 INVALID_CHANNEL
,sizeof(u32
))) {
1350 drv_cnt
= *(u32
*)ha
->pscratch
;
1351 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_IOCTL
, CACHE_DRV_LIST
,
1352 INVALID_CHANNEL
,drv_cnt
* sizeof(u32
))) {
1353 for (j
= 0; j
< drv_cnt
; ++j
) {
1354 drv_no
= ((u32
*)ha
->pscratch
)[j
];
1355 if (drv_no
< MAX_LDRIVES
) {
1356 ha
->hdr
[drv_no
].is_logdrv
= TRUE
;
1357 TRACE2(("Drive %d is log. drive\n",drv_no
));
1361 alst
= (gdth_arcdl_str
*)ha
->pscratch
;
1362 alst
->entries_avail
= MAX_LDRIVES
;
1363 alst
->first_entry
= 0;
1364 alst
->list_offset
= GDTOFFSOF(gdth_arcdl_str
, list
[0]);
1365 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_IOCTL
,
1366 ARRAY_DRV_LIST2
| LA_CTRL_PATTERN
,
1367 INVALID_CHANNEL
, sizeof(gdth_arcdl_str
) +
1368 (alst
->entries_avail
-1) * sizeof(gdth_alist_str
))) {
1369 for (j
= 0; j
< alst
->entries_init
; ++j
) {
1370 ha
->hdr
[j
].is_arraydrv
= alst
->list
[j
].is_arrayd
;
1371 ha
->hdr
[j
].is_master
= alst
->list
[j
].is_master
;
1372 ha
->hdr
[j
].is_parity
= alst
->list
[j
].is_parity
;
1373 ha
->hdr
[j
].is_hotfix
= alst
->list
[j
].is_hotfix
;
1374 ha
->hdr
[j
].master_no
= alst
->list
[j
].cd_handle
;
1376 } else if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_IOCTL
,
1377 ARRAY_DRV_LIST
| LA_CTRL_PATTERN
,
1378 0, 35 * sizeof(gdth_alist_str
))) {
1379 for (j
= 0; j
< 35; ++j
) {
1380 alst2
= &((gdth_alist_str
*)ha
->pscratch
)[j
];
1381 ha
->hdr
[j
].is_arraydrv
= alst2
->is_arrayd
;
1382 ha
->hdr
[j
].is_master
= alst2
->is_master
;
1383 ha
->hdr
[j
].is_parity
= alst2
->is_parity
;
1384 ha
->hdr
[j
].is_hotfix
= alst2
->is_hotfix
;
1385 ha
->hdr
[j
].master_no
= alst2
->cd_handle
;
1391 /* initialize raw service */
1394 ok
= gdth_internal_cmd(ha
, SCSIRAWSERVICE
, GDT_X_INIT_RAW
, 0, 0, 0);
1396 ha
->raw_feat
= GDT_64BIT
;
1398 if (force_dma32
|| (!ok
&& ha
->status
== (u16
)S_NOFUNC
))
1399 ok
= gdth_internal_cmd(ha
, SCSIRAWSERVICE
, GDT_INIT
, 0, 0, 0);
1401 printk("GDT-HA %d: Initialization error raw service (code %d)\n",
1402 ha
->hanum
, ha
->status
);
1405 TRACE2(("gdth_search_drives(): RAWSERVICE initialized\n"));
1407 /* set/get features raw service (scatter/gather) */
1408 if (gdth_internal_cmd(ha
, SCSIRAWSERVICE
, GDT_SET_FEAT
, SCATTER_GATHER
,
1410 TRACE2(("gdth_search_drives(): set features RAWSERVICE OK\n"));
1411 if (gdth_internal_cmd(ha
, SCSIRAWSERVICE
, GDT_GET_FEAT
, 0, 0, 0)) {
1412 TRACE2(("gdth_search_dr(): get feat RAWSERVICE %d\n",
1414 ha
->raw_feat
|= (u16
)ha
->info
;
1418 /* set/get features cache service (equal to raw service) */
1419 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_SET_FEAT
, 0,
1420 SCATTER_GATHER
,0)) {
1421 TRACE2(("gdth_search_drives(): set features CACHESERVICE OK\n"));
1422 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_GET_FEAT
, 0, 0, 0)) {
1423 TRACE2(("gdth_search_dr(): get feat CACHESERV. %d\n",
1425 ha
->cache_feat
|= (u16
)ha
->info
;
1429 /* reserve drives for raw service */
1430 if (reserve_mode
!= 0) {
1431 gdth_internal_cmd(ha
, SCSIRAWSERVICE
, GDT_RESERVE_ALL
,
1432 reserve_mode
== 1 ? 1 : 3, 0, 0);
1433 TRACE2(("gdth_search_drives(): RESERVE_ALL code %d\n",
1436 for (i
= 0; i
< MAX_RES_ARGS
; i
+= 4) {
1437 if (reserve_list
[i
] == ha
->hanum
&& reserve_list
[i
+1] < ha
->bus_cnt
&&
1438 reserve_list
[i
+2] < ha
->tid_cnt
&& reserve_list
[i
+3] < MAXLUN
) {
1439 TRACE2(("gdth_search_drives(): reserve ha %d bus %d id %d lun %d\n",
1440 reserve_list
[i
], reserve_list
[i
+1],
1441 reserve_list
[i
+2], reserve_list
[i
+3]));
1442 if (!gdth_internal_cmd(ha
, SCSIRAWSERVICE
, GDT_RESERVE
, 0,
1443 reserve_list
[i
+1], reserve_list
[i
+2] |
1444 (reserve_list
[i
+3] << 8))) {
1445 printk("GDT-HA %d: Error raw service (RESERVE, code %d)\n",
1446 ha
->hanum
, ha
->status
);
1451 /* Determine OEM string using IOCTL */
1452 oemstr
= (gdth_oem_str_ioctl
*)ha
->pscratch
;
1453 oemstr
->params
.ctl_version
= 0x01;
1454 oemstr
->params
.buffer_size
= sizeof(oemstr
->text
);
1455 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_IOCTL
,
1456 CACHE_READ_OEM_STRING_RECORD
,INVALID_CHANNEL
,
1457 sizeof(gdth_oem_str_ioctl
))) {
1458 TRACE2(("gdth_search_drives(): CACHE_READ_OEM_STRING_RECORD OK\n"));
1459 printk("GDT-HA %d: Vendor: %s Name: %s\n",
1460 ha
->hanum
, oemstr
->text
.oem_company_name
, ha
->binfo
.type_string
);
1461 /* Save the Host Drive inquiry data */
1462 strlcpy(ha
->oem_name
,oemstr
->text
.scsi_host_drive_inquiry_vendor_id
,
1463 sizeof(ha
->oem_name
));
1465 /* Old method, based on PCI ID */
1466 TRACE2(("gdth_search_drives(): CACHE_READ_OEM_STRING_RECORD failed\n"));
1467 printk("GDT-HA %d: Name: %s\n",
1468 ha
->hanum
, ha
->binfo
.type_string
);
1469 if (ha
->oem_id
== OEM_ID_INTEL
)
1470 strlcpy(ha
->oem_name
,"Intel ", sizeof(ha
->oem_name
));
1472 strlcpy(ha
->oem_name
,"ICP ", sizeof(ha
->oem_name
));
1475 /* scanning for host drives */
1476 for (i
= 0; i
< cdev_cnt
; ++i
)
1477 gdth_analyse_hdrive(ha
, i
);
1479 TRACE(("gdth_search_drives() OK\n"));
1483 static int gdth_analyse_hdrive(gdth_ha_str
*ha
, u16 hdrive
)
1486 int drv_hds
, drv_secs
;
1488 TRACE(("gdth_analyse_hdrive() hanum %d drive %d\n", ha
->hanum
, hdrive
));
1489 if (hdrive
>= MAX_HDRIVES
)
1492 if (!gdth_internal_cmd(ha
, CACHESERVICE
, GDT_INFO
, hdrive
, 0, 0))
1494 ha
->hdr
[hdrive
].present
= TRUE
;
1495 ha
->hdr
[hdrive
].size
= ha
->info
;
1497 /* evaluate mapping (sectors per head, heads per cylinder) */
1498 ha
->hdr
[hdrive
].size
&= ~SECS32
;
1499 if (ha
->info2
== 0) {
1500 gdth_eval_mapping(ha
->hdr
[hdrive
].size
,&drv_cyls
,&drv_hds
,&drv_secs
);
1502 drv_hds
= ha
->info2
& 0xff;
1503 drv_secs
= (ha
->info2
>> 8) & 0xff;
1504 drv_cyls
= (u32
)ha
->hdr
[hdrive
].size
/ drv_hds
/ drv_secs
;
1506 ha
->hdr
[hdrive
].heads
= (u8
)drv_hds
;
1507 ha
->hdr
[hdrive
].secs
= (u8
)drv_secs
;
1509 ha
->hdr
[hdrive
].size
= drv_cyls
* drv_hds
* drv_secs
;
1511 if (ha
->cache_feat
& GDT_64BIT
) {
1512 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_X_INFO
, hdrive
, 0, 0)
1513 && ha
->info2
!= 0) {
1514 ha
->hdr
[hdrive
].size
= ((u64
)ha
->info2
<< 32) | ha
->info
;
1517 TRACE2(("gdth_search_dr() cdr. %d size %d hds %d scs %d\n",
1518 hdrive
,ha
->hdr
[hdrive
].size
,drv_hds
,drv_secs
));
1520 /* get informations about device */
1521 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_DEVTYPE
, hdrive
, 0, 0)) {
1522 TRACE2(("gdth_search_dr() cache drive %d devtype %d\n",
1524 ha
->hdr
[hdrive
].devtype
= (u16
)ha
->info
;
1528 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_CLUST_INFO
, hdrive
, 0, 0)) {
1529 TRACE2(("gdth_search_dr() cache drive %d cluster info %d\n",
1532 ha
->hdr
[hdrive
].cluster_type
= (u8
)ha
->info
;
1535 /* R/W attributes */
1536 if (gdth_internal_cmd(ha
, CACHESERVICE
, GDT_RW_ATTRIBS
, hdrive
, 0, 0)) {
1537 TRACE2(("gdth_search_dr() cache drive %d r/w attrib. %d\n",
1539 ha
->hdr
[hdrive
].rw_attribs
= (u8
)ha
->info
;
1546 /* command queueing/sending functions */
1548 static void gdth_putq(gdth_ha_str
*ha
, struct scsi_cmnd
*scp
, u8 priority
)
1550 struct gdth_cmndinfo
*cmndinfo
= gdth_cmnd_priv(scp
);
1551 register struct scsi_cmnd
*pscp
;
1552 register struct scsi_cmnd
*nscp
;
1553 unsigned long flags
;
1555 TRACE(("gdth_putq() priority %d\n",priority
));
1556 spin_lock_irqsave(&ha
->smp_lock
, flags
);
1558 if (!cmndinfo
->internal_command
)
1559 cmndinfo
->priority
= priority
;
1561 if (ha
->req_first
==NULL
) {
1562 ha
->req_first
= scp
; /* queue was empty */
1563 scp
->SCp
.ptr
= NULL
;
1564 } else { /* queue not empty */
1565 pscp
= ha
->req_first
;
1566 nscp
= (struct scsi_cmnd
*)pscp
->SCp
.ptr
;
1567 /* priority: 0-highest,..,0xff-lowest */
1568 while (nscp
&& gdth_cmnd_priv(nscp
)->priority
<= priority
) {
1570 nscp
= (struct scsi_cmnd
*)pscp
->SCp
.ptr
;
1572 pscp
->SCp
.ptr
= (char *)scp
;
1573 scp
->SCp
.ptr
= (char *)nscp
;
1575 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
1577 #ifdef GDTH_STATISTICS
1579 for (nscp
=ha
->req_first
; nscp
; nscp
=(struct scsi_cmnd
*)nscp
->SCp
.ptr
)
1581 if (max_rq
< flags
) {
1583 TRACE3(("GDT: max_rq = %d\n",(u16
)max_rq
));
1588 static void gdth_next(gdth_ha_str
*ha
)
1590 register struct scsi_cmnd
*pscp
;
1591 register struct scsi_cmnd
*nscp
;
1592 u8 b
, t
, l
, firsttime
;
1593 u8 this_cmd
, next_cmd
;
1594 unsigned long flags
= 0;
1597 TRACE(("gdth_next() hanum %d\n", ha
->hanum
));
1599 spin_lock_irqsave(&ha
->smp_lock
, flags
);
1601 ha
->cmd_cnt
= ha
->cmd_offs_dpmem
= 0;
1602 this_cmd
= firsttime
= TRUE
;
1603 next_cmd
= gdth_polling
? FALSE
:TRUE
;
1606 for (nscp
= pscp
= ha
->req_first
; nscp
; nscp
= (struct scsi_cmnd
*)nscp
->SCp
.ptr
) {
1607 struct gdth_cmndinfo
*nscp_cmndinfo
= gdth_cmnd_priv(nscp
);
1608 if (nscp
!= pscp
&& nscp
!= (struct scsi_cmnd
*)pscp
->SCp
.ptr
)
1609 pscp
= (struct scsi_cmnd
*)pscp
->SCp
.ptr
;
1610 if (!nscp_cmndinfo
->internal_command
) {
1611 b
= nscp
->device
->channel
;
1612 t
= nscp
->device
->id
;
1613 l
= nscp
->device
->lun
;
1614 if (nscp_cmndinfo
->priority
>= DEFAULT_PRI
) {
1615 if ((b
!= ha
->virt_bus
&& ha
->raw
[BUS_L2P(ha
,b
)].lock
) ||
1616 (b
== ha
->virt_bus
&& t
< MAX_HDRIVES
&& ha
->hdr
[t
].lock
))
1623 if (gdth_test_busy(ha
)) { /* controller busy ? */
1624 TRACE(("gdth_next() controller %d busy !\n", ha
->hanum
));
1625 if (!gdth_polling
) {
1626 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
1629 while (gdth_test_busy(ha
))
1635 if (!nscp_cmndinfo
->internal_command
) {
1636 if (nscp_cmndinfo
->phase
== -1) {
1637 nscp_cmndinfo
->phase
= CACHESERVICE
; /* default: cache svc. */
1638 if (nscp
->cmnd
[0] == TEST_UNIT_READY
) {
1639 TRACE2(("TEST_UNIT_READY Bus %d Id %d LUN %d\n",
1641 /* TEST_UNIT_READY -> set scan mode */
1642 if ((ha
->scan_mode
& 0x0f) == 0) {
1643 if (b
== 0 && t
== 0 && l
== 0) {
1645 TRACE2(("Scan mode: 0x%x\n", ha
->scan_mode
));
1647 } else if ((ha
->scan_mode
& 0x0f) == 1) {
1648 if (b
== 0 && ((t
== 0 && l
== 1) ||
1649 (t
== 1 && l
== 0))) {
1650 nscp_cmndinfo
->OpCode
= GDT_SCAN_START
;
1651 nscp_cmndinfo
->phase
= ((ha
->scan_mode
& 0x10 ? 1:0) << 8)
1653 ha
->scan_mode
= 0x12;
1654 TRACE2(("Scan mode: 0x%x (SCAN_START)\n",
1657 ha
->scan_mode
&= 0x10;
1658 TRACE2(("Scan mode: 0x%x\n", ha
->scan_mode
));
1660 } else if (ha
->scan_mode
== 0x12) {
1661 if (b
== ha
->bus_cnt
&& t
== ha
->tid_cnt
-1) {
1662 nscp_cmndinfo
->phase
= SCSIRAWSERVICE
;
1663 nscp_cmndinfo
->OpCode
= GDT_SCAN_END
;
1664 ha
->scan_mode
&= 0x10;
1665 TRACE2(("Scan mode: 0x%x (SCAN_END)\n",
1670 if (b
== ha
->virt_bus
&& nscp
->cmnd
[0] != INQUIRY
&&
1671 nscp
->cmnd
[0] != READ_CAPACITY
&& nscp
->cmnd
[0] != MODE_SENSE
&&
1672 (ha
->hdr
[t
].cluster_type
& CLUSTER_DRIVE
)) {
1673 /* always GDT_CLUST_INFO! */
1674 nscp_cmndinfo
->OpCode
= GDT_CLUST_INFO
;
1679 if (nscp_cmndinfo
->OpCode
!= -1) {
1680 if ((nscp_cmndinfo
->phase
& 0xff) == CACHESERVICE
) {
1681 if (!(cmd_index
=gdth_fill_cache_cmd(ha
, nscp
, t
)))
1684 } else if ((nscp_cmndinfo
->phase
& 0xff) == SCSIRAWSERVICE
) {
1685 if (!(cmd_index
=gdth_fill_raw_cmd(ha
, nscp
, BUS_L2P(ha
, b
))))
1689 memset((char*)nscp
->sense_buffer
,0,16);
1690 nscp
->sense_buffer
[0] = 0x70;
1691 nscp
->sense_buffer
[2] = NOT_READY
;
1692 nscp
->result
= (DID_OK
<< 16) | (CHECK_CONDITION
<< 1);
1693 if (!nscp_cmndinfo
->wait_for_completion
)
1694 nscp_cmndinfo
->wait_for_completion
++;
1696 gdth_scsi_done(nscp
);
1698 } else if (gdth_cmnd_priv(nscp
)->internal_command
) {
1699 if (!(cmd_index
=gdth_special_cmd(ha
, nscp
)))
1702 } else if (b
!= ha
->virt_bus
) {
1703 if (ha
->raw
[BUS_L2P(ha
,b
)].io_cnt
[t
] >= GDTH_MAX_RAW
||
1704 !(cmd_index
=gdth_fill_raw_cmd(ha
, nscp
, BUS_L2P(ha
, b
))))
1707 ha
->raw
[BUS_L2P(ha
,b
)].io_cnt
[t
]++;
1708 } else if (t
>= MAX_HDRIVES
|| !ha
->hdr
[t
].present
|| l
!= 0) {
1709 TRACE2(("Command 0x%x to bus %d id %d lun %d -> IGNORE\n",
1710 nscp
->cmnd
[0], b
, t
, l
));
1711 nscp
->result
= DID_BAD_TARGET
<< 16;
1712 if (!nscp_cmndinfo
->wait_for_completion
)
1713 nscp_cmndinfo
->wait_for_completion
++;
1715 gdth_scsi_done(nscp
);
1717 switch (nscp
->cmnd
[0]) {
1718 case TEST_UNIT_READY
:
1725 case SERVICE_ACTION_IN_16
:
1726 TRACE(("cache cmd %x/%x/%x/%x/%x/%x\n",nscp
->cmnd
[0],
1727 nscp
->cmnd
[1],nscp
->cmnd
[2],nscp
->cmnd
[3],
1728 nscp
->cmnd
[4],nscp
->cmnd
[5]));
1729 if (ha
->hdr
[t
].media_changed
&& nscp
->cmnd
[0] != INQUIRY
) {
1730 /* return UNIT_ATTENTION */
1731 TRACE2(("cmd 0x%x target %d: UNIT_ATTENTION\n",
1733 ha
->hdr
[t
].media_changed
= FALSE
;
1734 memset((char*)nscp
->sense_buffer
,0,16);
1735 nscp
->sense_buffer
[0] = 0x70;
1736 nscp
->sense_buffer
[2] = UNIT_ATTENTION
;
1737 nscp
->result
= (DID_OK
<< 16) | (CHECK_CONDITION
<< 1);
1738 if (!nscp_cmndinfo
->wait_for_completion
)
1739 nscp_cmndinfo
->wait_for_completion
++;
1741 gdth_scsi_done(nscp
);
1742 } else if (gdth_internal_cache_cmd(ha
, nscp
))
1743 gdth_scsi_done(nscp
);
1746 case ALLOW_MEDIUM_REMOVAL
:
1747 TRACE(("cache cmd %x/%x/%x/%x/%x/%x\n",nscp
->cmnd
[0],
1748 nscp
->cmnd
[1],nscp
->cmnd
[2],nscp
->cmnd
[3],
1749 nscp
->cmnd
[4],nscp
->cmnd
[5]));
1750 if ( (nscp
->cmnd
[4]&1) && !(ha
->hdr
[t
].devtype
&1) ) {
1751 TRACE(("Prevent r. nonremov. drive->do nothing\n"));
1752 nscp
->result
= DID_OK
<< 16;
1753 nscp
->sense_buffer
[0] = 0;
1754 if (!nscp_cmndinfo
->wait_for_completion
)
1755 nscp_cmndinfo
->wait_for_completion
++;
1757 gdth_scsi_done(nscp
);
1759 nscp
->cmnd
[3] = (ha
->hdr
[t
].devtype
&1) ? 1:0;
1760 TRACE(("Prevent/allow r. %d rem. drive %d\n",
1761 nscp
->cmnd
[4],nscp
->cmnd
[3]));
1762 if (!(cmd_index
=gdth_fill_cache_cmd(ha
, nscp
, t
)))
1769 TRACE2(("cache cmd %s\n",nscp
->cmnd
[0] == RESERVE
?
1770 "RESERVE" : "RELEASE"));
1771 if (!(cmd_index
=gdth_fill_cache_cmd(ha
, nscp
, t
)))
1781 if (ha
->hdr
[t
].media_changed
) {
1782 /* return UNIT_ATTENTION */
1783 TRACE2(("cmd 0x%x target %d: UNIT_ATTENTION\n",
1785 ha
->hdr
[t
].media_changed
= FALSE
;
1786 memset((char*)nscp
->sense_buffer
,0,16);
1787 nscp
->sense_buffer
[0] = 0x70;
1788 nscp
->sense_buffer
[2] = UNIT_ATTENTION
;
1789 nscp
->result
= (DID_OK
<< 16) | (CHECK_CONDITION
<< 1);
1790 if (!nscp_cmndinfo
->wait_for_completion
)
1791 nscp_cmndinfo
->wait_for_completion
++;
1793 gdth_scsi_done(nscp
);
1794 } else if (!(cmd_index
=gdth_fill_cache_cmd(ha
, nscp
, t
)))
1799 TRACE2(("cache cmd %x/%x/%x/%x/%x/%x unknown\n",nscp
->cmnd
[0],
1800 nscp
->cmnd
[1],nscp
->cmnd
[2],nscp
->cmnd
[3],
1801 nscp
->cmnd
[4],nscp
->cmnd
[5]));
1802 printk("GDT-HA %d: Unknown SCSI command 0x%x to cache service !\n",
1803 ha
->hanum
, nscp
->cmnd
[0]);
1804 nscp
->result
= DID_ABORT
<< 16;
1805 if (!nscp_cmndinfo
->wait_for_completion
)
1806 nscp_cmndinfo
->wait_for_completion
++;
1808 gdth_scsi_done(nscp
);
1815 if (nscp
== ha
->req_first
)
1816 ha
->req_first
= pscp
= (struct scsi_cmnd
*)nscp
->SCp
.ptr
;
1818 pscp
->SCp
.ptr
= nscp
->SCp
.ptr
;
1823 if (ha
->cmd_cnt
> 0) {
1824 gdth_release_event(ha
);
1828 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
1830 if (gdth_polling
&& ha
->cmd_cnt
> 0) {
1831 if (!gdth_wait(ha
, cmd_index
, POLL_TIMEOUT
))
1832 printk("GDT-HA %d: Command %d timed out !\n",
1833 ha
->hanum
, cmd_index
);
1838 * gdth_copy_internal_data() - copy to/from a buffer onto a scsi_cmnd's
1839 * buffers, kmap_atomic() as needed.
1841 static void gdth_copy_internal_data(gdth_ha_str
*ha
, struct scsi_cmnd
*scp
,
1842 char *buffer
, u16 count
)
1844 u16 cpcount
,i
, max_sg
= scsi_sg_count(scp
);
1846 struct scatterlist
*sl
;
1849 cpcount
= min_t(u16
, count
, scsi_bufflen(scp
));
1853 scsi_for_each_sg(scp
, sl
, max_sg
, i
) {
1854 unsigned long flags
;
1855 cpnow
= (u16
)sl
->length
;
1856 TRACE(("copy_internal() now %d sum %d count %d %d\n",
1857 cpnow
, cpsum
, cpcount
, scsi_bufflen(scp
)));
1858 if (cpsum
+cpnow
> cpcount
)
1859 cpnow
= cpcount
- cpsum
;
1862 printk("GDT-HA %d: invalid sc/gt element in gdth_copy_internal_data()\n",
1866 local_irq_save(flags
);
1867 address
= kmap_atomic(sg_page(sl
)) + sl
->offset
;
1868 memcpy(address
, buffer
, cpnow
);
1869 flush_dcache_page(sg_page(sl
));
1870 kunmap_atomic(address
);
1871 local_irq_restore(flags
);
1872 if (cpsum
== cpcount
)
1877 printk("GDT-HA %d: SCSI command with no buffers but data transfer expected!\n",
1883 static int gdth_internal_cache_cmd(gdth_ha_str
*ha
, struct scsi_cmnd
*scp
)
1887 gdth_rdcap_data rdc
;
1889 gdth_modep_data mpd
;
1890 struct gdth_cmndinfo
*cmndinfo
= gdth_cmnd_priv(scp
);
1892 t
= scp
->device
->id
;
1893 TRACE(("gdth_internal_cache_cmd() cmd 0x%x hdrive %d\n",
1896 scp
->result
= DID_OK
<< 16;
1897 scp
->sense_buffer
[0] = 0;
1899 switch (scp
->cmnd
[0]) {
1900 case TEST_UNIT_READY
:
1903 TRACE2(("Test/Verify/Start hdrive %d\n",t
));
1907 TRACE2(("Inquiry hdrive %d devtype %d\n",
1908 t
,ha
->hdr
[t
].devtype
));
1909 inq
.type_qual
= (ha
->hdr
[t
].devtype
&4) ? TYPE_ROM
:TYPE_DISK
;
1910 /* you can here set all disks to removable, if you want to do
1911 a flush using the ALLOW_MEDIUM_REMOVAL command */
1912 inq
.modif_rmb
= 0x00;
1913 if ((ha
->hdr
[t
].devtype
& 1) ||
1914 (ha
->hdr
[t
].cluster_type
& CLUSTER_DRIVE
))
1915 inq
.modif_rmb
= 0x80;
1919 strcpy(inq
.vendor
,ha
->oem_name
);
1920 snprintf(inq
.product
, sizeof(inq
.product
), "Host Drive #%02d",t
);
1921 strcpy(inq
.revision
," ");
1922 gdth_copy_internal_data(ha
, scp
, (char*)&inq
, sizeof(gdth_inq_data
));
1926 TRACE2(("Request sense hdrive %d\n",t
));
1927 sd
.errorcode
= 0x70;
1932 gdth_copy_internal_data(ha
, scp
, (char*)&sd
, sizeof(gdth_sense_data
));
1936 TRACE2(("Mode sense hdrive %d\n",t
));
1937 memset((char*)&mpd
,0,sizeof(gdth_modep_data
));
1938 mpd
.hd
.data_length
= sizeof(gdth_modep_data
);
1939 mpd
.hd
.dev_par
= (ha
->hdr
[t
].devtype
&2) ? 0x80:0;
1940 mpd
.hd
.bd_length
= sizeof(mpd
.bd
);
1941 mpd
.bd
.block_length
[0] = (SECTOR_SIZE
& 0x00ff0000) >> 16;
1942 mpd
.bd
.block_length
[1] = (SECTOR_SIZE
& 0x0000ff00) >> 8;
1943 mpd
.bd
.block_length
[2] = (SECTOR_SIZE
& 0x000000ff);
1944 gdth_copy_internal_data(ha
, scp
, (char*)&mpd
, sizeof(gdth_modep_data
));
1948 TRACE2(("Read capacity hdrive %d\n",t
));
1949 if (ha
->hdr
[t
].size
> (u64
)0xffffffff)
1950 rdc
.last_block_no
= 0xffffffff;
1952 rdc
.last_block_no
= cpu_to_be32(ha
->hdr
[t
].size
-1);
1953 rdc
.block_length
= cpu_to_be32(SECTOR_SIZE
);
1954 gdth_copy_internal_data(ha
, scp
, (char*)&rdc
, sizeof(gdth_rdcap_data
));
1957 case SERVICE_ACTION_IN_16
:
1958 if ((scp
->cmnd
[1] & 0x1f) == SAI_READ_CAPACITY_16
&&
1959 (ha
->cache_feat
& GDT_64BIT
)) {
1960 gdth_rdcap16_data rdc16
;
1962 TRACE2(("Read capacity (16) hdrive %d\n",t
));
1963 rdc16
.last_block_no
= cpu_to_be64(ha
->hdr
[t
].size
-1);
1964 rdc16
.block_length
= cpu_to_be32(SECTOR_SIZE
);
1965 gdth_copy_internal_data(ha
, scp
, (char*)&rdc16
,
1966 sizeof(gdth_rdcap16_data
));
1968 scp
->result
= DID_ABORT
<< 16;
1973 TRACE2(("Internal cache cmd 0x%x unknown\n",scp
->cmnd
[0]));
1977 if (!cmndinfo
->wait_for_completion
)
1978 cmndinfo
->wait_for_completion
++;
1985 static int gdth_fill_cache_cmd(gdth_ha_str
*ha
, struct scsi_cmnd
*scp
,
1988 register gdth_cmd_str
*cmdp
;
1989 struct gdth_cmndinfo
*cmndinfo
= gdth_cmnd_priv(scp
);
1992 int i
, cmd_index
, read_write
, sgcnt
, mode64
;
1995 TRACE(("gdth_fill_cache_cmd() cmd 0x%x cmdsize %d hdrive %d\n",
1996 scp
->cmnd
[0],scp
->cmd_len
,hdrive
));
1998 mode64
= (ha
->cache_feat
& GDT_64BIT
) ? TRUE
: FALSE
;
1999 /* test for READ_16, WRITE_16 if !mode64 ? ---
2000 not required, should not occur due to error return on
2003 cmdp
->Service
= CACHESERVICE
;
2004 cmdp
->RequestBuffer
= scp
;
2005 /* search free command index */
2006 if (!(cmd_index
=gdth_get_cmd_index(ha
))) {
2007 TRACE(("GDT: No free command index found\n"));
2010 /* if it's the first command, set command semaphore */
2011 if (ha
->cmd_cnt
== 0)
2016 if (cmndinfo
->OpCode
!= -1)
2017 cmdp
->OpCode
= cmndinfo
->OpCode
; /* special cache cmd. */
2018 else if (scp
->cmnd
[0] == RESERVE
)
2019 cmdp
->OpCode
= GDT_RESERVE_DRV
;
2020 else if (scp
->cmnd
[0] == RELEASE
)
2021 cmdp
->OpCode
= GDT_RELEASE_DRV
;
2022 else if (scp
->cmnd
[0] == ALLOW_MEDIUM_REMOVAL
) {
2023 if (scp
->cmnd
[4] & 1) /* prevent ? */
2024 cmdp
->OpCode
= GDT_MOUNT
;
2025 else if (scp
->cmnd
[3] & 1) /* removable drive ? */
2026 cmdp
->OpCode
= GDT_UNMOUNT
;
2028 cmdp
->OpCode
= GDT_FLUSH
;
2029 } else if (scp
->cmnd
[0] == WRITE_6
|| scp
->cmnd
[0] == WRITE_10
||
2030 scp
->cmnd
[0] == WRITE_12
|| scp
->cmnd
[0] == WRITE_16
2033 if (gdth_write_through
|| ((ha
->hdr
[hdrive
].rw_attribs
& 1) &&
2034 (ha
->cache_feat
& GDT_WR_THROUGH
)))
2035 cmdp
->OpCode
= GDT_WRITE_THR
;
2037 cmdp
->OpCode
= GDT_WRITE
;
2040 cmdp
->OpCode
= GDT_READ
;
2043 cmdp
->BoardNode
= LOCALBOARD
;
2045 cmdp
->u
.cache64
.DeviceNo
= hdrive
;
2046 cmdp
->u
.cache64
.BlockNo
= 1;
2047 cmdp
->u
.cache64
.sg_canz
= 0;
2049 cmdp
->u
.cache
.DeviceNo
= hdrive
;
2050 cmdp
->u
.cache
.BlockNo
= 1;
2051 cmdp
->u
.cache
.sg_canz
= 0;
2055 if (scp
->cmd_len
== 16) {
2056 memcpy(&no
, &scp
->cmnd
[2], sizeof(u64
));
2057 blockno
= be64_to_cpu(no
);
2058 memcpy(&cnt
, &scp
->cmnd
[10], sizeof(u32
));
2059 blockcnt
= be32_to_cpu(cnt
);
2060 } else if (scp
->cmd_len
== 10) {
2061 memcpy(&no
, &scp
->cmnd
[2], sizeof(u32
));
2062 blockno
= be32_to_cpu(no
);
2063 memcpy(&cnt
, &scp
->cmnd
[7], sizeof(u16
));
2064 blockcnt
= be16_to_cpu(cnt
);
2066 memcpy(&no
, &scp
->cmnd
[0], sizeof(u32
));
2067 blockno
= be32_to_cpu(no
) & 0x001fffffUL
;
2068 blockcnt
= scp
->cmnd
[4]==0 ? 0x100 : scp
->cmnd
[4];
2071 cmdp
->u
.cache64
.BlockNo
= blockno
;
2072 cmdp
->u
.cache64
.BlockCnt
= blockcnt
;
2074 cmdp
->u
.cache
.BlockNo
= (u32
)blockno
;
2075 cmdp
->u
.cache
.BlockCnt
= blockcnt
;
2078 if (scsi_bufflen(scp
)) {
2079 cmndinfo
->dma_dir
= (read_write
== 1 ?
2080 DMA_TO_DEVICE
: DMA_FROM_DEVICE
);
2081 sgcnt
= dma_map_sg(&ha
->pdev
->dev
, scsi_sglist(scp
),
2082 scsi_sg_count(scp
), cmndinfo
->dma_dir
);
2084 struct scatterlist
*sl
;
2086 cmdp
->u
.cache64
.DestAddr
= (u64
)-1;
2087 cmdp
->u
.cache64
.sg_canz
= sgcnt
;
2088 scsi_for_each_sg(scp
, sl
, sgcnt
, i
) {
2089 cmdp
->u
.cache64
.sg_lst
[i
].sg_ptr
= sg_dma_address(sl
);
2090 cmdp
->u
.cache64
.sg_lst
[i
].sg_len
= sg_dma_len(sl
);
2093 struct scatterlist
*sl
;
2095 cmdp
->u
.cache
.DestAddr
= 0xffffffff;
2096 cmdp
->u
.cache
.sg_canz
= sgcnt
;
2097 scsi_for_each_sg(scp
, sl
, sgcnt
, i
) {
2098 cmdp
->u
.cache
.sg_lst
[i
].sg_ptr
= sg_dma_address(sl
);
2099 cmdp
->u
.cache
.sg_lst
[i
].sg_len
= sg_dma_len(sl
);
2103 #ifdef GDTH_STATISTICS
2104 if (max_sg
< (u32
)sgcnt
) {
2105 max_sg
= (u32
)sgcnt
;
2106 TRACE3(("GDT: max_sg = %d\n",max_sg
));
2112 /* evaluate command size, check space */
2114 TRACE(("cache cmd: addr. %x sganz %x sgptr0 %x sglen0 %x\n",
2115 cmdp
->u
.cache64
.DestAddr
,cmdp
->u
.cache64
.sg_canz
,
2116 cmdp
->u
.cache64
.sg_lst
[0].sg_ptr
,
2117 cmdp
->u
.cache64
.sg_lst
[0].sg_len
));
2118 TRACE(("cache cmd: cmd %d blockno. %d, blockcnt %d\n",
2119 cmdp
->OpCode
,cmdp
->u
.cache64
.BlockNo
,cmdp
->u
.cache64
.BlockCnt
));
2120 ha
->cmd_len
= GDTOFFSOF(gdth_cmd_str
,u
.cache64
.sg_lst
) +
2121 (u16
)cmdp
->u
.cache64
.sg_canz
* sizeof(gdth_sg64_str
);
2123 TRACE(("cache cmd: addr. %x sganz %x sgptr0 %x sglen0 %x\n",
2124 cmdp
->u
.cache
.DestAddr
,cmdp
->u
.cache
.sg_canz
,
2125 cmdp
->u
.cache
.sg_lst
[0].sg_ptr
,
2126 cmdp
->u
.cache
.sg_lst
[0].sg_len
));
2127 TRACE(("cache cmd: cmd %d blockno. %d, blockcnt %d\n",
2128 cmdp
->OpCode
,cmdp
->u
.cache
.BlockNo
,cmdp
->u
.cache
.BlockCnt
));
2129 ha
->cmd_len
= GDTOFFSOF(gdth_cmd_str
,u
.cache
.sg_lst
) +
2130 (u16
)cmdp
->u
.cache
.sg_canz
* sizeof(gdth_sg_str
);
2132 if (ha
->cmd_len
& 3)
2133 ha
->cmd_len
+= (4 - (ha
->cmd_len
& 3));
2135 if (ha
->cmd_cnt
> 0) {
2136 if ((ha
->cmd_offs_dpmem
+ ha
->cmd_len
+ DPMEM_COMMAND_OFFSET
) >
2138 TRACE2(("gdth_fill_cache() DPMEM overflow\n"));
2139 ha
->cmd_tab
[cmd_index
-2].cmnd
= UNUSED_CMND
;
2145 gdth_copy_command(ha
);
2149 static int gdth_fill_raw_cmd(gdth_ha_str
*ha
, struct scsi_cmnd
*scp
, u8 b
)
2151 register gdth_cmd_str
*cmdp
;
2153 dma_addr_t sense_paddr
;
2154 int cmd_index
, sgcnt
, mode64
;
2156 struct gdth_cmndinfo
*cmndinfo
;
2158 t
= scp
->device
->id
;
2159 l
= scp
->device
->lun
;
2161 TRACE(("gdth_fill_raw_cmd() cmd 0x%x bus %d ID %d LUN %d\n",
2162 scp
->cmnd
[0],b
,t
,l
));
2164 mode64
= (ha
->raw_feat
& GDT_64BIT
) ? TRUE
: FALSE
;
2166 cmdp
->Service
= SCSIRAWSERVICE
;
2167 cmdp
->RequestBuffer
= scp
;
2168 /* search free command index */
2169 if (!(cmd_index
=gdth_get_cmd_index(ha
))) {
2170 TRACE(("GDT: No free command index found\n"));
2173 /* if it's the first command, set command semaphore */
2174 if (ha
->cmd_cnt
== 0)
2177 cmndinfo
= gdth_cmnd_priv(scp
);
2179 if (cmndinfo
->OpCode
!= -1) {
2180 cmdp
->OpCode
= cmndinfo
->OpCode
; /* special raw cmd. */
2181 cmdp
->BoardNode
= LOCALBOARD
;
2183 cmdp
->u
.raw64
.direction
= (cmndinfo
->phase
>> 8);
2184 TRACE2(("special raw cmd 0x%x param 0x%x\n",
2185 cmdp
->OpCode
, cmdp
->u
.raw64
.direction
));
2186 /* evaluate command size */
2187 ha
->cmd_len
= GDTOFFSOF(gdth_cmd_str
,u
.raw64
.sg_lst
);
2189 cmdp
->u
.raw
.direction
= (cmndinfo
->phase
>> 8);
2190 TRACE2(("special raw cmd 0x%x param 0x%x\n",
2191 cmdp
->OpCode
, cmdp
->u
.raw
.direction
));
2192 /* evaluate command size */
2193 ha
->cmd_len
= GDTOFFSOF(gdth_cmd_str
,u
.raw
.sg_lst
);
2197 sense_paddr
= dma_map_single(&ha
->pdev
->dev
, scp
->sense_buffer
, 16,
2200 cmndinfo
->sense_paddr
= sense_paddr
;
2201 cmdp
->OpCode
= GDT_WRITE
; /* always */
2202 cmdp
->BoardNode
= LOCALBOARD
;
2204 cmdp
->u
.raw64
.reserved
= 0;
2205 cmdp
->u
.raw64
.mdisc_time
= 0;
2206 cmdp
->u
.raw64
.mcon_time
= 0;
2207 cmdp
->u
.raw64
.clen
= scp
->cmd_len
;
2208 cmdp
->u
.raw64
.target
= t
;
2209 cmdp
->u
.raw64
.lun
= l
;
2210 cmdp
->u
.raw64
.bus
= b
;
2211 cmdp
->u
.raw64
.priority
= 0;
2212 cmdp
->u
.raw64
.sdlen
= scsi_bufflen(scp
);
2213 cmdp
->u
.raw64
.sense_len
= 16;
2214 cmdp
->u
.raw64
.sense_data
= sense_paddr
;
2215 cmdp
->u
.raw64
.direction
=
2216 gdth_direction_tab
[scp
->cmnd
[0]]==DOU
? GDTH_DATA_OUT
:GDTH_DATA_IN
;
2217 memcpy(cmdp
->u
.raw64
.cmd
,scp
->cmnd
,16);
2218 cmdp
->u
.raw64
.sg_ranz
= 0;
2220 cmdp
->u
.raw
.reserved
= 0;
2221 cmdp
->u
.raw
.mdisc_time
= 0;
2222 cmdp
->u
.raw
.mcon_time
= 0;
2223 cmdp
->u
.raw
.clen
= scp
->cmd_len
;
2224 cmdp
->u
.raw
.target
= t
;
2225 cmdp
->u
.raw
.lun
= l
;
2226 cmdp
->u
.raw
.bus
= b
;
2227 cmdp
->u
.raw
.priority
= 0;
2228 cmdp
->u
.raw
.link_p
= 0;
2229 cmdp
->u
.raw
.sdlen
= scsi_bufflen(scp
);
2230 cmdp
->u
.raw
.sense_len
= 16;
2231 cmdp
->u
.raw
.sense_data
= sense_paddr
;
2232 cmdp
->u
.raw
.direction
=
2233 gdth_direction_tab
[scp
->cmnd
[0]]==DOU
? GDTH_DATA_OUT
:GDTH_DATA_IN
;
2234 memcpy(cmdp
->u
.raw
.cmd
,scp
->cmnd
,12);
2235 cmdp
->u
.raw
.sg_ranz
= 0;
2238 if (scsi_bufflen(scp
)) {
2239 cmndinfo
->dma_dir
= DMA_BIDIRECTIONAL
;
2240 sgcnt
= dma_map_sg(&ha
->pdev
->dev
, scsi_sglist(scp
),
2241 scsi_sg_count(scp
), cmndinfo
->dma_dir
);
2243 struct scatterlist
*sl
;
2245 cmdp
->u
.raw64
.sdata
= (u64
)-1;
2246 cmdp
->u
.raw64
.sg_ranz
= sgcnt
;
2247 scsi_for_each_sg(scp
, sl
, sgcnt
, i
) {
2248 cmdp
->u
.raw64
.sg_lst
[i
].sg_ptr
= sg_dma_address(sl
);
2249 cmdp
->u
.raw64
.sg_lst
[i
].sg_len
= sg_dma_len(sl
);
2252 struct scatterlist
*sl
;
2254 cmdp
->u
.raw
.sdata
= 0xffffffff;
2255 cmdp
->u
.raw
.sg_ranz
= sgcnt
;
2256 scsi_for_each_sg(scp
, sl
, sgcnt
, i
) {
2257 cmdp
->u
.raw
.sg_lst
[i
].sg_ptr
= sg_dma_address(sl
);
2258 cmdp
->u
.raw
.sg_lst
[i
].sg_len
= sg_dma_len(sl
);
2262 #ifdef GDTH_STATISTICS
2263 if (max_sg
< sgcnt
) {
2265 TRACE3(("GDT: max_sg = %d\n",sgcnt
));
2271 TRACE(("raw cmd: addr. %x sganz %x sgptr0 %x sglen0 %x\n",
2272 cmdp
->u
.raw64
.sdata
,cmdp
->u
.raw64
.sg_ranz
,
2273 cmdp
->u
.raw64
.sg_lst
[0].sg_ptr
,
2274 cmdp
->u
.raw64
.sg_lst
[0].sg_len
));
2275 /* evaluate command size */
2276 ha
->cmd_len
= GDTOFFSOF(gdth_cmd_str
,u
.raw64
.sg_lst
) +
2277 (u16
)cmdp
->u
.raw64
.sg_ranz
* sizeof(gdth_sg64_str
);
2279 TRACE(("raw cmd: addr. %x sganz %x sgptr0 %x sglen0 %x\n",
2280 cmdp
->u
.raw
.sdata
,cmdp
->u
.raw
.sg_ranz
,
2281 cmdp
->u
.raw
.sg_lst
[0].sg_ptr
,
2282 cmdp
->u
.raw
.sg_lst
[0].sg_len
));
2283 /* evaluate command size */
2284 ha
->cmd_len
= GDTOFFSOF(gdth_cmd_str
,u
.raw
.sg_lst
) +
2285 (u16
)cmdp
->u
.raw
.sg_ranz
* sizeof(gdth_sg_str
);
2289 if (ha
->cmd_len
& 3)
2290 ha
->cmd_len
+= (4 - (ha
->cmd_len
& 3));
2292 if (ha
->cmd_cnt
> 0) {
2293 if ((ha
->cmd_offs_dpmem
+ ha
->cmd_len
+ DPMEM_COMMAND_OFFSET
) >
2295 TRACE2(("gdth_fill_raw() DPMEM overflow\n"));
2296 ha
->cmd_tab
[cmd_index
-2].cmnd
= UNUSED_CMND
;
2302 gdth_copy_command(ha
);
2306 static int gdth_special_cmd(gdth_ha_str
*ha
, struct scsi_cmnd
*scp
)
2308 register gdth_cmd_str
*cmdp
;
2309 struct gdth_cmndinfo
*cmndinfo
= gdth_cmnd_priv(scp
);
2313 TRACE2(("gdth_special_cmd(): "));
2315 *cmdp
= *cmndinfo
->internal_cmd_str
;
2316 cmdp
->RequestBuffer
= scp
;
2318 /* search free command index */
2319 if (!(cmd_index
=gdth_get_cmd_index(ha
))) {
2320 TRACE(("GDT: No free command index found\n"));
2324 /* if it's the first command, set command semaphore */
2325 if (ha
->cmd_cnt
== 0)
2328 /* evaluate command size, check space */
2329 if (cmdp
->OpCode
== GDT_IOCTL
) {
2330 TRACE2(("IOCTL\n"));
2332 GDTOFFSOF(gdth_cmd_str
,u
.ioctl
.p_param
) + sizeof(u64
);
2333 } else if (cmdp
->Service
== CACHESERVICE
) {
2334 TRACE2(("cache command %d\n",cmdp
->OpCode
));
2335 if (ha
->cache_feat
& GDT_64BIT
)
2337 GDTOFFSOF(gdth_cmd_str
,u
.cache64
.sg_lst
) + sizeof(gdth_sg64_str
);
2340 GDTOFFSOF(gdth_cmd_str
,u
.cache
.sg_lst
) + sizeof(gdth_sg_str
);
2341 } else if (cmdp
->Service
== SCSIRAWSERVICE
) {
2342 TRACE2(("raw command %d\n",cmdp
->OpCode
));
2343 if (ha
->raw_feat
& GDT_64BIT
)
2345 GDTOFFSOF(gdth_cmd_str
,u
.raw64
.sg_lst
) + sizeof(gdth_sg64_str
);
2348 GDTOFFSOF(gdth_cmd_str
,u
.raw
.sg_lst
) + sizeof(gdth_sg_str
);
2351 if (ha
->cmd_len
& 3)
2352 ha
->cmd_len
+= (4 - (ha
->cmd_len
& 3));
2354 if (ha
->cmd_cnt
> 0) {
2355 if ((ha
->cmd_offs_dpmem
+ ha
->cmd_len
+ DPMEM_COMMAND_OFFSET
) >
2357 TRACE2(("gdth_special_cmd() DPMEM overflow\n"));
2358 ha
->cmd_tab
[cmd_index
-2].cmnd
= UNUSED_CMND
;
2364 gdth_copy_command(ha
);
2369 /* Controller event handling functions */
2370 static gdth_evt_str
*gdth_store_event(gdth_ha_str
*ha
, u16 source
,
2371 u16 idx
, gdth_evt_data
*evt
)
2375 /* no GDTH_LOCK_HA() ! */
2376 TRACE2(("gdth_store_event() source %d idx %d\n", source
, idx
));
2377 if (source
== 0) /* no source -> no event */
2380 if (ebuffer
[elastidx
].event_source
== source
&&
2381 ebuffer
[elastidx
].event_idx
== idx
&&
2382 ((evt
->size
!= 0 && ebuffer
[elastidx
].event_data
.size
!= 0 &&
2383 !memcmp((char *)&ebuffer
[elastidx
].event_data
.eu
,
2384 (char *)&evt
->eu
, evt
->size
)) ||
2385 (evt
->size
== 0 && ebuffer
[elastidx
].event_data
.size
== 0 &&
2386 !strcmp((char *)&ebuffer
[elastidx
].event_data
.event_string
,
2387 (char *)&evt
->event_string
)))) {
2388 e
= &ebuffer
[elastidx
];
2389 e
->last_stamp
= (u32
)ktime_get_real_seconds();
2392 if (ebuffer
[elastidx
].event_source
!= 0) { /* entry not free ? */
2394 if (elastidx
== MAX_EVENTS
)
2396 if (elastidx
== eoldidx
) { /* reached mark ? */
2398 if (eoldidx
== MAX_EVENTS
)
2402 e
= &ebuffer
[elastidx
];
2403 e
->event_source
= source
;
2405 e
->first_stamp
= e
->last_stamp
= (u32
)ktime_get_real_seconds();
2407 e
->event_data
= *evt
;
2413 static int gdth_read_event(gdth_ha_str
*ha
, int handle
, gdth_evt_str
*estr
)
2417 unsigned long flags
;
2419 TRACE2(("gdth_read_event() handle %d\n", handle
));
2420 spin_lock_irqsave(&ha
->smp_lock
, flags
);
2425 estr
->event_source
= 0;
2427 if (eindex
< 0 || eindex
>= MAX_EVENTS
) {
2428 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
2431 e
= &ebuffer
[eindex
];
2432 if (e
->event_source
!= 0) {
2433 if (eindex
!= elastidx
) {
2434 if (++eindex
== MAX_EVENTS
)
2439 memcpy(estr
, e
, sizeof(gdth_evt_str
));
2441 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
2445 static void gdth_readapp_event(gdth_ha_str
*ha
,
2446 u8 application
, gdth_evt_str
*estr
)
2450 unsigned long flags
;
2453 TRACE2(("gdth_readapp_event() app. %d\n", application
));
2454 spin_lock_irqsave(&ha
->smp_lock
, flags
);
2457 e
= &ebuffer
[eindex
];
2458 if (e
->event_source
== 0)
2460 if ((e
->application
& application
) == 0) {
2461 e
->application
|= application
;
2465 if (eindex
== elastidx
)
2467 if (++eindex
== MAX_EVENTS
)
2471 memcpy(estr
, e
, sizeof(gdth_evt_str
));
2473 estr
->event_source
= 0;
2474 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
2477 static void gdth_clear_events(void)
2479 TRACE(("gdth_clear_events()"));
2481 eoldidx
= elastidx
= 0;
2482 ebuffer
[0].event_source
= 0;
2486 /* SCSI interface functions */
2488 static irqreturn_t
__gdth_interrupt(gdth_ha_str
*ha
,
2489 int gdth_from_wait
, int* pIndex
)
2491 gdt6m_dpram_str __iomem
*dp6m_ptr
= NULL
;
2492 gdt6_dpram_str __iomem
*dp6_ptr
;
2493 struct scsi_cmnd
*scp
;
2497 unsigned long flags
= 0;
2499 TRACE(("gdth_interrupt() IRQ %d\n", ha
->irq
));
2501 /* if polling and not from gdth_wait() -> return */
2503 if (!gdth_from_wait
) {
2509 spin_lock_irqsave(&ha
->smp_lock
, flags
);
2511 /* search controller */
2512 IStatus
= gdth_get_status(ha
);
2514 /* spurious interrupt */
2516 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
2520 #ifdef GDTH_STATISTICS
2524 if (ha
->type
== GDT_PCI
) {
2526 if (IStatus
& 0x80) { /* error flag */
2528 ha
->status
= readw(&dp6_ptr
->u
.ic
.Status
);
2529 TRACE2(("gdth_interrupt() error %d/%d\n",IStatus
,ha
->status
));
2530 } else /* no error */
2532 ha
->info
= readl(&dp6_ptr
->u
.ic
.Info
[0]);
2533 ha
->service
= readw(&dp6_ptr
->u
.ic
.Service
);
2534 ha
->info2
= readl(&dp6_ptr
->u
.ic
.Info
[1]);
2536 writeb(0xff, &dp6_ptr
->io
.irqdel
); /* acknowledge interrupt */
2537 writeb(0, &dp6_ptr
->u
.ic
.Cmd_Index
);/* reset command index */
2538 writeb(0, &dp6_ptr
->io
.Sema1
); /* reset status semaphore */
2539 } else if (ha
->type
== GDT_PCINEW
) {
2540 if (IStatus
& 0x80) { /* error flag */
2542 ha
->status
= inw(PTR2USHORT(&ha
->plx
->status
));
2543 TRACE2(("gdth_interrupt() error %d/%d\n",IStatus
,ha
->status
));
2546 ha
->info
= inl(PTR2USHORT(&ha
->plx
->info
[0]));
2547 ha
->service
= inw(PTR2USHORT(&ha
->plx
->service
));
2548 ha
->info2
= inl(PTR2USHORT(&ha
->plx
->info
[1]));
2550 outb(0xff, PTR2USHORT(&ha
->plx
->edoor_reg
));
2551 outb(0x00, PTR2USHORT(&ha
->plx
->sema1_reg
));
2552 } else if (ha
->type
== GDT_PCIMPR
) {
2554 if (IStatus
& 0x80) { /* error flag */
2556 ha
->status
= readw(&dp6m_ptr
->i960r
.status
);
2557 TRACE2(("gdth_interrupt() error %d/%d\n",IStatus
,ha
->status
));
2558 } else /* no error */
2561 ha
->info
= readl(&dp6m_ptr
->i960r
.info
[0]);
2562 ha
->service
= readw(&dp6m_ptr
->i960r
.service
);
2563 ha
->info2
= readl(&dp6m_ptr
->i960r
.info
[1]);
2566 if (IStatus
== ASYNCINDEX
) {
2567 if (ha
->service
!= SCREENSERVICE
&&
2568 (ha
->fw_vers
& 0xff) >= 0x1a) {
2569 ha
->dvr
.severity
= readb
2570 (&((gdt6m_dpram_str __iomem
*)ha
->brd
)->i960r
.severity
);
2571 for (i
= 0; i
< 256; ++i
) {
2572 ha
->dvr
.event_string
[i
] = readb
2573 (&((gdt6m_dpram_str __iomem
*)ha
->brd
)->i960r
.evt_str
[i
]);
2574 if (ha
->dvr
.event_string
[i
] == 0)
2579 writeb(0xff, &dp6m_ptr
->i960r
.edoor_reg
);
2580 writeb(0, &dp6m_ptr
->i960r
.sema1_reg
);
2582 TRACE2(("gdth_interrupt() unknown controller type\n"));
2584 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
2588 TRACE(("gdth_interrupt() index %d stat %d info %d\n",
2589 IStatus
,ha
->status
,ha
->info
));
2591 if (gdth_from_wait
) {
2592 *pIndex
= (int)IStatus
;
2595 if (IStatus
== ASYNCINDEX
) {
2596 TRACE2(("gdth_interrupt() async. event\n"));
2597 gdth_async_event(ha
);
2599 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
2604 if (IStatus
== SPEZINDEX
) {
2605 TRACE2(("Service unknown or not initialized !\n"));
2606 ha
->dvr
.size
= sizeof(ha
->dvr
.eu
.driver
);
2607 ha
->dvr
.eu
.driver
.ionode
= ha
->hanum
;
2608 gdth_store_event(ha
, ES_DRIVER
, 4, &ha
->dvr
);
2610 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
2613 scp
= ha
->cmd_tab
[IStatus
-2].cmnd
;
2614 Service
= ha
->cmd_tab
[IStatus
-2].service
;
2615 ha
->cmd_tab
[IStatus
-2].cmnd
= UNUSED_CMND
;
2616 if (scp
== UNUSED_CMND
) {
2617 TRACE2(("gdth_interrupt() index to unused command (%d)\n",IStatus
));
2618 ha
->dvr
.size
= sizeof(ha
->dvr
.eu
.driver
);
2619 ha
->dvr
.eu
.driver
.ionode
= ha
->hanum
;
2620 ha
->dvr
.eu
.driver
.index
= IStatus
;
2621 gdth_store_event(ha
, ES_DRIVER
, 1, &ha
->dvr
);
2623 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
2626 if (scp
== INTERNAL_CMND
) {
2627 TRACE(("gdth_interrupt() answer to internal command\n"));
2629 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
2633 TRACE(("gdth_interrupt() sync. status\n"));
2634 rval
= gdth_sync_event(ha
,Service
,IStatus
,scp
);
2636 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
2638 gdth_putq(ha
, scp
, gdth_cmnd_priv(scp
)->priority
);
2639 } else if (rval
== 1) {
2640 gdth_scsi_done(scp
);
2647 static irqreturn_t
gdth_interrupt(int irq
, void *dev_id
)
2649 gdth_ha_str
*ha
= dev_id
;
2651 return __gdth_interrupt(ha
, false, NULL
);
2654 static int gdth_sync_event(gdth_ha_str
*ha
, int service
, u8 index
,
2655 struct scsi_cmnd
*scp
)
2660 struct gdth_cmndinfo
*cmndinfo
= gdth_cmnd_priv(scp
);
2663 TRACE(("gdth_sync_event() serv %d status %d\n",
2664 service
,ha
->status
));
2666 if (service
== SCREENSERVICE
) {
2668 TRACE(("len: %d, answer: %d, ext: %d, alen: %d\n",
2669 msg
->msg_len
,msg
->msg_answer
,msg
->msg_ext
,msg
->msg_alen
));
2670 if (msg
->msg_len
> MSGLEN
+1)
2671 msg
->msg_len
= MSGLEN
+1;
2673 if (!(msg
->msg_answer
&& msg
->msg_ext
)) {
2674 msg
->msg_text
[msg
->msg_len
] = '\0';
2675 printk("%s",msg
->msg_text
);
2678 if (msg
->msg_ext
&& !msg
->msg_answer
) {
2679 while (gdth_test_busy(ha
))
2681 cmdp
->Service
= SCREENSERVICE
;
2682 cmdp
->RequestBuffer
= SCREEN_CMND
;
2683 gdth_get_cmd_index(ha
);
2685 cmdp
->OpCode
= GDT_READ
;
2686 cmdp
->BoardNode
= LOCALBOARD
;
2687 cmdp
->u
.screen
.reserved
= 0;
2688 cmdp
->u
.screen
.su
.msg
.msg_handle
= msg
->msg_handle
;
2689 cmdp
->u
.screen
.su
.msg
.msg_addr
= ha
->msg_phys
;
2690 ha
->cmd_offs_dpmem
= 0;
2691 ha
->cmd_len
= GDTOFFSOF(gdth_cmd_str
,u
.screen
.su
.msg
.msg_addr
)
2694 gdth_copy_command(ha
);
2695 gdth_release_event(ha
);
2699 if (msg
->msg_answer
&& msg
->msg_alen
) {
2700 /* default answers (getchar() not possible) */
2701 if (msg
->msg_alen
== 1) {
2704 msg
->msg_text
[0] = 0;
2708 msg
->msg_text
[0] = 1;
2709 msg
->msg_text
[1] = 0;
2712 msg
->msg_answer
= 0;
2713 while (gdth_test_busy(ha
))
2715 cmdp
->Service
= SCREENSERVICE
;
2716 cmdp
->RequestBuffer
= SCREEN_CMND
;
2717 gdth_get_cmd_index(ha
);
2719 cmdp
->OpCode
= GDT_WRITE
;
2720 cmdp
->BoardNode
= LOCALBOARD
;
2721 cmdp
->u
.screen
.reserved
= 0;
2722 cmdp
->u
.screen
.su
.msg
.msg_handle
= msg
->msg_handle
;
2723 cmdp
->u
.screen
.su
.msg
.msg_addr
= ha
->msg_phys
;
2724 ha
->cmd_offs_dpmem
= 0;
2725 ha
->cmd_len
= GDTOFFSOF(gdth_cmd_str
,u
.screen
.su
.msg
.msg_addr
)
2728 gdth_copy_command(ha
);
2729 gdth_release_event(ha
);
2735 b
= scp
->device
->channel
;
2736 t
= scp
->device
->id
;
2737 if (cmndinfo
->OpCode
== -1 && b
!= ha
->virt_bus
) {
2738 ha
->raw
[BUS_L2P(ha
,b
)].io_cnt
[t
]--;
2740 /* cache or raw service */
2741 if (ha
->status
== S_BSY
) {
2742 TRACE2(("Controller busy -> retry !\n"));
2743 if (cmndinfo
->OpCode
== GDT_MOUNT
)
2744 cmndinfo
->OpCode
= GDT_CLUST_INFO
;
2748 if (scsi_bufflen(scp
))
2749 dma_unmap_sg(&ha
->pdev
->dev
, scsi_sglist(scp
), scsi_sg_count(scp
),
2752 if (cmndinfo
->sense_paddr
)
2753 dma_unmap_page(&ha
->pdev
->dev
, cmndinfo
->sense_paddr
, 16,
2756 if (ha
->status
== S_OK
) {
2757 cmndinfo
->status
= S_OK
;
2758 cmndinfo
->info
= ha
->info
;
2759 if (cmndinfo
->OpCode
!= -1) {
2760 TRACE2(("gdth_sync_event(): special cmd 0x%x OK\n",
2762 /* special commands GDT_CLUST_INFO/GDT_MOUNT ? */
2763 if (cmndinfo
->OpCode
== GDT_CLUST_INFO
) {
2764 ha
->hdr
[t
].cluster_type
= (u8
)ha
->info
;
2765 if (!(ha
->hdr
[t
].cluster_type
&
2767 /* NOT MOUNTED -> MOUNT */
2768 cmndinfo
->OpCode
= GDT_MOUNT
;
2769 if (ha
->hdr
[t
].cluster_type
&
2771 /* cluster drive RESERVED (on the other node) */
2772 cmndinfo
->phase
= -2; /* reservation conflict */
2775 cmndinfo
->OpCode
= -1;
2778 if (cmndinfo
->OpCode
== GDT_MOUNT
) {
2779 ha
->hdr
[t
].cluster_type
|= CLUSTER_MOUNTED
;
2780 ha
->hdr
[t
].media_changed
= TRUE
;
2781 } else if (cmndinfo
->OpCode
== GDT_UNMOUNT
) {
2782 ha
->hdr
[t
].cluster_type
&= ~CLUSTER_MOUNTED
;
2783 ha
->hdr
[t
].media_changed
= TRUE
;
2785 cmndinfo
->OpCode
= -1;
2788 cmndinfo
->priority
= HIGH_PRI
;
2791 /* RESERVE/RELEASE ? */
2792 if (scp
->cmnd
[0] == RESERVE
) {
2793 ha
->hdr
[t
].cluster_type
|= CLUSTER_RESERVED
;
2794 } else if (scp
->cmnd
[0] == RELEASE
) {
2795 ha
->hdr
[t
].cluster_type
&= ~CLUSTER_RESERVED
;
2797 scp
->result
= DID_OK
<< 16;
2798 scp
->sense_buffer
[0] = 0;
2801 cmndinfo
->status
= ha
->status
;
2802 cmndinfo
->info
= ha
->info
;
2804 if (cmndinfo
->OpCode
!= -1) {
2805 TRACE2(("gdth_sync_event(): special cmd 0x%x error 0x%x\n",
2806 cmndinfo
->OpCode
, ha
->status
));
2807 if (cmndinfo
->OpCode
== GDT_SCAN_START
||
2808 cmndinfo
->OpCode
== GDT_SCAN_END
) {
2809 cmndinfo
->OpCode
= -1;
2811 cmndinfo
->priority
= HIGH_PRI
;
2814 memset((char*)scp
->sense_buffer
,0,16);
2815 scp
->sense_buffer
[0] = 0x70;
2816 scp
->sense_buffer
[2] = NOT_READY
;
2817 scp
->result
= (DID_OK
<< 16) | (CHECK_CONDITION
<< 1);
2818 } else if (service
== CACHESERVICE
) {
2819 if (ha
->status
== S_CACHE_UNKNOWN
&&
2820 (ha
->hdr
[t
].cluster_type
&
2821 CLUSTER_RESERVE_STATE
) == CLUSTER_RESERVE_STATE
) {
2822 /* bus reset -> force GDT_CLUST_INFO */
2823 ha
->hdr
[t
].cluster_type
&= ~CLUSTER_RESERVED
;
2825 memset((char*)scp
->sense_buffer
,0,16);
2826 if (ha
->status
== (u16
)S_CACHE_RESERV
) {
2827 scp
->result
= (DID_OK
<< 16) | (RESERVATION_CONFLICT
<< 1);
2829 scp
->sense_buffer
[0] = 0x70;
2830 scp
->sense_buffer
[2] = NOT_READY
;
2831 scp
->result
= (DID_OK
<< 16) | (CHECK_CONDITION
<< 1);
2833 if (!cmndinfo
->internal_command
) {
2834 ha
->dvr
.size
= sizeof(ha
->dvr
.eu
.sync
);
2835 ha
->dvr
.eu
.sync
.ionode
= ha
->hanum
;
2836 ha
->dvr
.eu
.sync
.service
= service
;
2837 ha
->dvr
.eu
.sync
.status
= ha
->status
;
2838 ha
->dvr
.eu
.sync
.info
= ha
->info
;
2839 ha
->dvr
.eu
.sync
.hostdrive
= t
;
2840 if (ha
->status
>= 0x8000)
2841 gdth_store_event(ha
, ES_SYNC
, 0, &ha
->dvr
);
2843 gdth_store_event(ha
, ES_SYNC
, service
, &ha
->dvr
);
2846 /* sense buffer filled from controller firmware (DMA) */
2847 if (ha
->status
!= S_RAW_SCSI
|| ha
->info
>= 0x100) {
2848 scp
->result
= DID_BAD_TARGET
<< 16;
2850 scp
->result
= (DID_OK
<< 16) | ha
->info
;
2854 if (!cmndinfo
->wait_for_completion
)
2855 cmndinfo
->wait_for_completion
++;
2863 static char *async_cache_tab
[] = {
2864 /* 0*/ "\011\000\002\002\002\004\002\006\004"
2865 "GDT HA %u, service %u, async. status %u/%lu unknown",
2866 /* 1*/ "\011\000\002\002\002\004\002\006\004"
2867 "GDT HA %u, service %u, async. status %u/%lu unknown",
2868 /* 2*/ "\005\000\002\006\004"
2869 "GDT HA %u, Host Drive %lu not ready",
2870 /* 3*/ "\005\000\002\006\004"
2871 "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",
2872 /* 4*/ "\005\000\002\006\004"
2873 "GDT HA %u, mirror update on Host Drive %lu failed",
2874 /* 5*/ "\005\000\002\006\004"
2875 "GDT HA %u, Mirror Drive %lu failed",
2876 /* 6*/ "\005\000\002\006\004"
2877 "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",
2878 /* 7*/ "\005\000\002\006\004"
2879 "GDT HA %u, Host Drive %lu write protected",
2880 /* 8*/ "\005\000\002\006\004"
2881 "GDT HA %u, media changed in Host Drive %lu",
2882 /* 9*/ "\005\000\002\006\004"
2883 "GDT HA %u, Host Drive %lu is offline",
2884 /*10*/ "\005\000\002\006\004"
2885 "GDT HA %u, media change of Mirror Drive %lu",
2886 /*11*/ "\005\000\002\006\004"
2887 "GDT HA %u, Mirror Drive %lu is write protected",
2888 /*12*/ "\005\000\002\006\004"
2889 "GDT HA %u, general error on Host Drive %lu. Please check the devices of this drive!",
2890 /*13*/ "\007\000\002\006\002\010\002"
2891 "GDT HA %u, Array Drive %u: Cache Drive %u failed",
2892 /*14*/ "\005\000\002\006\002"
2893 "GDT HA %u, Array Drive %u: FAIL state entered",
2894 /*15*/ "\005\000\002\006\002"
2895 "GDT HA %u, Array Drive %u: error",
2896 /*16*/ "\007\000\002\006\002\010\002"
2897 "GDT HA %u, Array Drive %u: failed drive replaced by Cache Drive %u",
2898 /*17*/ "\005\000\002\006\002"
2899 "GDT HA %u, Array Drive %u: parity build failed",
2900 /*18*/ "\005\000\002\006\002"
2901 "GDT HA %u, Array Drive %u: drive rebuild failed",
2902 /*19*/ "\005\000\002\010\002"
2903 "GDT HA %u, Test of Hot Fix %u failed",
2904 /*20*/ "\005\000\002\006\002"
2905 "GDT HA %u, Array Drive %u: drive build finished successfully",
2906 /*21*/ "\005\000\002\006\002"
2907 "GDT HA %u, Array Drive %u: drive rebuild finished successfully",
2908 /*22*/ "\007\000\002\006\002\010\002"
2909 "GDT HA %u, Array Drive %u: Hot Fix %u activated",
2910 /*23*/ "\005\000\002\006\002"
2911 "GDT HA %u, Host Drive %u: processing of i/o aborted due to serious drive error",
2912 /*24*/ "\005\000\002\010\002"
2913 "GDT HA %u, mirror update on Cache Drive %u completed",
2914 /*25*/ "\005\000\002\010\002"
2915 "GDT HA %u, mirror update on Cache Drive %lu failed",
2916 /*26*/ "\005\000\002\006\002"
2917 "GDT HA %u, Array Drive %u: drive rebuild started",
2918 /*27*/ "\005\000\002\012\001"
2919 "GDT HA %u, Fault bus %u: SHELF OK detected",
2920 /*28*/ "\005\000\002\012\001"
2921 "GDT HA %u, Fault bus %u: SHELF not OK detected",
2922 /*29*/ "\007\000\002\012\001\013\001"
2923 "GDT HA %u, Fault bus %u, ID %u: Auto Hot Plug started",
2924 /*30*/ "\007\000\002\012\001\013\001"
2925 "GDT HA %u, Fault bus %u, ID %u: new disk detected",
2926 /*31*/ "\007\000\002\012\001\013\001"
2927 "GDT HA %u, Fault bus %u, ID %u: old disk detected",
2928 /*32*/ "\007\000\002\012\001\013\001"
2929 "GDT HA %u, Fault bus %u, ID %u: plugging an active disk is invalid",
2930 /*33*/ "\007\000\002\012\001\013\001"
2931 "GDT HA %u, Fault bus %u, ID %u: invalid device detected",
2932 /*34*/ "\011\000\002\012\001\013\001\006\004"
2933 "GDT HA %u, Fault bus %u, ID %u: insufficient disk capacity (%lu MB required)",
2934 /*35*/ "\007\000\002\012\001\013\001"
2935 "GDT HA %u, Fault bus %u, ID %u: disk write protected",
2936 /*36*/ "\007\000\002\012\001\013\001"
2937 "GDT HA %u, Fault bus %u, ID %u: disk not available",
2938 /*37*/ "\007\000\002\012\001\006\004"
2939 "GDT HA %u, Fault bus %u: swap detected (%lu)",
2940 /*38*/ "\007\000\002\012\001\013\001"
2941 "GDT HA %u, Fault bus %u, ID %u: Auto Hot Plug finished successfully",
2942 /*39*/ "\007\000\002\012\001\013\001"
2943 "GDT HA %u, Fault bus %u, ID %u: Auto Hot Plug aborted due to user Hot Plug",
2944 /*40*/ "\007\000\002\012\001\013\001"
2945 "GDT HA %u, Fault bus %u, ID %u: Auto Hot Plug aborted",
2946 /*41*/ "\007\000\002\012\001\013\001"
2947 "GDT HA %u, Fault bus %u, ID %u: Auto Hot Plug for Hot Fix started",
2948 /*42*/ "\005\000\002\006\002"
2949 "GDT HA %u, Array Drive %u: drive build started",
2950 /*43*/ "\003\000\002"
2951 "GDT HA %u, DRAM parity error detected",
2952 /*44*/ "\005\000\002\006\002"
2953 "GDT HA %u, Mirror Drive %u: update started",
2954 /*45*/ "\007\000\002\006\002\010\002"
2955 "GDT HA %u, Mirror Drive %u: Hot Fix %u activated",
2956 /*46*/ "\005\000\002\006\002"
2957 "GDT HA %u, Array Drive %u: no matching Pool Hot Fix Drive available",
2958 /*47*/ "\005\000\002\006\002"
2959 "GDT HA %u, Array Drive %u: Pool Hot Fix Drive available",
2960 /*48*/ "\005\000\002\006\002"
2961 "GDT HA %u, Mirror Drive %u: no matching Pool Hot Fix Drive available",
2962 /*49*/ "\005\000\002\006\002"
2963 "GDT HA %u, Mirror Drive %u: Pool Hot Fix Drive available",
2964 /*50*/ "\007\000\002\012\001\013\001"
2965 "GDT HA %u, SCSI bus %u, ID %u: IGNORE_WIDE_RESIDUE message received",
2966 /*51*/ "\005\000\002\006\002"
2967 "GDT HA %u, Array Drive %u: expand started",
2968 /*52*/ "\005\000\002\006\002"
2969 "GDT HA %u, Array Drive %u: expand finished successfully",
2970 /*53*/ "\005\000\002\006\002"
2971 "GDT HA %u, Array Drive %u: expand failed",
2972 /*54*/ "\003\000\002"
2973 "GDT HA %u, CPU temperature critical",
2974 /*55*/ "\003\000\002"
2975 "GDT HA %u, CPU temperature OK",
2976 /*56*/ "\005\000\002\006\004"
2977 "GDT HA %u, Host drive %lu created",
2978 /*57*/ "\005\000\002\006\002"
2979 "GDT HA %u, Array Drive %u: expand restarted",
2980 /*58*/ "\005\000\002\006\002"
2981 "GDT HA %u, Array Drive %u: expand stopped",
2982 /*59*/ "\005\000\002\010\002"
2983 "GDT HA %u, Mirror Drive %u: drive build quited",
2984 /*60*/ "\005\000\002\006\002"
2985 "GDT HA %u, Array Drive %u: parity build quited",
2986 /*61*/ "\005\000\002\006\002"
2987 "GDT HA %u, Array Drive %u: drive rebuild quited",
2988 /*62*/ "\005\000\002\006\002"
2989 "GDT HA %u, Array Drive %u: parity verify started",
2990 /*63*/ "\005\000\002\006\002"
2991 "GDT HA %u, Array Drive %u: parity verify done",
2992 /*64*/ "\005\000\002\006\002"
2993 "GDT HA %u, Array Drive %u: parity verify failed",
2994 /*65*/ "\005\000\002\006\002"
2995 "GDT HA %u, Array Drive %u: parity error detected",
2996 /*66*/ "\005\000\002\006\002"
2997 "GDT HA %u, Array Drive %u: parity verify quited",
2998 /*67*/ "\005\000\002\006\002"
2999 "GDT HA %u, Host Drive %u reserved",
3000 /*68*/ "\005\000\002\006\002"
3001 "GDT HA %u, Host Drive %u mounted and released",
3002 /*69*/ "\005\000\002\006\002"
3003 "GDT HA %u, Host Drive %u released",
3004 /*70*/ "\003\000\002"
3005 "GDT HA %u, DRAM error detected and corrected with ECC",
3006 /*71*/ "\003\000\002"
3007 "GDT HA %u, Uncorrectable DRAM error detected with ECC",
3008 /*72*/ "\011\000\002\012\001\013\001\014\001"
3009 "GDT HA %u, SCSI bus %u, ID %u, LUN %u: reassigning block",
3010 /*73*/ "\005\000\002\006\002"
3011 "GDT HA %u, Host drive %u resetted locally",
3012 /*74*/ "\005\000\002\006\002"
3013 "GDT HA %u, Host drive %u resetted remotely",
3014 /*75*/ "\003\000\002"
3015 "GDT HA %u, async. status 75 unknown",
3019 static int gdth_async_event(gdth_ha_str
*ha
)
3025 TRACE2(("gdth_async_event() ha %d serv %d\n",
3026 ha
->hanum
, ha
->service
));
3028 if (ha
->service
== SCREENSERVICE
) {
3029 if (ha
->status
== MSG_REQUEST
) {
3030 while (gdth_test_busy(ha
))
3032 cmdp
->Service
= SCREENSERVICE
;
3033 cmdp
->RequestBuffer
= SCREEN_CMND
;
3034 cmd_index
= gdth_get_cmd_index(ha
);
3036 cmdp
->OpCode
= GDT_READ
;
3037 cmdp
->BoardNode
= LOCALBOARD
;
3038 cmdp
->u
.screen
.reserved
= 0;
3039 cmdp
->u
.screen
.su
.msg
.msg_handle
= MSG_INV_HANDLE
;
3040 cmdp
->u
.screen
.su
.msg
.msg_addr
= ha
->msg_phys
;
3041 ha
->cmd_offs_dpmem
= 0;
3042 ha
->cmd_len
= GDTOFFSOF(gdth_cmd_str
,u
.screen
.su
.msg
.msg_addr
)
3045 gdth_copy_command(ha
);
3046 printk("[PCI %d/%d] ",(u16
)(ha
->brd_phys
>>8),
3047 (u16
)((ha
->brd_phys
>>3)&0x1f));
3048 gdth_release_event(ha
);
3052 if (ha
->type
== GDT_PCIMPR
&&
3053 (ha
->fw_vers
& 0xff) >= 0x1a) {
3055 ha
->dvr
.eu
.async
.ionode
= ha
->hanum
;
3056 ha
->dvr
.eu
.async
.status
= ha
->status
;
3057 /* severity and event_string already set! */
3059 ha
->dvr
.size
= sizeof(ha
->dvr
.eu
.async
);
3060 ha
->dvr
.eu
.async
.ionode
= ha
->hanum
;
3061 ha
->dvr
.eu
.async
.service
= ha
->service
;
3062 ha
->dvr
.eu
.async
.status
= ha
->status
;
3063 ha
->dvr
.eu
.async
.info
= ha
->info
;
3064 *(u32
*)ha
->dvr
.eu
.async
.scsi_coord
= ha
->info2
;
3066 gdth_store_event( ha
, ES_ASYNC
, ha
->service
, &ha
->dvr
);
3067 gdth_log_event( &ha
->dvr
, NULL
);
3069 /* new host drive from expand? */
3070 if (ha
->service
== CACHESERVICE
&& ha
->status
== 56) {
3071 TRACE2(("gdth_async_event(): new host drive %d created\n",
3073 /* gdth_analyse_hdrive(hanum, (u16)ha->info); */
3079 static void gdth_log_event(gdth_evt_data
*dvr
, char *buffer
)
3081 gdth_stackframe stack
;
3085 TRACE2(("gdth_log_event()\n"));
3086 if (dvr
->size
== 0) {
3087 if (buffer
== NULL
) {
3088 printk("Adapter %d: %s\n",dvr
->eu
.async
.ionode
,dvr
->event_string
);
3090 sprintf(buffer
,"Adapter %d: %s\n",
3091 dvr
->eu
.async
.ionode
,dvr
->event_string
);
3093 } else if (dvr
->eu
.async
.service
== CACHESERVICE
&&
3094 INDEX_OK(dvr
->eu
.async
.status
, async_cache_tab
)) {
3095 TRACE2(("GDT: Async. event cache service, event no.: %d\n",
3096 dvr
->eu
.async
.status
));
3098 f
= async_cache_tab
[dvr
->eu
.async
.status
];
3100 /* i: parameter to push, j: stack element to fill */
3101 for (j
=0,i
=1; i
< f
[0]; i
+=2) {
3104 stack
.b
[j
++] = *(u32
*)&dvr
->eu
.stream
[(int)f
[i
]];
3107 stack
.b
[j
++] = *(u16
*)&dvr
->eu
.stream
[(int)f
[i
]];
3110 stack
.b
[j
++] = *(u8
*)&dvr
->eu
.stream
[(int)f
[i
]];
3117 if (buffer
== NULL
) {
3118 printk(&f
[(int)f
[0]],stack
);
3121 sprintf(buffer
,&f
[(int)f
[0]],stack
);
3125 if (buffer
== NULL
) {
3126 printk("GDT HA %u, Unknown async. event service %d event no. %d\n",
3127 dvr
->eu
.async
.ionode
,dvr
->eu
.async
.service
,dvr
->eu
.async
.status
);
3129 sprintf(buffer
,"GDT HA %u, Unknown async. event service %d event no. %d",
3130 dvr
->eu
.async
.ionode
,dvr
->eu
.async
.service
,dvr
->eu
.async
.status
);
3135 #ifdef GDTH_STATISTICS
3136 static u8 gdth_timer_running
;
3138 static void gdth_timeout(struct timer_list
*unused
)
3141 struct scsi_cmnd
*nscp
;
3143 unsigned long flags
;
3145 if(unlikely(list_empty(&gdth_instances
))) {
3146 gdth_timer_running
= 0;
3150 ha
= list_first_entry(&gdth_instances
, gdth_ha_str
, list
);
3151 spin_lock_irqsave(&ha
->smp_lock
, flags
);
3153 for (act_stats
=0,i
=0; i
<GDTH_MAXCMDS
; ++i
)
3154 if (ha
->cmd_tab
[i
].cmnd
!= UNUSED_CMND
)
3158 nscp
=ha
->req_first
; nscp
; nscp
=(struct scsi_cmnd
*)nscp
->SCp
.ptr
)
3161 TRACE2(("gdth_to(): ints %d, ios %d, act_stats %d, act_rq %d\n",
3162 act_ints
, act_ios
, act_stats
, act_rq
));
3163 act_ints
= act_ios
= 0;
3165 gdth_timer
.expires
= jiffies
+ 30 * HZ
;
3166 add_timer(&gdth_timer
);
3167 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
3170 static void gdth_timer_init(void)
3172 if (gdth_timer_running
)
3174 gdth_timer_running
= 1;
3175 TRACE2(("gdth_detect(): Initializing timer !\n"));
3176 gdth_timer
.expires
= jiffies
+ HZ
;
3177 add_timer(&gdth_timer
);
3180 static inline void gdth_timer_init(void)
3185 static void __init
internal_setup(char *str
,int *ints
)
3188 char *cur_str
, *argv
;
3190 TRACE2(("internal_setup() str %s ints[0] %d\n",
3191 str
? str
:"NULL", ints
? ints
[0]:0));
3193 /* analyse string */
3195 while (argv
&& (cur_str
= strchr(argv
, ':'))) {
3196 int val
= 0, c
= *++cur_str
;
3198 if (c
== 'n' || c
== 'N')
3200 else if (c
== 'y' || c
== 'Y')
3203 val
= (int)simple_strtoul(cur_str
, NULL
, 0);
3205 if (!strncmp(argv
, "disable:", 8))
3207 else if (!strncmp(argv
, "reserve_mode:", 13))
3209 else if (!strncmp(argv
, "reverse_scan:", 13))
3211 else if (!strncmp(argv
, "hdr_channel:", 12))
3213 else if (!strncmp(argv
, "max_ids:", 8))
3215 else if (!strncmp(argv
, "rescan:", 7))
3217 else if (!strncmp(argv
, "shared_access:", 14))
3218 shared_access
= val
;
3219 else if (!strncmp(argv
, "reserve_list:", 13)) {
3220 reserve_list
[0] = val
;
3221 for (i
= 1; i
< MAX_RES_ARGS
; i
++) {
3222 cur_str
= strchr(cur_str
, ',');
3225 if (!isdigit((int)*++cur_str
)) {
3230 (int)simple_strtoul(cur_str
, NULL
, 0);
3238 if ((argv
= strchr(argv
, ',')))
3243 int __init
option_setup(char *str
)
3249 TRACE2(("option_setup() str %s\n", str
? str
:"NULL"));
3251 while (cur
&& isdigit(*cur
) && i
< MAXHA
) {
3252 ints
[i
++] = simple_strtoul(cur
, NULL
, 0);
3253 if ((cur
= strchr(cur
, ',')) != NULL
) cur
++;
3257 internal_setup(cur
, ints
);
3261 static const char *gdth_ctr_name(gdth_ha_str
*ha
)
3263 TRACE2(("gdth_ctr_name()\n"));
3265 if (ha
->type
== GDT_PCI
) {
3266 switch (ha
->pdev
->device
) {
3267 case PCI_DEVICE_ID_VORTEX_GDT60x0
:
3268 return("GDT6000/6020/6050");
3269 case PCI_DEVICE_ID_VORTEX_GDT6000B
:
3270 return("GDT6000B/6010");
3273 /* new controllers (GDT_PCINEW, GDT_PCIMPR, ..) use board_info IOCTL! */
3278 static const char *gdth_info(struct Scsi_Host
*shp
)
3280 gdth_ha_str
*ha
= shost_priv(shp
);
3282 TRACE2(("gdth_info()\n"));
3283 return ((const char *)ha
->binfo
.type_string
);
3286 static enum blk_eh_timer_return
gdth_timed_out(struct scsi_cmnd
*scp
)
3288 gdth_ha_str
*ha
= shost_priv(scp
->device
->host
);
3289 struct gdth_cmndinfo
*cmndinfo
= gdth_cmnd_priv(scp
);
3291 unsigned long flags
;
3292 enum blk_eh_timer_return retval
= BLK_EH_DONE
;
3294 TRACE(("%s() cmd 0x%x\n", scp
->cmnd
[0], __func__
));
3295 b
= scp
->device
->channel
;
3296 t
= scp
->device
->id
;
3299 * We don't really honor the command timeout, but we try to
3300 * honor 6 times of the actual command timeout! So reset the
3301 * timer if this is less than 6th timeout on this command!
3303 if (++cmndinfo
->timeout_count
< 6)
3304 retval
= BLK_EH_RESET_TIMER
;
3306 /* Reset the timeout if it is locked IO */
3307 spin_lock_irqsave(&ha
->smp_lock
, flags
);
3308 if ((b
!= ha
->virt_bus
&& ha
->raw
[BUS_L2P(ha
, b
)].lock
) ||
3309 (b
== ha
->virt_bus
&& t
< MAX_HDRIVES
&& ha
->hdr
[t
].lock
)) {
3310 TRACE2(("%s(): locked IO, reset timeout\n", __func__
));
3311 retval
= BLK_EH_RESET_TIMER
;
3313 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
3319 static int gdth_eh_bus_reset(struct scsi_cmnd
*scp
)
3321 gdth_ha_str
*ha
= shost_priv(scp
->device
->host
);
3323 unsigned long flags
;
3324 struct scsi_cmnd
*cmnd
;
3327 TRACE2(("gdth_eh_bus_reset()\n"));
3329 b
= scp
->device
->channel
;
3331 /* clear command tab */
3332 spin_lock_irqsave(&ha
->smp_lock
, flags
);
3333 for (i
= 0; i
< GDTH_MAXCMDS
; ++i
) {
3334 cmnd
= ha
->cmd_tab
[i
].cmnd
;
3335 if (!SPECIAL_SCP(cmnd
) && cmnd
->device
->channel
== b
)
3336 ha
->cmd_tab
[i
].cmnd
= UNUSED_CMND
;
3338 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
3340 if (b
== ha
->virt_bus
) {
3342 for (i
= 0; i
< MAX_HDRIVES
; ++i
) {
3343 if (ha
->hdr
[i
].present
) {
3344 spin_lock_irqsave(&ha
->smp_lock
, flags
);
3345 gdth_polling
= TRUE
;
3346 while (gdth_test_busy(ha
))
3348 if (gdth_internal_cmd(ha
, CACHESERVICE
,
3349 GDT_CLUST_RESET
, i
, 0, 0))
3350 ha
->hdr
[i
].cluster_type
&= ~CLUSTER_RESERVED
;
3351 gdth_polling
= FALSE
;
3352 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
3357 spin_lock_irqsave(&ha
->smp_lock
, flags
);
3358 for (i
= 0; i
< MAXID
; ++i
)
3359 ha
->raw
[BUS_L2P(ha
,b
)].io_cnt
[i
] = 0;
3360 gdth_polling
= TRUE
;
3361 while (gdth_test_busy(ha
))
3363 gdth_internal_cmd(ha
, SCSIRAWSERVICE
, GDT_RESET_BUS
,
3364 BUS_L2P(ha
,b
), 0, 0);
3365 gdth_polling
= FALSE
;
3366 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
3371 static int gdth_bios_param(struct scsi_device
*sdev
,struct block_device
*bdev
,sector_t cap
,int *ip
)
3374 gdth_ha_str
*ha
= shost_priv(sdev
->host
);
3375 struct scsi_device
*sd
;
3382 TRACE2(("gdth_bios_param() ha %d bus %d target %d\n", ha
->hanum
, b
, t
));
3384 if (b
!= ha
->virt_bus
|| ha
->hdr
[t
].heads
== 0) {
3385 /* raw device or host drive without mapping information */
3386 TRACE2(("Evaluate mapping\n"));
3387 gdth_eval_mapping(capacity
,&ip
[2],&ip
[0],&ip
[1]);
3389 ip
[0] = ha
->hdr
[t
].heads
;
3390 ip
[1] = ha
->hdr
[t
].secs
;
3391 ip
[2] = capacity
/ ip
[0] / ip
[1];
3394 TRACE2(("gdth_bios_param(): %d heads, %d secs, %d cyls\n",
3395 ip
[0],ip
[1],ip
[2]));
3400 static int gdth_queuecommand_lck(struct scsi_cmnd
*scp
,
3401 void (*done
)(struct scsi_cmnd
*))
3403 gdth_ha_str
*ha
= shost_priv(scp
->device
->host
);
3404 struct gdth_cmndinfo
*cmndinfo
;
3406 TRACE(("gdth_queuecommand() cmd 0x%x\n", scp
->cmnd
[0]));
3408 cmndinfo
= gdth_get_cmndinfo(ha
);
3411 scp
->scsi_done
= done
;
3412 cmndinfo
->timeout_count
= 0;
3413 cmndinfo
->priority
= DEFAULT_PRI
;
3415 return __gdth_queuecommand(ha
, scp
, cmndinfo
);
3418 static DEF_SCSI_QCMD(gdth_queuecommand
)
3420 static int __gdth_queuecommand(gdth_ha_str
*ha
, struct scsi_cmnd
*scp
,
3421 struct gdth_cmndinfo
*cmndinfo
)
3423 scp
->host_scribble
= (unsigned char *)cmndinfo
;
3424 cmndinfo
->wait_for_completion
= 1;
3425 cmndinfo
->phase
= -1;
3426 cmndinfo
->OpCode
= -1;
3428 #ifdef GDTH_STATISTICS
3432 gdth_putq(ha
, scp
, cmndinfo
->priority
);
3438 static int gdth_open(struct inode
*inode
, struct file
*filep
)
3442 mutex_lock(&gdth_mutex
);
3443 list_for_each_entry(ha
, &gdth_instances
, list
) {
3445 ha
->sdev
= scsi_get_host_dev(ha
->shost
);
3447 mutex_unlock(&gdth_mutex
);
3449 TRACE(("gdth_open()\n"));
3453 static int gdth_close(struct inode
*inode
, struct file
*filep
)
3455 TRACE(("gdth_close()\n"));
3459 static int ioc_event(void __user
*arg
)
3461 gdth_ioctl_event evt
;
3463 unsigned long flags
;
3465 if (copy_from_user(&evt
, arg
, sizeof(gdth_ioctl_event
)))
3467 ha
= gdth_find_ha(evt
.ionode
);
3471 if (evt
.erase
== 0xff) {
3472 if (evt
.event
.event_source
== ES_TEST
)
3473 evt
.event
.event_data
.size
=sizeof(evt
.event
.event_data
.eu
.test
);
3474 else if (evt
.event
.event_source
== ES_DRIVER
)
3475 evt
.event
.event_data
.size
=sizeof(evt
.event
.event_data
.eu
.driver
);
3476 else if (evt
.event
.event_source
== ES_SYNC
)
3477 evt
.event
.event_data
.size
=sizeof(evt
.event
.event_data
.eu
.sync
);
3479 evt
.event
.event_data
.size
=sizeof(evt
.event
.event_data
.eu
.async
);
3480 spin_lock_irqsave(&ha
->smp_lock
, flags
);
3481 gdth_store_event(ha
, evt
.event
.event_source
, evt
.event
.event_idx
,
3482 &evt
.event
.event_data
);
3483 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
3484 } else if (evt
.erase
== 0xfe) {
3485 gdth_clear_events();
3486 } else if (evt
.erase
== 0) {
3487 evt
.handle
= gdth_read_event(ha
, evt
.handle
, &evt
.event
);
3489 gdth_readapp_event(ha
, evt
.erase
, &evt
.event
);
3491 if (copy_to_user(arg
, &evt
, sizeof(gdth_ioctl_event
)))
3496 static int ioc_lockdrv(void __user
*arg
)
3498 gdth_ioctl_lockdrv ldrv
;
3500 unsigned long flags
;
3503 if (copy_from_user(&ldrv
, arg
, sizeof(gdth_ioctl_lockdrv
)))
3505 ha
= gdth_find_ha(ldrv
.ionode
);
3509 for (i
= 0; i
< ldrv
.drive_cnt
&& i
< MAX_HDRIVES
; ++i
) {
3511 if (j
>= MAX_HDRIVES
|| !ha
->hdr
[j
].present
)
3514 spin_lock_irqsave(&ha
->smp_lock
, flags
);
3515 ha
->hdr
[j
].lock
= 1;
3516 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
3517 gdth_wait_completion(ha
, ha
->bus_cnt
, j
);
3519 spin_lock_irqsave(&ha
->smp_lock
, flags
);
3520 ha
->hdr
[j
].lock
= 0;
3521 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
3528 static int ioc_resetdrv(void __user
*arg
, char *cmnd
)
3530 gdth_ioctl_reset res
;
3535 if (copy_from_user(&res
, arg
, sizeof(gdth_ioctl_reset
)) ||
3536 res
.number
>= MAX_HDRIVES
)
3538 ha
= gdth_find_ha(res
.ionode
);
3542 if (!ha
->hdr
[res
.number
].present
)
3544 memset(&cmd
, 0, sizeof(gdth_cmd_str
));
3545 cmd
.Service
= CACHESERVICE
;
3546 cmd
.OpCode
= GDT_CLUST_RESET
;
3547 if (ha
->cache_feat
& GDT_64BIT
)
3548 cmd
.u
.cache64
.DeviceNo
= res
.number
;
3550 cmd
.u
.cache
.DeviceNo
= res
.number
;
3552 rval
= __gdth_execute(ha
->sdev
, &cmd
, cmnd
, 30, NULL
);
3557 if (copy_to_user(arg
, &res
, sizeof(gdth_ioctl_reset
)))
3562 static void gdth_ioc_cacheservice(gdth_ha_str
*ha
, gdth_ioctl_general
*gen
,
3565 if (ha
->cache_feat
& GDT_64BIT
) {
3566 /* copy elements from 32-bit IOCTL structure */
3567 gen
->command
.u
.cache64
.BlockCnt
= gen
->command
.u
.cache
.BlockCnt
;
3568 gen
->command
.u
.cache64
.BlockNo
= gen
->command
.u
.cache
.BlockNo
;
3569 gen
->command
.u
.cache64
.DeviceNo
= gen
->command
.u
.cache
.DeviceNo
;
3571 if (ha
->cache_feat
& SCATTER_GATHER
) {
3572 gen
->command
.u
.cache64
.DestAddr
= (u64
)-1;
3573 gen
->command
.u
.cache64
.sg_canz
= 1;
3574 gen
->command
.u
.cache64
.sg_lst
[0].sg_ptr
= paddr
;
3575 gen
->command
.u
.cache64
.sg_lst
[0].sg_len
= gen
->data_len
;
3576 gen
->command
.u
.cache64
.sg_lst
[1].sg_len
= 0;
3578 gen
->command
.u
.cache64
.DestAddr
= paddr
;
3579 gen
->command
.u
.cache64
.sg_canz
= 0;
3582 if (ha
->cache_feat
& SCATTER_GATHER
) {
3583 gen
->command
.u
.cache
.DestAddr
= 0xffffffff;
3584 gen
->command
.u
.cache
.sg_canz
= 1;
3585 gen
->command
.u
.cache
.sg_lst
[0].sg_ptr
= (u32
)paddr
;
3586 gen
->command
.u
.cache
.sg_lst
[0].sg_len
= gen
->data_len
;
3587 gen
->command
.u
.cache
.sg_lst
[1].sg_len
= 0;
3589 gen
->command
.u
.cache
.DestAddr
= paddr
;
3590 gen
->command
.u
.cache
.sg_canz
= 0;
3595 static void gdth_ioc_scsiraw(gdth_ha_str
*ha
, gdth_ioctl_general
*gen
,
3598 if (ha
->raw_feat
& GDT_64BIT
) {
3599 /* copy elements from 32-bit IOCTL structure */
3602 gen
->command
.u
.raw64
.sense_len
= gen
->command
.u
.raw
.sense_len
;
3603 gen
->command
.u
.raw64
.bus
= gen
->command
.u
.raw
.bus
;
3604 gen
->command
.u
.raw64
.lun
= gen
->command
.u
.raw
.lun
;
3605 gen
->command
.u
.raw64
.target
= gen
->command
.u
.raw
.target
;
3606 memcpy(cmd
, gen
->command
.u
.raw
.cmd
, 16);
3607 memcpy(gen
->command
.u
.raw64
.cmd
, cmd
, 16);
3608 gen
->command
.u
.raw64
.clen
= gen
->command
.u
.raw
.clen
;
3609 gen
->command
.u
.raw64
.sdlen
= gen
->command
.u
.raw
.sdlen
;
3610 gen
->command
.u
.raw64
.direction
= gen
->command
.u
.raw
.direction
;
3613 if (ha
->raw_feat
& SCATTER_GATHER
) {
3614 gen
->command
.u
.raw64
.sdata
= (u64
)-1;
3615 gen
->command
.u
.raw64
.sg_ranz
= 1;
3616 gen
->command
.u
.raw64
.sg_lst
[0].sg_ptr
= paddr
;
3617 gen
->command
.u
.raw64
.sg_lst
[0].sg_len
= gen
->data_len
;
3618 gen
->command
.u
.raw64
.sg_lst
[1].sg_len
= 0;
3620 gen
->command
.u
.raw64
.sdata
= paddr
;
3621 gen
->command
.u
.raw64
.sg_ranz
= 0;
3624 gen
->command
.u
.raw64
.sense_data
= paddr
+ gen
->data_len
;
3626 if (ha
->raw_feat
& SCATTER_GATHER
) {
3627 gen
->command
.u
.raw
.sdata
= 0xffffffff;
3628 gen
->command
.u
.raw
.sg_ranz
= 1;
3629 gen
->command
.u
.raw
.sg_lst
[0].sg_ptr
= (u32
)paddr
;
3630 gen
->command
.u
.raw
.sg_lst
[0].sg_len
= gen
->data_len
;
3631 gen
->command
.u
.raw
.sg_lst
[1].sg_len
= 0;
3633 gen
->command
.u
.raw
.sdata
= paddr
;
3634 gen
->command
.u
.raw
.sg_ranz
= 0;
3637 gen
->command
.u
.raw
.sense_data
= (u32
)paddr
+ gen
->data_len
;
3641 static int ioc_general(void __user
*arg
, char *cmnd
)
3643 gdth_ioctl_general gen
;
3649 if (copy_from_user(&gen
, arg
, sizeof(gdth_ioctl_general
)))
3651 ha
= gdth_find_ha(gen
.ionode
);
3655 if (gen
.data_len
> INT_MAX
)
3657 if (gen
.sense_len
> INT_MAX
)
3659 if (gen
.data_len
+ gen
.sense_len
> INT_MAX
)
3662 if (gen
.data_len
+ gen
.sense_len
> 0) {
3663 buf
= dma_alloc_coherent(&ha
->pdev
->dev
,
3664 gen
.data_len
+ gen
.sense_len
, &paddr
,
3670 if (copy_from_user(buf
, arg
+ sizeof(gdth_ioctl_general
),
3671 gen
.data_len
+ gen
.sense_len
))
3674 if (gen
.command
.OpCode
== GDT_IOCTL
)
3675 gen
.command
.u
.ioctl
.p_param
= paddr
;
3676 else if (gen
.command
.Service
== CACHESERVICE
)
3677 gdth_ioc_cacheservice(ha
, &gen
, paddr
);
3678 else if (gen
.command
.Service
== SCSIRAWSERVICE
)
3679 gdth_ioc_scsiraw(ha
, &gen
, paddr
);
3684 rval
= __gdth_execute(ha
->sdev
, &gen
.command
, cmnd
, gen
.timeout
,
3691 if (copy_to_user(arg
+ sizeof(gdth_ioctl_general
), buf
,
3692 gen
.data_len
+ gen
.sense_len
))
3694 if (copy_to_user(arg
, &gen
,
3695 sizeof(gdth_ioctl_general
) - sizeof(gdth_cmd_str
)))
3700 dma_free_coherent(&ha
->pdev
->dev
, gen
.data_len
+ gen
.sense_len
, buf
,
3705 static int ioc_hdrlist(void __user
*arg
, char *cmnd
)
3707 gdth_ioctl_rescan
*rsc
;
3712 u32 cluster_type
= 0;
3714 rsc
= kmalloc(sizeof(*rsc
), GFP_KERNEL
);
3715 cmd
= kmalloc(sizeof(*cmd
), GFP_KERNEL
);
3719 if (copy_from_user(rsc
, arg
, sizeof(gdth_ioctl_rescan
)) ||
3720 (NULL
== (ha
= gdth_find_ha(rsc
->ionode
)))) {
3724 memset(cmd
, 0, sizeof(gdth_cmd_str
));
3726 for (i
= 0; i
< MAX_HDRIVES
; ++i
) {
3727 if (!ha
->hdr
[i
].present
) {
3728 rsc
->hdr_list
[i
].bus
= 0xff;
3731 rsc
->hdr_list
[i
].bus
= ha
->virt_bus
;
3732 rsc
->hdr_list
[i
].target
= i
;
3733 rsc
->hdr_list
[i
].lun
= 0;
3734 rsc
->hdr_list
[i
].cluster_type
= ha
->hdr
[i
].cluster_type
;
3735 if (ha
->hdr
[i
].cluster_type
& CLUSTER_DRIVE
) {
3736 cmd
->Service
= CACHESERVICE
;
3737 cmd
->OpCode
= GDT_CLUST_INFO
;
3738 if (ha
->cache_feat
& GDT_64BIT
)
3739 cmd
->u
.cache64
.DeviceNo
= i
;
3741 cmd
->u
.cache
.DeviceNo
= i
;
3742 if (__gdth_execute(ha
->sdev
, cmd
, cmnd
, 30, &cluster_type
) == S_OK
)
3743 rsc
->hdr_list
[i
].cluster_type
= cluster_type
;
3747 if (copy_to_user(arg
, rsc
, sizeof(gdth_ioctl_rescan
)))
3758 static int ioc_rescan(void __user
*arg
, char *cmnd
)
3760 gdth_ioctl_rescan
*rsc
;
3762 u16 i
, status
, hdr_cnt
;
3764 int cyls
, hds
, secs
;
3766 unsigned long flags
;
3769 rsc
= kmalloc(sizeof(*rsc
), GFP_KERNEL
);
3770 cmd
= kmalloc(sizeof(*cmd
), GFP_KERNEL
);
3774 if (copy_from_user(rsc
, arg
, sizeof(gdth_ioctl_rescan
)) ||
3775 (NULL
== (ha
= gdth_find_ha(rsc
->ionode
)))) {
3779 memset(cmd
, 0, sizeof(gdth_cmd_str
));
3781 if (rsc
->flag
== 0) {
3782 /* old method: re-init. cache service */
3783 cmd
->Service
= CACHESERVICE
;
3784 if (ha
->cache_feat
& GDT_64BIT
) {
3785 cmd
->OpCode
= GDT_X_INIT_HOST
;
3786 cmd
->u
.cache64
.DeviceNo
= LINUX_OS
;
3788 cmd
->OpCode
= GDT_INIT
;
3789 cmd
->u
.cache
.DeviceNo
= LINUX_OS
;
3792 status
= __gdth_execute(ha
->sdev
, cmd
, cmnd
, 30, &info
);
3794 hdr_cnt
= (status
== S_OK
? (u16
)info
: 0);
3800 for (; i
< hdr_cnt
&& i
< MAX_HDRIVES
; ++i
) {
3801 cmd
->Service
= CACHESERVICE
;
3802 cmd
->OpCode
= GDT_INFO
;
3803 if (ha
->cache_feat
& GDT_64BIT
)
3804 cmd
->u
.cache64
.DeviceNo
= i
;
3806 cmd
->u
.cache
.DeviceNo
= i
;
3808 status
= __gdth_execute(ha
->sdev
, cmd
, cmnd
, 30, &info
);
3810 spin_lock_irqsave(&ha
->smp_lock
, flags
);
3811 rsc
->hdr_list
[i
].bus
= ha
->virt_bus
;
3812 rsc
->hdr_list
[i
].target
= i
;
3813 rsc
->hdr_list
[i
].lun
= 0;
3814 if (status
!= S_OK
) {
3815 ha
->hdr
[i
].present
= FALSE
;
3817 ha
->hdr
[i
].present
= TRUE
;
3818 ha
->hdr
[i
].size
= info
;
3819 /* evaluate mapping */
3820 ha
->hdr
[i
].size
&= ~SECS32
;
3821 gdth_eval_mapping(ha
->hdr
[i
].size
,&cyls
,&hds
,&secs
);
3822 ha
->hdr
[i
].heads
= hds
;
3823 ha
->hdr
[i
].secs
= secs
;
3825 ha
->hdr
[i
].size
= cyls
* hds
* secs
;
3827 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
3831 /* extended info, if GDT_64BIT, for drives > 2 TB */
3832 /* but we need ha->info2, not yet stored in scp->SCp */
3834 /* devtype, cluster info, R/W attribs */
3835 cmd
->Service
= CACHESERVICE
;
3836 cmd
->OpCode
= GDT_DEVTYPE
;
3837 if (ha
->cache_feat
& GDT_64BIT
)
3838 cmd
->u
.cache64
.DeviceNo
= i
;
3840 cmd
->u
.cache
.DeviceNo
= i
;
3842 status
= __gdth_execute(ha
->sdev
, cmd
, cmnd
, 30, &info
);
3844 spin_lock_irqsave(&ha
->smp_lock
, flags
);
3845 ha
->hdr
[i
].devtype
= (status
== S_OK
? (u16
)info
: 0);
3846 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
3848 cmd
->Service
= CACHESERVICE
;
3849 cmd
->OpCode
= GDT_CLUST_INFO
;
3850 if (ha
->cache_feat
& GDT_64BIT
)
3851 cmd
->u
.cache64
.DeviceNo
= i
;
3853 cmd
->u
.cache
.DeviceNo
= i
;
3855 status
= __gdth_execute(ha
->sdev
, cmd
, cmnd
, 30, &info
);
3857 spin_lock_irqsave(&ha
->smp_lock
, flags
);
3858 ha
->hdr
[i
].cluster_type
=
3859 ((status
== S_OK
&& !shared_access
) ? (u16
)info
: 0);
3860 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
3861 rsc
->hdr_list
[i
].cluster_type
= ha
->hdr
[i
].cluster_type
;
3863 cmd
->Service
= CACHESERVICE
;
3864 cmd
->OpCode
= GDT_RW_ATTRIBS
;
3865 if (ha
->cache_feat
& GDT_64BIT
)
3866 cmd
->u
.cache64
.DeviceNo
= i
;
3868 cmd
->u
.cache
.DeviceNo
= i
;
3870 status
= __gdth_execute(ha
->sdev
, cmd
, cmnd
, 30, &info
);
3872 spin_lock_irqsave(&ha
->smp_lock
, flags
);
3873 ha
->hdr
[i
].rw_attribs
= (status
== S_OK
? (u16
)info
: 0);
3874 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
3877 if (copy_to_user(arg
, rsc
, sizeof(gdth_ioctl_rescan
)))
3888 static int gdth_ioctl(struct file
*filep
, unsigned int cmd
, unsigned long arg
)
3891 struct scsi_cmnd
*scp
;
3892 unsigned long flags
;
3893 char cmnd
[MAX_COMMAND_SIZE
];
3894 void __user
*argp
= (void __user
*)arg
;
3896 memset(cmnd
, 0xff, 12);
3898 TRACE(("gdth_ioctl() cmd 0x%x\n", cmd
));
3901 case GDTIOCTL_CTRCNT
:
3903 int cnt
= gdth_ctr_count
;
3904 if (put_user(cnt
, (int __user
*)argp
))
3909 case GDTIOCTL_DRVERS
:
3911 int ver
= (GDTH_VERSION
<<8) | GDTH_SUBVERSION
;
3912 if (put_user(ver
, (int __user
*)argp
))
3917 case GDTIOCTL_OSVERS
:
3919 gdth_ioctl_osvers osv
;
3921 osv
.version
= (u8
)(LINUX_VERSION_CODE
>> 16);
3922 osv
.subversion
= (u8
)(LINUX_VERSION_CODE
>> 8);
3923 osv
.revision
= (u16
)(LINUX_VERSION_CODE
& 0xff);
3924 if (copy_to_user(argp
, &osv
, sizeof(gdth_ioctl_osvers
)))
3929 case GDTIOCTL_CTRTYPE
:
3931 gdth_ioctl_ctrtype ctrt
;
3933 if (copy_from_user(&ctrt
, argp
, sizeof(gdth_ioctl_ctrtype
)) ||
3934 (NULL
== (ha
= gdth_find_ha(ctrt
.ionode
))))
3937 if (ha
->type
!= GDT_PCIMPR
) {
3938 ctrt
.type
= (u8
)((ha
->stype
<<4) + 6);
3940 ctrt
.type
= (ha
->oem_id
== OEM_ID_INTEL
? 0xfd : 0xfe);
3941 if (ha
->stype
>= 0x300)
3942 ctrt
.ext_type
= 0x6000 | ha
->pdev
->subsystem_device
;
3944 ctrt
.ext_type
= 0x6000 | ha
->stype
;
3946 ctrt
.device_id
= ha
->pdev
->device
;
3947 ctrt
.sub_device_id
= ha
->pdev
->subsystem_device
;
3948 ctrt
.info
= ha
->brd_phys
;
3949 ctrt
.oem_id
= ha
->oem_id
;
3950 if (copy_to_user(argp
, &ctrt
, sizeof(gdth_ioctl_ctrtype
)))
3955 case GDTIOCTL_GENERAL
:
3956 return ioc_general(argp
, cmnd
);
3958 case GDTIOCTL_EVENT
:
3959 return ioc_event(argp
);
3961 case GDTIOCTL_LOCKDRV
:
3962 return ioc_lockdrv(argp
);
3964 case GDTIOCTL_LOCKCHN
:
3966 gdth_ioctl_lockchn lchn
;
3969 if (copy_from_user(&lchn
, argp
, sizeof(gdth_ioctl_lockchn
)) ||
3970 (NULL
== (ha
= gdth_find_ha(lchn
.ionode
))))
3974 if (i
< ha
->bus_cnt
) {
3976 spin_lock_irqsave(&ha
->smp_lock
, flags
);
3977 ha
->raw
[i
].lock
= 1;
3978 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
3979 for (j
= 0; j
< ha
->tid_cnt
; ++j
)
3980 gdth_wait_completion(ha
, i
, j
);
3982 spin_lock_irqsave(&ha
->smp_lock
, flags
);
3983 ha
->raw
[i
].lock
= 0;
3984 spin_unlock_irqrestore(&ha
->smp_lock
, flags
);
3985 for (j
= 0; j
< ha
->tid_cnt
; ++j
)
3992 case GDTIOCTL_RESCAN
:
3993 return ioc_rescan(argp
, cmnd
);
3995 case GDTIOCTL_HDRLIST
:
3996 return ioc_hdrlist(argp
, cmnd
);
3998 case GDTIOCTL_RESET_BUS
:
4000 gdth_ioctl_reset res
;
4003 if (copy_from_user(&res
, argp
, sizeof(gdth_ioctl_reset
)) ||
4004 (NULL
== (ha
= gdth_find_ha(res
.ionode
))))
4007 scp
= kzalloc(sizeof(*scp
), GFP_KERNEL
);
4010 scp
->device
= ha
->sdev
;
4012 scp
->device
->channel
= res
.number
;
4013 rval
= gdth_eh_bus_reset(scp
);
4014 res
.status
= (rval
== SUCCESS
? S_OK
: S_GENERR
);
4017 if (copy_to_user(argp
, &res
, sizeof(gdth_ioctl_reset
)))
4022 case GDTIOCTL_RESET_DRV
:
4023 return ioc_resetdrv(argp
, cmnd
);
4031 static long gdth_unlocked_ioctl(struct file
*file
, unsigned int cmd
,
4036 mutex_lock(&gdth_mutex
);
4037 ret
= gdth_ioctl(file
, cmd
, arg
);
4038 mutex_unlock(&gdth_mutex
);
4044 static void gdth_flush(gdth_ha_str
*ha
)
4047 gdth_cmd_str gdtcmd
;
4048 char cmnd
[MAX_COMMAND_SIZE
];
4049 memset(cmnd
, 0xff, MAX_COMMAND_SIZE
);
4051 TRACE2(("gdth_flush() hanum %d\n", ha
->hanum
));
4053 for (i
= 0; i
< MAX_HDRIVES
; ++i
) {
4054 if (ha
->hdr
[i
].present
) {
4055 gdtcmd
.BoardNode
= LOCALBOARD
;
4056 gdtcmd
.Service
= CACHESERVICE
;
4057 gdtcmd
.OpCode
= GDT_FLUSH
;
4058 if (ha
->cache_feat
& GDT_64BIT
) {
4059 gdtcmd
.u
.cache64
.DeviceNo
= i
;
4060 gdtcmd
.u
.cache64
.BlockNo
= 1;
4061 gdtcmd
.u
.cache64
.sg_canz
= 0;
4063 gdtcmd
.u
.cache
.DeviceNo
= i
;
4064 gdtcmd
.u
.cache
.BlockNo
= 1;
4065 gdtcmd
.u
.cache
.sg_canz
= 0;
4067 TRACE2(("gdth_flush(): flush ha %d drive %d\n", ha
->hanum
, i
));
4069 gdth_execute(ha
->shost
, &gdtcmd
, cmnd
, 30, NULL
);
4075 static int gdth_slave_configure(struct scsi_device
*sdev
)
4077 sdev
->skip_ms_page_3f
= 1;
4078 sdev
->skip_ms_page_8
= 1;
4082 static struct scsi_host_template gdth_template
= {
4083 .name
= "GDT SCSI Disk Array Controller",
4085 .queuecommand
= gdth_queuecommand
,
4086 .eh_bus_reset_handler
= gdth_eh_bus_reset
,
4087 .slave_configure
= gdth_slave_configure
,
4088 .bios_param
= gdth_bios_param
,
4089 .show_info
= gdth_show_info
,
4090 .write_info
= gdth_set_info
,
4091 .eh_timed_out
= gdth_timed_out
,
4092 .proc_name
= "gdth",
4093 .can_queue
= GDTH_MAXCMDS
,
4095 .sg_tablesize
= GDTH_MAXSG
,
4096 .cmd_per_lun
= GDTH_MAXC_P_L
,
4097 .unchecked_isa_dma
= 1,
4101 static int gdth_pci_probe_one(gdth_pci_str
*pcistr
, gdth_ha_str
**ha_out
)
4103 struct Scsi_Host
*shp
;
4105 dma_addr_t scratch_dma_handle
= 0;
4107 struct pci_dev
*pdev
= pcistr
->pdev
;
4111 shp
= scsi_host_alloc(&gdth_template
, sizeof(gdth_ha_str
));
4114 ha
= shost_priv(shp
);
4117 if (!gdth_init_pci(pdev
, pcistr
, ha
))
4120 /* controller found and initialized */
4121 printk("Configuring GDT-PCI HA at %d/%d IRQ %u\n",
4123 PCI_SLOT(pdev
->devfn
),
4126 error
= request_irq(ha
->irq
, gdth_interrupt
,
4127 IRQF_SHARED
, "gdth", ha
);
4129 printk("GDT-PCI: Unable to allocate IRQ\n");
4133 shp
->unchecked_isa_dma
= 0;
4135 shp
->dma_channel
= 0xff;
4137 ha
->hanum
= gdth_ctr_count
++;
4140 ha
->pccb
= &ha
->cmdext
;
4145 ha
->pscratch
= dma_alloc_coherent(&ha
->pdev
->dev
, GDTH_SCRATCH
,
4146 &scratch_dma_handle
, GFP_KERNEL
);
4149 ha
->scratch_phys
= scratch_dma_handle
;
4151 ha
->pmsg
= dma_alloc_coherent(&ha
->pdev
->dev
, sizeof(gdth_msg_str
),
4152 &scratch_dma_handle
, GFP_KERNEL
);
4154 goto out_free_pscratch
;
4155 ha
->msg_phys
= scratch_dma_handle
;
4157 ha
->scratch_busy
= FALSE
;
4158 ha
->req_first
= NULL
;
4159 ha
->tid_cnt
= pdev
->device
>= 0x200 ? MAXID
: MAX_HDRIVES
;
4160 if (max_ids
> 0 && max_ids
< ha
->tid_cnt
)
4161 ha
->tid_cnt
= max_ids
;
4162 for (i
= 0; i
< GDTH_MAXCMDS
; ++i
)
4163 ha
->cmd_tab
[i
].cmnd
= UNUSED_CMND
;
4164 ha
->scan_mode
= rescan
? 0x10 : 0;
4167 if (!gdth_search_drives(ha
)) {
4168 printk("GDT-PCI %d: Error during device scan\n", ha
->hanum
);
4172 if (hdr_channel
< 0 || hdr_channel
> ha
->bus_cnt
)
4173 hdr_channel
= ha
->bus_cnt
;
4174 ha
->virt_bus
= hdr_channel
;
4176 /* 64-bit DMA only supported from FW >= x.43 */
4177 if (!(ha
->cache_feat
& ha
->raw_feat
& ha
->screen_feat
& GDT_64BIT
) ||
4178 !ha
->dma64_support
) {
4179 if (dma_set_mask(&pdev
->dev
, DMA_BIT_MASK(32))) {
4180 printk(KERN_WARNING
"GDT-PCI %d: "
4181 "Unable to set 32-bit DMA\n", ha
->hanum
);
4185 shp
->max_cmd_len
= 16;
4186 if (!dma_set_mask(&pdev
->dev
, DMA_BIT_MASK(64))) {
4187 printk("GDT-PCI %d: 64-bit DMA enabled\n", ha
->hanum
);
4188 } else if (dma_set_mask(&pdev
->dev
, DMA_BIT_MASK(32))) {
4189 printk(KERN_WARNING
"GDT-PCI %d: "
4190 "Unable to set 64/32-bit DMA\n", ha
->hanum
);
4195 shp
->max_id
= ha
->tid_cnt
;
4196 shp
->max_lun
= MAXLUN
;
4197 shp
->max_channel
= ha
->bus_cnt
;
4199 spin_lock_init(&ha
->smp_lock
);
4200 gdth_enable_int(ha
);
4202 error
= scsi_add_host(shp
, &pdev
->dev
);
4205 list_add_tail(&ha
->list
, &gdth_instances
);
4207 pci_set_drvdata(ha
->pdev
, ha
);
4210 scsi_scan_host(shp
);
4217 dma_free_coherent(&ha
->pdev
->dev
, sizeof(gdth_msg_str
),
4218 ha
->pmsg
, ha
->msg_phys
);
4220 dma_free_coherent(&ha
->pdev
->dev
, GDTH_SCRATCH
,
4221 ha
->pscratch
, ha
->scratch_phys
);
4223 free_irq(ha
->irq
, ha
);
4230 static void gdth_remove_one(gdth_ha_str
*ha
)
4232 struct Scsi_Host
*shp
= ha
->shost
;
4234 TRACE2(("gdth_remove_one()\n"));
4236 scsi_remove_host(shp
);
4241 scsi_free_host_dev(ha
->sdev
);
4246 free_irq(shp
->irq
,ha
);
4249 dma_free_coherent(&ha
->pdev
->dev
, GDTH_SCRATCH
,
4250 ha
->pscratch
, ha
->scratch_phys
);
4252 dma_free_coherent(&ha
->pdev
->dev
, sizeof(gdth_msg_str
),
4253 ha
->pmsg
, ha
->msg_phys
);
4255 dma_unmap_single(&ha
->pdev
->dev
, ha
->ccb_phys
,
4256 sizeof(gdth_cmd_str
), DMA_BIDIRECTIONAL
);
4261 static int gdth_halt(struct notifier_block
*nb
, unsigned long event
, void *buf
)
4265 TRACE2(("gdth_halt() event %d\n", (int)event
));
4266 if (event
!= SYS_RESTART
&& event
!= SYS_HALT
&& event
!= SYS_POWER_OFF
)
4269 list_for_each_entry(ha
, &gdth_instances
, list
)
4275 static struct notifier_block gdth_notifier
= {
4279 static int __init
gdth_init(void)
4282 printk("GDT-HA: Controller driver disabled from"
4283 " command line !\n");
4287 printk("GDT-HA: Storage RAID Controller Driver. Version: %s\n",
4290 /* initializations */
4291 gdth_polling
= TRUE
;
4292 gdth_clear_events();
4293 timer_setup(&gdth_timer
, gdth_timeout
, 0);
4295 /* scanning for PCI controllers */
4296 if (pci_register_driver(&gdth_pci_driver
)) {
4299 list_for_each_entry(ha
, &gdth_instances
, list
)
4300 gdth_remove_one(ha
);
4304 TRACE2(("gdth_detect() %d controller detected\n", gdth_ctr_count
));
4306 major
= register_chrdev(0,"gdth", &gdth_fops
);
4307 register_reboot_notifier(&gdth_notifier
);
4308 gdth_polling
= FALSE
;
4312 static void __exit
gdth_exit(void)
4316 unregister_chrdev(major
, "gdth");
4317 unregister_reboot_notifier(&gdth_notifier
);
4319 #ifdef GDTH_STATISTICS
4320 del_timer_sync(&gdth_timer
);
4323 pci_unregister_driver(&gdth_pci_driver
);
4325 list_for_each_entry(ha
, &gdth_instances
, list
)
4326 gdth_remove_one(ha
);
4329 module_init(gdth_init
);
4330 module_exit(gdth_exit
);
4333 __setup("gdth=", option_setup
);