comminit.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:9k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  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. #include <linux/config.h>
  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/blk.h>
  40. #include <asm/semaphore.h>
  41. #include "scsi.h"
  42. #include "hosts.h"
  43. #include "aacraid.h"
  44. struct aac_common aac_config;
  45. static struct aac_dev *devices;
  46. static int aac_alloc_comm(struct aac_dev *dev, void **commaddr, unsigned long commsize, unsigned long commalign)
  47. {
  48. unsigned char *base;
  49. unsigned long size, align;
  50. unsigned long fibsize = 4096;
  51. unsigned long printfbufsiz = 256;
  52. struct aac_init *init;
  53. dma_addr_t phys;
  54. size = fibsize + sizeof(struct aac_init) + commsize + commalign + printfbufsiz;
  55. base = pci_alloc_consistent(dev->pdev, size, &phys);
  56. if(base == NULL)
  57. {
  58. printk(KERN_ERR "aacraid: unable to create mapping.n");
  59. return 0;
  60. }
  61. dev->comm_addr  = (void *)base;
  62. dev->comm_phys = phys;
  63. dev->comm_size     = size;
  64. dev->init = (struct aac_init *)(base + fibsize);
  65. dev->init_pa = (struct aac_init *)(phys + fibsize);
  66. init = dev->init;
  67. init->InitStructRevision = cpu_to_le32(ADAPTER_INIT_STRUCT_REVISION);
  68. init->MiniPortRevision = cpu_to_le32(Sa_MINIPORT_REVISION);
  69. init->fsrev = cpu_to_le32(dev->fsrev);
  70. /*
  71.  * Adapter Fibs are the first thing allocated so that they
  72.  * start page aligned
  73.  */
  74. init->AdapterFibsVirtualAddress = cpu_to_le32(base);
  75. init->AdapterFibsPhysicalAddress = cpu_to_le32(phys);
  76. init->AdapterFibsSize = cpu_to_le32(fibsize);
  77. init->AdapterFibAlign = cpu_to_le32(sizeof(struct hw_fib));
  78. /*
  79.  * Increment the base address by the amount already used
  80.  */
  81. base = base + fibsize + sizeof(struct aac_init);
  82. phys = phys + fibsize + sizeof(struct aac_init);
  83. /*
  84.  * Align the beginning of Headers to commalign
  85.  */
  86. align = (commalign - ((unsigned long)(base) & (commalign - 1)));
  87. base = base + align;
  88. phys = phys + align;
  89. /*
  90.  * Fill in addresses of the Comm Area Headers and Queues
  91.  */
  92. *commaddr = (unsigned long *)base;
  93. init->CommHeaderAddress = cpu_to_le32(phys);
  94. /*
  95.  * Increment the base address by the size of the CommArea
  96.  */
  97. base = base + commsize;
  98. phys = phys + commsize;
  99. /*
  100.  *  Place the Printf buffer area after the Fast I/O comm area.
  101.  */
  102. dev->printfbuf = (void *)base;
  103. init->printfbuf = cpu_to_le32(phys);
  104. init->printfbufsiz = cpu_to_le32(printfbufsiz);
  105. memset(base, 0, printfbufsiz);
  106. return 1;
  107. }
  108.     
  109. static void aac_queue_init(struct aac_dev * dev, struct aac_queue * q, u32 *mem, int qsize)
  110. {
  111. q->numpending = 0;
  112. q->dev = dev;
  113. INIT_LIST_HEAD(&q->pendingq);
  114. init_waitqueue_head(&q->cmdready);
  115. INIT_LIST_HEAD(&q->cmdq);
  116. init_waitqueue_head(&q->qfull);
  117. spin_lock_init(&q->lockdata);
  118. q->lock = &q->lockdata;
  119. q->headers.producer = mem;
  120. q->headers.consumer = mem+1;
  121. *q->headers.producer = cpu_to_le32(qsize);
  122. *q->headers.consumer = cpu_to_le32(qsize);
  123. q->entries = qsize;
  124. }
  125. /**
  126.  * aac_send_shutdown - shutdown an adapter
  127.  * @dev: Adapter to shutdown
  128.  *
  129.  * This routine will send a VM_CloseAll (shutdown) request to the adapter.
  130.  */
  131. static int aac_send_shutdown(struct aac_dev * dev)
  132. {
  133. struct fib * fibctx;
  134. struct aac_close *cmd;
  135. int status;
  136. fibctx = fib_alloc(dev);
  137. fib_init(fibctx);
  138. cmd = (struct aac_close *) fib_data(fibctx);
  139. cmd->command = cpu_to_le32(VM_CloseAll);
  140. cmd->cid = cpu_to_le32(0xffffffff);
  141. status = fib_send(ContainerCommand,
  142.   fibctx,
  143.   sizeof(struct aac_close),
  144.   FsaNormal,
  145.   1, 1,
  146.   NULL, NULL);
  147. if (status == 0)
  148. fib_complete(fibctx);
  149. fib_free(fibctx);
  150. return status;
  151. }
  152. /**
  153.  * aac_detach - detach adapter
  154.  * @detach: adapter to disconnect
  155.  *
  156.  * Disconnect and shutdown an AAC based adapter, freeing resources
  157.  * as we go.
  158.  */
  159. int aac_detach(struct aac_dev *detach)
  160. {
  161. struct aac_dev **dev = &devices;
  162. while(*dev)
  163. {
  164. if(*dev == detach)
  165. {
  166. *dev = detach->next;
  167. aac_send_shutdown(detach);
  168. fib_map_free(detach);
  169. pci_free_consistent(detach->pdev, detach->comm_size, detach->comm_addr, detach->comm_phys);
  170. kfree(detach->queues);
  171. return 1;
  172. }
  173. dev=&((*dev)->next);
  174. }
  175. BUG();
  176. return 0;
  177. }
  178. /**
  179.  * aac_comm_init - Initialise FSA data structures
  180.  * @dev: Adapter to intialise
  181.  *
  182.  * Initializes the data structures that are required for the FSA commuication
  183.  * interface to operate. 
  184.  * Returns
  185.  * 1 - if we were able to init the commuication interface.
  186.  * 0 - If there were errors initing. This is a fatal error.
  187.  */
  188.  
  189. int aac_comm_init(struct aac_dev * dev)
  190. {
  191. unsigned long hdrsize = (sizeof(u32) * NUMBER_OF_COMM_QUEUES) * 2;
  192. unsigned long queuesize = sizeof(struct aac_entry) * TOTAL_QUEUE_ENTRIES;
  193. u32 *headers;
  194. struct aac_entry * queues;
  195. unsigned long size;
  196. struct aac_queue_block * comm = dev->queues;
  197. /*
  198.  * Now allocate and initialize the zone structures used as our 
  199.  * pool of FIB context records.  The size of the zone is based
  200.  * on the system memory size.  We also initialize the mutex used
  201.  * to protect the zone.
  202.  */
  203. spin_lock_init(&dev->fib_lock);
  204. /*
  205.  * Allocate the physically contigous space for the commuication
  206.  * queue headers. 
  207.  */
  208. size = hdrsize + queuesize;
  209. if (!aac_alloc_comm(dev, (void * *)&headers, size, QUEUE_ALIGNMENT))
  210. return -ENOMEM;
  211. queues = (struct aac_entry *)((unsigned char *)headers + hdrsize);
  212. /* Adapter to Host normal priority Command queue */ 
  213. comm->queue[HostNormCmdQueue].base = queues;
  214. aac_queue_init(dev, &comm->queue[HostNormCmdQueue], headers, HOST_NORM_CMD_ENTRIES);
  215. queues += HOST_NORM_CMD_ENTRIES;
  216. headers += 2;
  217. /* Adapter to Host high priority command queue */
  218. comm->queue[HostHighCmdQueue].base = queues;
  219. aac_queue_init(dev, &comm->queue[HostHighCmdQueue], headers, HOST_HIGH_CMD_ENTRIES);
  220.     
  221. queues += HOST_HIGH_CMD_ENTRIES;
  222. headers +=2;
  223. /* Host to adapter normal priority command queue */
  224. comm->queue[AdapNormCmdQueue].base = queues;
  225. aac_queue_init(dev, &comm->queue[AdapNormCmdQueue], headers, ADAP_NORM_CMD_ENTRIES);
  226.     
  227. queues += ADAP_NORM_CMD_ENTRIES;
  228. headers += 2;
  229. /* host to adapter high priority command queue */
  230. comm->queue[AdapHighCmdQueue].base = queues;
  231. aac_queue_init(dev, &comm->queue[AdapHighCmdQueue], headers, ADAP_HIGH_CMD_ENTRIES);
  232.     
  233. queues += ADAP_HIGH_CMD_ENTRIES;
  234. headers += 2;
  235. /* adapter to host normal priority response queue */
  236. comm->queue[HostNormRespQueue].base = queues;
  237. aac_queue_init(dev, &comm->queue[HostNormRespQueue], headers, HOST_NORM_RESP_ENTRIES);
  238.     
  239. queues += HOST_NORM_RESP_ENTRIES;
  240. headers += 2;
  241. /* adapter to host high priority response queue */
  242. comm->queue[HostHighRespQueue].base = queues;
  243. aac_queue_init(dev, &comm->queue[HostHighRespQueue], headers, HOST_HIGH_RESP_ENTRIES);
  244.    
  245. queues += HOST_HIGH_RESP_ENTRIES;
  246. headers += 2;
  247. /* host to adapter normal priority response queue */
  248. comm->queue[AdapNormRespQueue].base = queues;
  249. aac_queue_init(dev, &comm->queue[AdapNormRespQueue], headers, ADAP_NORM_RESP_ENTRIES);
  250. queues += ADAP_NORM_RESP_ENTRIES;
  251. headers += 2;
  252. /* host to adapter high priority response queue */ 
  253. comm->queue[AdapHighRespQueue].base = queues;
  254. aac_queue_init(dev, &comm->queue[AdapHighRespQueue], headers, ADAP_HIGH_RESP_ENTRIES);
  255. comm->queue[AdapNormCmdQueue].lock = comm->queue[HostNormRespQueue].lock;
  256. comm->queue[AdapHighCmdQueue].lock = comm->queue[HostHighRespQueue].lock;
  257. comm->queue[AdapNormRespQueue].lock = comm->queue[HostNormCmdQueue].lock;
  258. comm->queue[AdapHighRespQueue].lock = comm->queue[HostHighCmdQueue].lock;
  259. return 0;
  260. }
  261. struct aac_dev *aac_init_adapter(struct aac_dev *dev)
  262. {
  263. /*
  264.  * Ok now init the communication subsystem
  265.  */
  266. dev->queues = (struct aac_queue_block *) kmalloc(sizeof(struct aac_queue_block), GFP_KERNEL);
  267. if (dev->queues == NULL) {
  268. printk(KERN_ERR "Error could not allocate comm region.n");
  269. return NULL;
  270. }
  271. memset(dev->queues, 0, sizeof(struct aac_queue_block));
  272. if (aac_comm_init(dev)<0)
  273. return NULL;
  274. /*
  275.  * Initialize the list of fibs
  276.  */
  277. if(fib_setup(dev)<0)
  278. return NULL;
  279. INIT_LIST_HEAD(&dev->fib_list);
  280. spin_lock_init(&dev->fib_lock);
  281. init_completion(&dev->aif_completion);
  282. /*
  283.  * Add this adapter in to our dev List.
  284.  */
  285. dev->next = devices;
  286. devices = dev;
  287. return dev;
  288. }
  289.