2 * Adaptec AAC series RAID controller driver
3 * (c) Copyright 2001 Red Hat Inc. <alan@redhat.com>
5 * based on the old aacraid driver that is..
6 * Adaptec aacraid device driver for Linux.
8 * Copyright (c) 2000 Adaptec, Inc. (aacraid@adaptec.com)
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2, or (at your option)
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; see the file COPYING. If not, write to
22 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
27 * Abstract: This supports the initialization of the host adapter commuication interface.
28 * This is a platform dependent module for the pci cyclone board.
32 #include <linux/kernel.h>
33 #include <linux/init.h>
34 #include <linux/types.h>
35 #include <linux/sched.h>
36 #include <linux/pci.h>
37 #include <linux/spinlock.h>
38 #include <linux/slab.h>
39 #include <linux/blkdev.h>
40 #include <linux/completion.h>
42 #include <scsi/scsi_host.h>
43 #include <asm/semaphore.h>
47 struct aac_common aac_config
= {
51 static int aac_alloc_comm(struct aac_dev
*dev
, void **commaddr
, unsigned long commsize
, unsigned long commalign
)
54 unsigned long size
, align
;
55 const unsigned long fibsize
= 4096;
56 const unsigned long printfbufsiz
= 256;
57 struct aac_init
*init
;
60 size
= fibsize
+ sizeof(struct aac_init
) + commsize
+ commalign
+ printfbufsiz
;
63 base
= pci_alloc_consistent(dev
->pdev
, size
, &phys
);
67 printk(KERN_ERR
"aacraid: unable to create mapping.\n");
70 dev
->comm_addr
= (void *)base
;
71 dev
->comm_phys
= phys
;
72 dev
->comm_size
= size
;
74 dev
->init
= (struct aac_init
*)(base
+ fibsize
);
75 dev
->init_pa
= phys
+ fibsize
;
79 init
->InitStructRevision
= cpu_to_le32(ADAPTER_INIT_STRUCT_REVISION
);
80 if (dev
->max_fib_size
!= sizeof(struct hw_fib
))
81 init
->InitStructRevision
= cpu_to_le32(ADAPTER_INIT_STRUCT_REVISION_4
);
82 init
->MiniPortRevision
= cpu_to_le32(Sa_MINIPORT_REVISION
);
83 init
->fsrev
= cpu_to_le32(dev
->fsrev
);
86 * Adapter Fibs are the first thing allocated so that they
89 dev
->aif_base_va
= (struct hw_fib
*)base
;
91 init
->AdapterFibsVirtualAddress
= 0;
92 init
->AdapterFibsPhysicalAddress
= cpu_to_le32((u32
)phys
);
93 init
->AdapterFibsSize
= cpu_to_le32(fibsize
);
94 init
->AdapterFibAlign
= cpu_to_le32(sizeof(struct hw_fib
));
96 * number of 4k pages of host physical memory. The aacraid fw needs
97 * this number to be less than 4gb worth of pages. num_physpages is in
98 * system page units. New firmware doesn't have any issues with the
99 * mapping system, but older Firmware did, and had *troubles* dealing
100 * with the math overloading past 32 bits, thus we must limit this
103 * This assumes the memory is mapped zero->n, which isnt
104 * always true on real computers. It also has some slight problems
105 * with the GART on x86-64. I've btw never tried DMA from PCI space
106 * on this platform but don't be surprised if its problematic.
108 #ifndef CONFIG_GART_IOMMU
109 if ((num_physpages
<< (PAGE_SHIFT
- 12)) <= AAC_MAX_HOSTPHYSMEMPAGES
) {
110 init
->HostPhysMemPages
=
111 cpu_to_le32(num_physpages
<< (PAGE_SHIFT
-12));
115 init
->HostPhysMemPages
= cpu_to_le32(AAC_MAX_HOSTPHYSMEMPAGES
);
119 if (dev
->new_comm_interface
) {
120 init
->InitFlags
= cpu_to_le32(INITFLAGS_NEW_COMM_SUPPORTED
);
121 dprintk((KERN_WARNING
"aacraid: New Comm Interface enabled\n"));
123 init
->MaxIoCommands
= cpu_to_le32(dev
->scsi_host_ptr
->can_queue
+ AAC_NUM_MGT_FIB
);
124 init
->MaxIoSize
= cpu_to_le32(dev
->scsi_host_ptr
->max_sectors
<< 9);
125 init
->MaxFibSize
= cpu_to_le32(dev
->max_fib_size
);
128 * Increment the base address by the amount already used
130 base
= base
+ fibsize
+ sizeof(struct aac_init
);
131 phys
= (dma_addr_t
)((ulong
)phys
+ fibsize
+ sizeof(struct aac_init
));
133 * Align the beginning of Headers to commalign
135 align
= (commalign
- ((unsigned long)(base
) & (commalign
- 1)));
139 * Fill in addresses of the Comm Area Headers and Queues
142 init
->CommHeaderAddress
= cpu_to_le32((u32
)phys
);
144 * Increment the base address by the size of the CommArea
146 base
= base
+ commsize
;
147 phys
= phys
+ commsize
;
149 * Place the Printf buffer area after the Fast I/O comm area.
151 dev
->printfbuf
= (void *)base
;
152 init
->printfbuf
= cpu_to_le32(phys
);
153 init
->printfbufsiz
= cpu_to_le32(printfbufsiz
);
154 memset(base
, 0, printfbufsiz
);
158 static void aac_queue_init(struct aac_dev
* dev
, struct aac_queue
* q
, u32
*mem
, int qsize
)
162 init_waitqueue_head(&q
->cmdready
);
163 INIT_LIST_HEAD(&q
->cmdq
);
164 init_waitqueue_head(&q
->qfull
);
165 spin_lock_init(&q
->lockdata
);
166 q
->lock
= &q
->lockdata
;
167 q
->headers
.producer
= (__le32
*)mem
;
168 q
->headers
.consumer
= (__le32
*)(mem
+1);
169 *(q
->headers
.producer
) = cpu_to_le32(qsize
);
170 *(q
->headers
.consumer
) = cpu_to_le32(qsize
);
175 * aac_send_shutdown - shutdown an adapter
176 * @dev: Adapter to shutdown
178 * This routine will send a VM_CloseAll (shutdown) request to the adapter.
181 int aac_send_shutdown(struct aac_dev
* dev
)
184 struct aac_close
*cmd
;
187 fibctx
= aac_fib_alloc(dev
);
190 aac_fib_init(fibctx
);
192 cmd
= (struct aac_close
*) fib_data(fibctx
);
194 cmd
->command
= cpu_to_le32(VM_CloseAll
);
195 cmd
->cid
= cpu_to_le32(0xffffffff);
197 status
= aac_fib_send(ContainerCommand
,
199 sizeof(struct aac_close
),
201 -2 /* Timeout silently */, 1,
205 aac_fib_complete(fibctx
);
206 aac_fib_free(fibctx
);
211 * aac_comm_init - Initialise FSA data structures
212 * @dev: Adapter to initialise
214 * Initializes the data structures that are required for the FSA commuication
215 * interface to operate.
217 * 1 - if we were able to init the commuication interface.
218 * 0 - If there were errors initing. This is a fatal error.
221 static int aac_comm_init(struct aac_dev
* dev
)
223 unsigned long hdrsize
= (sizeof(u32
) * NUMBER_OF_COMM_QUEUES
) * 2;
224 unsigned long queuesize
= sizeof(struct aac_entry
) * TOTAL_QUEUE_ENTRIES
;
226 struct aac_entry
* queues
;
228 struct aac_queue_block
* comm
= dev
->queues
;
230 * Now allocate and initialize the zone structures used as our
231 * pool of FIB context records. The size of the zone is based
232 * on the system memory size. We also initialize the mutex used
233 * to protect the zone.
235 spin_lock_init(&dev
->fib_lock
);
238 * Allocate the physically contigous space for the commuication
242 size
= hdrsize
+ queuesize
;
244 if (!aac_alloc_comm(dev
, (void * *)&headers
, size
, QUEUE_ALIGNMENT
))
247 queues
= (struct aac_entry
*)(((ulong
)headers
) + hdrsize
);
249 /* Adapter to Host normal priority Command queue */
250 comm
->queue
[HostNormCmdQueue
].base
= queues
;
251 aac_queue_init(dev
, &comm
->queue
[HostNormCmdQueue
], headers
, HOST_NORM_CMD_ENTRIES
);
252 queues
+= HOST_NORM_CMD_ENTRIES
;
255 /* Adapter to Host high priority command queue */
256 comm
->queue
[HostHighCmdQueue
].base
= queues
;
257 aac_queue_init(dev
, &comm
->queue
[HostHighCmdQueue
], headers
, HOST_HIGH_CMD_ENTRIES
);
259 queues
+= HOST_HIGH_CMD_ENTRIES
;
262 /* Host to adapter normal priority command queue */
263 comm
->queue
[AdapNormCmdQueue
].base
= queues
;
264 aac_queue_init(dev
, &comm
->queue
[AdapNormCmdQueue
], headers
, ADAP_NORM_CMD_ENTRIES
);
266 queues
+= ADAP_NORM_CMD_ENTRIES
;
269 /* host to adapter high priority command queue */
270 comm
->queue
[AdapHighCmdQueue
].base
= queues
;
271 aac_queue_init(dev
, &comm
->queue
[AdapHighCmdQueue
], headers
, ADAP_HIGH_CMD_ENTRIES
);
273 queues
+= ADAP_HIGH_CMD_ENTRIES
;
276 /* adapter to host normal priority response queue */
277 comm
->queue
[HostNormRespQueue
].base
= queues
;
278 aac_queue_init(dev
, &comm
->queue
[HostNormRespQueue
], headers
, HOST_NORM_RESP_ENTRIES
);
279 queues
+= HOST_NORM_RESP_ENTRIES
;
282 /* adapter to host high priority response queue */
283 comm
->queue
[HostHighRespQueue
].base
= queues
;
284 aac_queue_init(dev
, &comm
->queue
[HostHighRespQueue
], headers
, HOST_HIGH_RESP_ENTRIES
);
286 queues
+= HOST_HIGH_RESP_ENTRIES
;
289 /* host to adapter normal priority response queue */
290 comm
->queue
[AdapNormRespQueue
].base
= queues
;
291 aac_queue_init(dev
, &comm
->queue
[AdapNormRespQueue
], headers
, ADAP_NORM_RESP_ENTRIES
);
293 queues
+= ADAP_NORM_RESP_ENTRIES
;
296 /* host to adapter high priority response queue */
297 comm
->queue
[AdapHighRespQueue
].base
= queues
;
298 aac_queue_init(dev
, &comm
->queue
[AdapHighRespQueue
], headers
, ADAP_HIGH_RESP_ENTRIES
);
300 comm
->queue
[AdapNormCmdQueue
].lock
= comm
->queue
[HostNormRespQueue
].lock
;
301 comm
->queue
[AdapHighCmdQueue
].lock
= comm
->queue
[HostHighRespQueue
].lock
;
302 comm
->queue
[AdapNormRespQueue
].lock
= comm
->queue
[HostNormCmdQueue
].lock
;
303 comm
->queue
[AdapHighRespQueue
].lock
= comm
->queue
[HostHighCmdQueue
].lock
;
308 struct aac_dev
*aac_init_adapter(struct aac_dev
*dev
)
311 struct Scsi_Host
* host
= dev
->scsi_host_ptr
;
314 * Check the preferred comm settings, defaults from template.
316 dev
->max_fib_size
= sizeof(struct hw_fib
);
317 dev
->sg_tablesize
= host
->sg_tablesize
= (dev
->max_fib_size
318 - sizeof(struct aac_fibhdr
)
319 - sizeof(struct aac_write
) + sizeof(struct sgentry
))
320 / sizeof(struct sgentry
);
321 dev
->new_comm_interface
= 0;
323 if ((!aac_adapter_sync_cmd(dev
, GET_ADAPTER_PROPERTIES
,
324 0, 0, 0, 0, 0, 0, status
+0, status
+1, status
+2, NULL
, NULL
)) &&
325 (status
[0] == 0x00000001)) {
326 if (status
[1] & AAC_OPT_NEW_COMM_64
)
328 if (status
[1] & AAC_OPT_NEW_COMM
)
329 dev
->new_comm_interface
= dev
->a_ops
.adapter_send
!= 0;
330 if (dev
->new_comm_interface
&& (status
[2] > dev
->base_size
)) {
331 iounmap(dev
->regs
.sa
);
332 dev
->base_size
= status
[2];
333 dprintk((KERN_DEBUG
"ioremap(%lx,%d)\n",
334 host
->base
, status
[2]));
335 dev
->regs
.sa
= ioremap(host
->base
, status
[2]);
336 if (dev
->regs
.sa
== NULL
) {
337 /* remap failed, go back ... */
338 dev
->new_comm_interface
= 0;
339 dev
->regs
.sa
= ioremap(host
->base
,
340 AAC_MIN_FOOTPRINT_SIZE
);
341 if (dev
->regs
.sa
== NULL
) {
343 "aacraid: unable to map adapter.\n");
349 if ((!aac_adapter_sync_cmd(dev
, GET_COMM_PREFERRED_SETTINGS
,
351 status
+0, status
+1, status
+2, status
+3, status
+4))
352 && (status
[0] == 0x00000001)) {
354 * status[1] >> 16 maximum command size in KB
355 * status[1] & 0xFFFF maximum FIB size
356 * status[2] >> 16 maximum SG elements to driver
357 * status[2] & 0xFFFF maximum SG elements from driver
358 * status[3] & 0xFFFF maximum number FIBs outstanding
360 host
->max_sectors
= (status
[1] >> 16) << 1;
361 dev
->max_fib_size
= status
[1] & 0xFFFF;
362 host
->sg_tablesize
= status
[2] >> 16;
363 dev
->sg_tablesize
= status
[2] & 0xFFFF;
364 host
->can_queue
= (status
[3] & 0xFFFF) - AAC_NUM_MGT_FIB
;
367 * All these overrides are based on a fixed internal
368 * knowledge and understanding of existing adapters,
369 * acbsize should be set with caution.
371 if (acbsize
== 512) {
372 host
->max_sectors
= AAC_MAX_32BIT_SGBCOUNT
;
373 dev
->max_fib_size
= 512;
374 dev
->sg_tablesize
= host
->sg_tablesize
375 = (512 - sizeof(struct aac_fibhdr
)
376 - sizeof(struct aac_write
) + sizeof(struct sgentry
))
377 / sizeof(struct sgentry
);
378 host
->can_queue
= AAC_NUM_IO_FIB
;
379 } else if (acbsize
== 2048) {
380 host
->max_sectors
= 512;
381 dev
->max_fib_size
= 2048;
382 host
->sg_tablesize
= 65;
383 dev
->sg_tablesize
= 81;
384 host
->can_queue
= 512 - AAC_NUM_MGT_FIB
;
385 } else if (acbsize
== 4096) {
386 host
->max_sectors
= 1024;
387 dev
->max_fib_size
= 4096;
388 host
->sg_tablesize
= 129;
389 dev
->sg_tablesize
= 166;
390 host
->can_queue
= 256 - AAC_NUM_MGT_FIB
;
391 } else if (acbsize
== 8192) {
392 host
->max_sectors
= 2048;
393 dev
->max_fib_size
= 8192;
394 host
->sg_tablesize
= 257;
395 dev
->sg_tablesize
= 337;
396 host
->can_queue
= 128 - AAC_NUM_MGT_FIB
;
397 } else if (acbsize
> 0) {
398 printk("Illegal acbsize=%d ignored\n", acbsize
);
404 if (numacb
< host
->can_queue
)
405 host
->can_queue
= numacb
;
407 printk("numacb=%d ignored\n", numacb
);
412 * Ok now init the communication subsystem
415 dev
->queues
= (struct aac_queue_block
*) kmalloc(sizeof(struct aac_queue_block
), GFP_KERNEL
);
416 if (dev
->queues
== NULL
) {
417 printk(KERN_ERR
"Error could not allocate comm region.\n");
420 memset(dev
->queues
, 0, sizeof(struct aac_queue_block
));
422 if (aac_comm_init(dev
)<0){
427 * Initialize the list of fibs
429 if (aac_fib_setup(dev
) < 0) {
434 INIT_LIST_HEAD(&dev
->fib_list
);