blob: 35b0a6ebd3f5133075a1870065e7f100514068e1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Adaptec AAC series RAID controller driver
3 * (c) Copyright 2001 Red Hat Inc. <alan@redhat.com>
4 *
5 * based on the old aacraid driver that is..
6 * Adaptec aacraid device driver for Linux.
7 *
8 * Copyright (c) 2000 Adaptec, Inc. (aacraid@adaptec.com)
9 *
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)
13 * any later version.
14 *
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.
19 *
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.
23 *
24 * Module Name:
25 * comminit.c
26 *
27 * Abstract: This supports the initialization of the host adapter commuication interface.
28 * This is a platform dependent module for the pci cyclone board.
29 *
30 */
31
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>
41#include <linux/mm.h>
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -070042#include <scsi/scsi_host.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/semaphore.h>
44
45#include "aacraid.h"
46
Mark Haverkampbed30de2005-08-03 15:38:51 -070047struct aac_common aac_config = {
48 .irq_mod = 1
49};
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51static int aac_alloc_comm(struct aac_dev *dev, void **commaddr, unsigned long commsize, unsigned long commalign)
52{
53 unsigned char *base;
54 unsigned long size, align;
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -070055 const unsigned long fibsize = 4096;
56 const unsigned long printfbufsiz = 256;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 struct aac_init *init;
58 dma_addr_t phys;
59
60 size = fibsize + sizeof(struct aac_init) + commsize + commalign + printfbufsiz;
61
62
63 base = pci_alloc_consistent(dev->pdev, size, &phys);
64
65 if(base == NULL)
66 {
67 printk(KERN_ERR "aacraid: unable to create mapping.\n");
68 return 0;
69 }
70 dev->comm_addr = (void *)base;
71 dev->comm_phys = phys;
72 dev->comm_size = size;
73
74 dev->init = (struct aac_init *)(base + fibsize);
75 dev->init_pa = phys + fibsize;
76
77 init = dev->init;
78
79 init->InitStructRevision = cpu_to_le32(ADAPTER_INIT_STRUCT_REVISION);
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -070080 if (dev->max_fib_size != sizeof(struct hw_fib))
81 init->InitStructRevision = cpu_to_le32(ADAPTER_INIT_STRUCT_REVISION_4);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 init->MiniPortRevision = cpu_to_le32(Sa_MINIPORT_REVISION);
83 init->fsrev = cpu_to_le32(dev->fsrev);
84
85 /*
86 * Adapter Fibs are the first thing allocated so that they
87 * start page aligned
88 */
89 dev->aif_base_va = (struct hw_fib *)base;
90
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));
95 /*
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
101 * field.
102 *
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
Mark Haverkampa623e142006-06-08 13:55:57 -0700106 * on this platform but don't be surprised if its problematic.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 */
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));
112 } else
113#endif
114 {
115 init->HostPhysMemPages = cpu_to_le32(AAC_MAX_HOSTPHYSMEMPAGES);
116 }
117
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700118 init->InitFlags = 0;
Mark Haverkamp8e0c5eb2005-10-24 10:52:22 -0700119 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"));
122 }
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700123 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127 /*
128 * Increment the base address by the amount already used
129 */
130 base = base + fibsize + sizeof(struct aac_init);
131 phys = (dma_addr_t)((ulong)phys + fibsize + sizeof(struct aac_init));
132 /*
133 * Align the beginning of Headers to commalign
134 */
135 align = (commalign - ((unsigned long)(base) & (commalign - 1)));
136 base = base + align;
137 phys = phys + align;
138 /*
139 * Fill in addresses of the Comm Area Headers and Queues
140 */
141 *commaddr = base;
142 init->CommHeaderAddress = cpu_to_le32((u32)phys);
143 /*
144 * Increment the base address by the size of the CommArea
145 */
146 base = base + commsize;
147 phys = phys + commsize;
148 /*
149 * Place the Printf buffer area after the Fast I/O comm area.
150 */
151 dev->printfbuf = (void *)base;
152 init->printfbuf = cpu_to_le32(phys);
153 init->printfbufsiz = cpu_to_le32(printfbufsiz);
154 memset(base, 0, printfbufsiz);
155 return 1;
156}
157
158static void aac_queue_init(struct aac_dev * dev, struct aac_queue * q, u32 *mem, int qsize)
159{
160 q->numpending = 0;
161 q->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 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;
Mark Haverkamp 56b58712005-04-27 06:05:51 -0700167 q->headers.producer = (__le32 *)mem;
168 q->headers.consumer = (__le32 *)(mem+1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 *(q->headers.producer) = cpu_to_le32(qsize);
170 *(q->headers.consumer) = cpu_to_le32(qsize);
171 q->entries = qsize;
172}
173
174/**
175 * aac_send_shutdown - shutdown an adapter
176 * @dev: Adapter to shutdown
177 *
178 * This routine will send a VM_CloseAll (shutdown) request to the adapter.
179 */
180
181int aac_send_shutdown(struct aac_dev * dev)
182{
183 struct fib * fibctx;
184 struct aac_close *cmd;
185 int status;
186
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800187 fibctx = aac_fib_alloc(dev);
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700188 if (!fibctx)
189 return -ENOMEM;
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800190 aac_fib_init(fibctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 cmd = (struct aac_close *) fib_data(fibctx);
193
194 cmd->command = cpu_to_le32(VM_CloseAll);
195 cmd->cid = cpu_to_le32(0xffffffff);
196
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800197 status = aac_fib_send(ContainerCommand,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 fibctx,
199 sizeof(struct aac_close),
200 FsaNormal,
Mark Haverkamp92033442005-09-20 12:56:50 -0700201 -2 /* Timeout silently */, 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 NULL, NULL);
203
204 if (status == 0)
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800205 aac_fib_complete(fibctx);
206 aac_fib_free(fibctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 return status;
208}
209
210/**
211 * aac_comm_init - Initialise FSA data structures
212 * @dev: Adapter to initialise
213 *
214 * Initializes the data structures that are required for the FSA commuication
215 * interface to operate.
216 * Returns
217 * 1 - if we were able to init the commuication interface.
218 * 0 - If there were errors initing. This is a fatal error.
219 */
220
Adrian Bunk 48338692005-04-25 19:45:58 -0700221static int aac_comm_init(struct aac_dev * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 unsigned long hdrsize = (sizeof(u32) * NUMBER_OF_COMM_QUEUES) * 2;
224 unsigned long queuesize = sizeof(struct aac_entry) * TOTAL_QUEUE_ENTRIES;
225 u32 *headers;
226 struct aac_entry * queues;
227 unsigned long size;
228 struct aac_queue_block * comm = dev->queues;
229 /*
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.
234 */
235 spin_lock_init(&dev->fib_lock);
236
237 /*
238 * Allocate the physically contigous space for the commuication
239 * queue headers.
240 */
241
242 size = hdrsize + queuesize;
243
244 if (!aac_alloc_comm(dev, (void * *)&headers, size, QUEUE_ALIGNMENT))
245 return -ENOMEM;
246
247 queues = (struct aac_entry *)(((ulong)headers) + hdrsize);
248
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;
253 headers += 2;
254
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);
258
259 queues += HOST_HIGH_CMD_ENTRIES;
260 headers +=2;
261
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);
265
266 queues += ADAP_NORM_CMD_ENTRIES;
267 headers += 2;
268
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);
272
273 queues += ADAP_HIGH_CMD_ENTRIES;
274 headers += 2;
275
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;
280 headers += 2;
281
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);
285
286 queues += HOST_HIGH_RESP_ENTRIES;
287 headers += 2;
288
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);
292
293 queues += ADAP_NORM_RESP_ENTRIES;
294 headers += 2;
295
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);
299
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;
304
305 return 0;
306}
307
308struct aac_dev *aac_init_adapter(struct aac_dev *dev)
309{
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700310 u32 status[5];
311 struct Scsi_Host * host = dev->scsi_host_ptr;
312
313 /*
314 * Check the preferred comm settings, defaults from template.
315 */
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)
Mark Haverkamp63a70ee2005-09-20 12:57:04 -0700319 - sizeof(struct aac_write) + sizeof(struct sgentry))
320 / sizeof(struct sgentry);
Mark Haverkamp8e0c5eb2005-10-24 10:52:22 -0700321 dev->new_comm_interface = 0;
Mark Haverkamp7a8cf292005-09-22 09:15:24 -0700322 dev->raw_io_64 = 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)
327 dev->raw_io_64 = 1;
Mark Haverkamp8e0c5eb2005-10-24 10:52:22 -0700328 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) {
342 printk(KERN_WARNING
343 "aacraid: unable to map adapter.\n");
344 return NULL;
345 }
346 }
347 }
Mark Haverkamp7a8cf292005-09-22 09:15:24 -0700348 }
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700349 if ((!aac_adapter_sync_cmd(dev, GET_COMM_PREFERRED_SETTINGS,
350 0, 0, 0, 0, 0, 0,
351 status+0, status+1, status+2, status+3, status+4))
352 && (status[0] == 0x00000001)) {
353 /*
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
359 */
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;
365 /*
366 * NOTE:
367 * All these overrides are based on a fixed internal
368 * knowledge and understanding of existing adapters,
369 * acbsize should be set with caution.
370 */
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)
Mark Haverkamp63a70ee2005-09-20 12:57:04 -0700376 - sizeof(struct aac_write) + sizeof(struct sgentry))
377 / sizeof(struct sgentry);
Mark Haverkamp 7c00ffa2005-05-16 18:28:42 -0700378 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);
399 }
400 }
401 {
402
403 if (numacb > 0) {
404 if (numacb < host->can_queue)
405 host->can_queue = numacb;
406 else
407 printk("numacb=%d ignored\n", numacb);
408 }
409 }
410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 /*
412 * Ok now init the communication subsystem
413 */
414
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");
418 return NULL;
419 }
420 memset(dev->queues, 0, sizeof(struct aac_queue_block));
421
422 if (aac_comm_init(dev)<0){
423 kfree(dev->queues);
424 return NULL;
425 }
426 /*
427 * Initialize the list of fibs
428 */
Mark Haverkampbfb35aa82006-02-01 09:30:55 -0800429 if (aac_fib_setup(dev) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 kfree(dev->queues);
431 return NULL;
432 }
433
434 INIT_LIST_HEAD(&dev->fib_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436 return dev;
437}
438
439