commsup.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:26k
源码类别:

Linux/Unix编程

开发平台:

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.  *  commsup.c
  26.  *
  27.  * Abstract: Contain all routines that are required for FSA host/adapter
  28.  *    commuication.
  29.  *
  30.  *
  31.  */
  32. #include <linux/config.h>
  33. #include <linux/kernel.h>
  34. #include <linux/init.h>
  35. #include <linux/types.h>
  36. #include <linux/sched.h>
  37. #include <linux/pci.h>
  38. #include <linux/spinlock.h>
  39. #include <linux/slab.h>
  40. #include <linux/completion.h>
  41. #include <asm/semaphore.h>
  42. #include <linux/blk.h>
  43. #include "scsi.h"
  44. #include "hosts.h"
  45. #include "aacraid.h"
  46. /**
  47.  * fib_map_alloc - allocate the fib objects
  48.  * @dev: Adapter to allocate for
  49.  *
  50.  * Allocate and map the shared PCI space for the FIB blocks used to
  51.  * talk to the Adaptec firmware.
  52.  */
  53.  
  54. static int fib_map_alloc(struct aac_dev *dev)
  55. {
  56. if((dev->hw_fib_va = pci_alloc_consistent(dev->pdev, sizeof(struct hw_fib) * AAC_NUM_FIB, &dev->hw_fib_pa))==NULL)
  57. return -ENOMEM;
  58. return 0;
  59. }
  60. /**
  61.  * fib_map_free - free the fib objects
  62.  * @dev: Adapter to free
  63.  *
  64.  * Free the PCI mappings and the memory allocated for FIB blocks
  65.  * on this adapter.
  66.  */
  67. void fib_map_free(struct aac_dev *dev)
  68. {
  69. pci_free_consistent(dev->pdev, sizeof(struct hw_fib) * AAC_NUM_FIB, dev->hw_fib_va, dev->hw_fib_pa);
  70. }
  71. /**
  72.  * fib_setup - setup the fibs
  73.  * @dev: Adapter to set up
  74.  *
  75.  * Allocate the PCI space for the fibs, map it and then intialise the
  76.  * fib area, the unmapped fib data and also the free list
  77.  */
  78. int fib_setup(struct aac_dev * dev)
  79. {
  80. struct fib *fibptr;
  81. struct hw_fib *fib;
  82. dma_addr_t fibpa;
  83. int i;
  84. if(fib_map_alloc(dev)<0)
  85. return -ENOMEM;
  86. fib = dev->hw_fib_va;
  87. fibpa = dev->hw_fib_pa;
  88. memset(fib, 0, sizeof(struct hw_fib) * AAC_NUM_FIB);
  89. /*
  90.  * Initialise the fibs
  91.  */
  92. for (i = 0, fibptr = &dev->fibs[i]; i < AAC_NUM_FIB; i++, fibptr++) 
  93. {
  94. fibptr->dev = dev;
  95. fibptr->fib = fib;
  96. fibptr->data = (void *) fibptr->fib->data;
  97. fibptr->next = fibptr+1; /* Forward chain the fibs */
  98. init_MUTEX_LOCKED(&fibptr->event_wait);
  99. spin_lock_init(&fibptr->event_lock);
  100. fib->header.XferState = cpu_to_le32(0xffffffff);
  101. fib->header.SenderSize = cpu_to_le16(sizeof(struct hw_fib));
  102. fibptr->logicaladdr = (unsigned long) fibpa;
  103. fib = (struct hw_fib *)((unsigned char *)fib + sizeof(struct hw_fib));
  104. fibpa = fibpa + sizeof(struct hw_fib);
  105. }
  106. /*
  107.  * Add the fib chain to the free list
  108.  */
  109. dev->fibs[AAC_NUM_FIB-1].next = NULL;
  110. /*
  111.  * Enable this to debug out of queue space
  112.  */
  113. dev->free_fib = &dev->fibs[0];
  114. return 0;
  115. }
  116. /**
  117.  * fib_alloc - allocate a fib
  118.  * @dev: Adapter to allocate the fib for
  119.  *
  120.  * Allocate a fib from the adapter fib pool. If the pool is empty we
  121.  * wait for fibs to become free.
  122.  */
  123.  
  124. struct fib * fib_alloc(struct aac_dev *dev)
  125. {
  126. struct fib * fibptr;
  127. unsigned long flags;
  128. spin_lock_irqsave(&dev->fib_lock, flags);
  129. fibptr = dev->free_fib;
  130. if(!fibptr)
  131. BUG();
  132. dev->free_fib = fibptr->next;
  133. spin_unlock_irqrestore(&dev->fib_lock, flags);
  134. /*
  135.  * Set the proper node type code and node byte size
  136.  */
  137. fibptr->type = FSAFS_NTC_FIB_CONTEXT;
  138. fibptr->size = sizeof(struct fib);
  139. /*
  140.  * Null out fields that depend on being zero at the start of
  141.  * each I/O
  142.  */
  143. fibptr->fib->header.XferState = cpu_to_le32(0);
  144. fibptr->callback = NULL;
  145. fibptr->callback_data = NULL;
  146. return fibptr;
  147. }
  148. /**
  149.  * fib_free - free a fib
  150.  * @fibptr: fib to free up
  151.  *
  152.  * Frees up a fib and places it on the appropriate queue
  153.  * (either free or timed out)
  154.  */
  155.  
  156. void fib_free(struct fib * fibptr)
  157. {
  158. unsigned long flags;
  159. spin_lock_irqsave(&fibptr->dev->fib_lock, flags);
  160. if (fibptr->flags & FIB_CONTEXT_FLAG_TIMED_OUT) {
  161. aac_config.fib_timeouts++;
  162. fibptr->next = fibptr->dev->timeout_fib;
  163. fibptr->dev->timeout_fib = fibptr;
  164. } else {
  165. if (fibptr->fib->header.XferState != 0) {
  166. printk(KERN_WARNING "fib_free, XferState != 0, fibptr = 0x%p, XferState = 0x%xn", 
  167.  (void *)fibptr, fibptr->fib->header.XferState);
  168. }
  169. fibptr->next = fibptr->dev->free_fib;
  170. fibptr->dev->free_fib = fibptr;
  171. }
  172. spin_unlock_irqrestore(&fibptr->dev->fib_lock, flags);
  173. }
  174. /**
  175.  * fib_init - initialise a fib
  176.  * @fibptr: The fib to initialize
  177.  *
  178.  * Set up the generic fib fields ready for use
  179.  */
  180.  
  181. void fib_init(struct fib *fibptr)
  182. {
  183. struct hw_fib *fib = fibptr->fib;
  184. fib->header.StructType = FIB_MAGIC;
  185. fib->header.Size = cpu_to_le16(sizeof(struct hw_fib));
  186.         fib->header.XferState = cpu_to_le32(HostOwned | FibInitialized | FibEmpty | FastResponseCapable);
  187. fib->header.SenderFibAddress = cpu_to_le32(0);
  188. fib->header.ReceiverFibAddress = cpu_to_le32(0);
  189. fib->header.SenderSize = cpu_to_le16(sizeof(struct hw_fib));
  190. }
  191. /**
  192.  * fib_deallocate - deallocate a fib
  193.  * @fibptr: fib to deallocate
  194.  *
  195.  * Will deallocate and return to the free pool the FIB pointed to by the
  196.  * caller.
  197.  */
  198.  
  199. void fib_dealloc(struct fib * fibptr)
  200. {
  201. struct hw_fib *fib = fibptr->fib;
  202. if(fib->header.StructType != FIB_MAGIC) 
  203. BUG();
  204. fib->header.XferState = cpu_to_le32(0);        
  205. }
  206. /*
  207.  * Commuication primitives define and support the queuing method we use to
  208.  * support host to adapter commuication. All queue accesses happen through
  209.  * these routines and are the only routines which have a knowledge of the
  210.  *  how these queues are implemented.
  211.  */
  212.  
  213. /**
  214.  * aac_get_entry - get a queue entry
  215.  * @dev: Adapter
  216.  * @qid: Queue Number
  217.  * @entry: Entry return
  218.  * @index: Index return
  219.  * @nonotify: notification control
  220.  *
  221.  * With a priority the routine returns a queue entry if the queue has free entries. If the queue
  222.  * is full(no free entries) than no entry is returned and the function returns 0 otherwise 1 is
  223.  * returned.
  224.  */
  225.  
  226. static int aac_get_entry (struct aac_dev * dev, u32 qid, struct aac_entry **entry, u32 * index, unsigned long *nonotify)
  227. {
  228. struct aac_queue * q;
  229. /*
  230.  * All of the queues wrap when they reach the end, so we check
  231.  * to see if they have reached the end and if they have we just
  232.  * set the index back to zero. This is a wrap. You could or off
  233.  * the high bits in all updates but this is a bit faster I think.
  234.  */
  235. q = &dev->queues->queue[qid];
  236. *index = le32_to_cpu(*(q->headers.producer));
  237. if (*index - 2 == le32_to_cpu(*(q->headers.consumer)))
  238. *nonotify = 1; 
  239. if (qid == AdapHighCmdQueue) {
  240.         if (*index >= ADAP_HIGH_CMD_ENTRIES)
  241.          *index = 0;
  242. } else if (qid == AdapNormCmdQueue) {
  243.         if (*index >= ADAP_NORM_CMD_ENTRIES) 
  244. *index = 0; /* Wrap to front of the Producer Queue. */
  245. }
  246. else if (qid == AdapHighRespQueue) 
  247. {
  248.         if (*index >= ADAP_HIGH_RESP_ENTRIES)
  249. *index = 0;
  250. }
  251. else if (qid == AdapNormRespQueue) 
  252. {
  253. if (*index >= ADAP_NORM_RESP_ENTRIES) 
  254. *index = 0; /* Wrap to front of the Producer Queue. */
  255. }
  256. else BUG();
  257.         if (*index + 1 == le32_to_cpu(*(q->headers.consumer))) { /* Queue is full */
  258. printk(KERN_WARNING "Queue %d full, %ld outstanding.n", qid, q->numpending);
  259. return 0;
  260. } else {
  261.         *entry = q->base + *index;
  262. return 1;
  263. }
  264. }   
  265. /**
  266.  * aac_queue_get - get the next free QE
  267.  * @dev: Adapter
  268.  * @index: Returned index
  269.  * @priority: Priority of fib
  270.  * @fib: Fib to associate with the queue entry
  271.  * @wait: Wait if queue full
  272.  * @fibptr: Driver fib object to go with fib
  273.  * @nonotify: Don't notify the adapter
  274.  *
  275.  * Gets the next free QE off the requested priorty adapter command
  276.  * queue and associates the Fib with the QE. The QE represented by
  277.  * index is ready to insert on the queue when this routine returns
  278.  * success.
  279.  */
  280. static int aac_queue_get(struct aac_dev * dev, u32 * index, u32 qid, struct hw_fib * fib, int wait, struct fib * fibptr, unsigned long *nonotify)
  281. {
  282. struct aac_entry * entry = NULL;
  283. int map = 0;
  284. struct aac_queue * q = &dev->queues->queue[qid];
  285. spin_lock_irqsave(q->lock, q->SavedIrql);
  286.     
  287. if (qid == AdapHighCmdQueue || qid == AdapNormCmdQueue) 
  288. {
  289. /*  if no entries wait for some if caller wants to */
  290.          while (!aac_get_entry(dev, qid, &entry, index, nonotify)) 
  291.          {
  292. printk(KERN_ERR "GetEntries failedn");
  293. }
  294.         /*
  295.          * Setup queue entry with a command, status and fib mapped
  296.          */
  297.         entry->size = cpu_to_le32(le16_to_cpu(fib->header.Size));
  298.         map = 1;
  299. }
  300. else if (qid == AdapHighRespQueue || qid == AdapNormRespQueue)
  301. {
  302.         while(!aac_get_entry(dev, qid, &entry, index, nonotify)) 
  303.         {
  304. /* if no entries wait for some if caller wants to */
  305. }
  306.          /*
  307.           * Setup queue entry with command, status and fib mapped
  308.           */
  309.          entry->size = cpu_to_le32(le16_to_cpu(fib->header.Size));
  310.          entry->addr = cpu_to_le32(fib->header.SenderFibAddress);      /* Restore adapters pointer to the FIB */
  311. fib->header.ReceiverFibAddress = fib->header.SenderFibAddress; /* Let the adapter now where to find its data */
  312.          map = 0;
  313. /*
  314.  * If MapFib is true than we need to map the Fib and put pointers
  315.  * in the queue entry.
  316.  */
  317. if (map)
  318. entry->addr = cpu_to_le32((unsigned long)(fibptr->logicaladdr));
  319. return 0;
  320. }
  321. /**
  322.  * aac_insert_entry - insert a queue entry
  323.  * @dev: Adapter
  324.  * @index: Index of entry to insert
  325.  * @qid: Queue number
  326.  * @nonotify: Suppress adapter notification
  327.  *
  328.  * Gets the next free QE off the requested priorty adapter command
  329.  * queue and associates the Fib with the QE. The QE represented by
  330.  * index is ready to insert on the queue when this routine returns
  331.  * success.
  332.  */
  333.  
  334. static int aac_insert_entry(struct aac_dev * dev, u32 index, u32 qid, unsigned long nonotify) 
  335. {
  336. struct aac_queue * q = &dev->queues->queue[qid];
  337. if(q == NULL)
  338. BUG();
  339. *(q->headers.producer) = cpu_to_le32(index + 1);
  340. spin_unlock_irqrestore(q->lock, q->SavedIrql);
  341. if (qid == AdapHighCmdQueue ||
  342.     qid == AdapNormCmdQueue ||
  343.     qid == AdapHighRespQueue ||
  344.     qid == AdapNormRespQueue)
  345. {
  346. if (!nonotify)
  347. aac_adapter_notify(dev, qid);
  348. }
  349. else
  350. printk("Suprise insert!n");
  351. return 0;
  352. }
  353. /*
  354.  * Define the highest level of host to adapter communication routines. 
  355.  * These routines will support host to adapter FS commuication. These 
  356.  * routines have no knowledge of the commuication method used. This level
  357.  * sends and receives FIBs. This level has no knowledge of how these FIBs
  358.  * get passed back and forth.
  359.  */
  360. /**
  361.  * fib_send - send a fib to the adapter
  362.  * @command: Command to send
  363.  * @fibptr: The fib
  364.  * @size: Size of fib data area
  365.  * @priority: Priority of Fib
  366.  * @wait: Async/sync select
  367.  * @reply: True if a reply is wanted
  368.  * @callback: Called with reply
  369.  * @callback_data: Passed to callback
  370.  *
  371.  * Sends the requested FIB to the adapter and optionally will wait for a
  372.  * response FIB. If the caller does not wish to wait for a response than
  373.  * an event to wait on must be supplied. This event will be set when a
  374.  * response FIB is received from the adapter.
  375.  */
  376.  
  377. int fib_send(u16 command, struct fib * fibptr, unsigned long size,  int priority, int wait, int reply, fib_callback callback, void * callback_data)
  378. {
  379. u32 index;
  380. u32 qid;
  381. struct aac_dev * dev = fibptr->dev;
  382. unsigned long nointr = 0;
  383. struct hw_fib * fib = fibptr->fib;
  384. struct aac_queue * q;
  385. unsigned long flags = 0;
  386. if (!(le32_to_cpu(fib->header.XferState) & HostOwned))
  387. return -EBUSY;
  388. /*
  389.  * There are 5 cases with the wait and reponse requested flags. 
  390.  * The only invalid cases are if the caller requests to wait and
  391.  * does not request a response and if the caller does not want a
  392.  * response and the Fibis not allocated from pool. If a response
  393.  * is not requesed the Fib will just be deallocaed by the DPC
  394.  * routine when the response comes back from the adapter. No
  395.  * further processing will be done besides deleting the Fib. We 
  396.  * will have a debug mode where the adapter can notify the host
  397.  * it had a problem and the host can log that fact.
  398.  */
  399. if (wait && !reply) {
  400. return -EINVAL;
  401. } else if (!wait && reply) {
  402. fib->header.XferState |= cpu_to_le32(Async | ResponseExpected);
  403. FIB_COUNTER_INCREMENT(aac_config.AsyncSent);
  404. } else if (!wait && !reply) {
  405. fib->header.XferState |= cpu_to_le32(NoResponseExpected);
  406. FIB_COUNTER_INCREMENT(aac_config.NoResponseSent);
  407. } else if (wait && reply) {
  408. fib->header.XferState |= cpu_to_le32(ResponseExpected);
  409. FIB_COUNTER_INCREMENT(aac_config.NormalSent);
  410. /*
  411.  * Map the fib into 32bits by using the fib number
  412.  */
  413. fib->header.SenderData = fibptr-&dev->fibs[0]; /* for callback */
  414. /*
  415.  * Set FIB state to indicate where it came from and if we want a
  416.  * response from the adapter. Also load the command from the
  417.  * caller.
  418.  *
  419.  * Map the hw fib pointer as a 32bit value
  420.  */
  421. fib->header.SenderFibAddress = fib2addr(fib);
  422. fib->header.Command = cpu_to_le16(command);
  423. fib->header.XferState |= cpu_to_le32(SentFromHost);
  424. fibptr->fib->header.Flags = 0; /* Zero the flags field - its internal only...  */
  425. /*
  426.  * Set the size of the Fib we want to send to the adapter
  427.  */
  428. fib->header.Size = cpu_to_le16(sizeof(struct aac_fibhdr) + size);
  429. if (le16_to_cpu(fib->header.Size) > le16_to_cpu(fib->header.SenderSize)) {
  430. return -EMSGSIZE;
  431. }                
  432. /*
  433.  * Get a queue entry connect the FIB to it and send an notify
  434.  * the adapter a command is ready.
  435.  */
  436. if (priority == FsaHigh) {
  437. fib->header.XferState |= cpu_to_le32(HighPriority);
  438. qid = AdapHighCmdQueue;
  439. } else {
  440. fib->header.XferState |= cpu_to_le32(NormalPriority);
  441. qid = AdapNormCmdQueue;
  442. }
  443. q = &dev->queues->queue[qid];
  444. if(wait)
  445. spin_lock_irqsave(&fibptr->event_lock, flags);
  446. if(aac_queue_get( dev, &index, qid, fib, 1, fibptr, &nointr)<0)
  447. return -EWOULDBLOCK;
  448. dprintk((KERN_DEBUG "fib_send: inserting a queue entry at index %d.n",index));
  449. dprintk((KERN_DEBUG "Fib contents:.n"));
  450. dprintk((KERN_DEBUG "  Command =               %d.n", fib->header.Command));
  451. dprintk((KERN_DEBUG "  XferState  =            %x.n", fib->header.XferState));
  452. /*
  453.  * Fill in the Callback and CallbackContext if we are not
  454.  * going to wait.
  455.  */
  456. if (!wait) {
  457. fibptr->callback = callback;
  458. fibptr->callback_data = callback_data;
  459. }
  460. FIB_COUNTER_INCREMENT(aac_config.FibsSent);
  461. list_add_tail(&fibptr->queue, &q->pendingq);
  462. q->numpending++;
  463. fibptr->done = 0;
  464. if(aac_insert_entry(dev, index, qid, (nointr & aac_config.irq_mod)) < 0)
  465. return -EWOULDBLOCK;
  466. /*
  467.  * If the caller wanted us to wait for response wait now. 
  468.  */
  469.     
  470. if (wait) {
  471. spin_unlock_irqrestore(&fibptr->event_lock, flags);
  472. down(&fibptr->event_wait);
  473. if(fibptr->done == 0)
  474. BUG();
  475. if((fibptr->flags & FIB_CONTEXT_FLAG_TIMED_OUT))
  476. return -ETIMEDOUT;
  477. else
  478. return 0;
  479. }
  480. /*
  481.  * If the user does not want a response than return success otherwise
  482.  * return pending
  483.  */
  484. if (reply)
  485. return -EINPROGRESS;
  486. else
  487. return 0;
  488. }
  489. /** 
  490.  * aac_consumer_get - get the top of the queue
  491.  * @dev: Adapter
  492.  * @q: Queue
  493.  * @entry: Return entry
  494.  *
  495.  * Will return a pointer to the entry on the top of the queue requested that
  496.  *  we are a consumer of, and return the address of the queue entry. It does
  497.  * not change the state of the queue. 
  498.  */
  499. int aac_consumer_get(struct aac_dev * dev, struct aac_queue * q, struct aac_entry **entry)
  500. {
  501. u32 index;
  502. int status;
  503. if (*q->headers.producer == *q->headers.consumer) {
  504. status = 0;
  505. } else {
  506. /*
  507.  * The consumer index must be wrapped if we have reached
  508.  * the end of the queue, else we just use the entry
  509.  * pointed to by the header index
  510.  */
  511. if (le32_to_cpu(*q->headers.consumer) >= q->entries) 
  512. index = 0;
  513. else
  514.         index = le32_to_cpu(*q->headers.consumer);
  515. *entry = q->base + index;
  516. status = 1;
  517. }
  518. return(status);
  519. }
  520. int aac_consumer_avail(struct aac_dev *dev, struct aac_queue * q)
  521. {
  522. return (*q->headers.producer != *q->headers.consumer);
  523. }
  524. /**
  525.  * aac_consumer_free - free consumer entry
  526.  * @dev: Adapter
  527.  * @q: Queue
  528.  * @qid: Queue ident
  529.  *
  530.  * Frees up the current top of the queue we are a consumer of. If the
  531.  * queue was full notify the producer that the queue is no longer full.
  532.  */
  533. void aac_consumer_free(struct aac_dev * dev, struct aac_queue *q, u32 qid)
  534. {
  535. int wasfull = 0;
  536. u32 notify;
  537. if (*q->headers.producer+1 == *q->headers.consumer)
  538. wasfull = 1;
  539.         
  540. if (le32_to_cpu(*q->headers.consumer) >= q->entries)
  541. *q->headers.consumer = cpu_to_le32(1);
  542. else
  543. *q->headers.consumer = cpu_to_le32(le32_to_cpu(*q->headers.consumer)+1);
  544.         
  545. if (wasfull) {
  546. switch (qid) {
  547. case HostNormCmdQueue:
  548. notify = HostNormCmdNotFull;
  549. break;
  550. case HostHighCmdQueue:
  551. notify = HostHighCmdNotFull;
  552. break;
  553. case HostNormRespQueue:
  554. notify = HostNormRespNotFull;
  555. break;
  556. case HostHighRespQueue:
  557. notify = HostHighRespNotFull;
  558. break;
  559. default:
  560. BUG();
  561. return;
  562. }
  563. aac_adapter_notify(dev, notify);
  564. }
  565. }        
  566. /**
  567.  * fib_adapter_complete - complete adapter issued fib
  568.  * @fibptr: fib to complete
  569.  * @size: size of fib
  570.  *
  571.  * Will do all necessary work to complete a FIB that was sent from
  572.  * the adapter.
  573.  */
  574. int fib_adapter_complete(struct fib * fibptr, unsigned short size)
  575. {
  576. struct hw_fib * fib = fibptr->fib;
  577. struct aac_dev * dev = fibptr->dev;
  578. unsigned long nointr = 0;
  579. if (le32_to_cpu(fib->header.XferState) == 0)
  580.          return 0;
  581. /*
  582.  * If we plan to do anything check the structure type first.
  583.  */ 
  584. if ( fib->header.StructType != FIB_MAGIC ) {
  585.          return -EINVAL;
  586. }
  587. /*
  588.  * This block handles the case where the adapter had sent us a
  589.  * command and we have finished processing the command. We
  590.  * call completeFib when we are done processing the command 
  591.  * and want to send a response back to the adapter. This will 
  592.  * send the completed cdb to the adapter.
  593.  */
  594. if (fib->header.XferState & cpu_to_le32(SentFromAdapter)) {
  595.         fib->header.XferState |= cpu_to_le32(HostProcessed);
  596.         if (fib->header.XferState & cpu_to_le32(HighPriority)) {
  597.          u32 index;
  598.         if (size) 
  599. {
  600. size += sizeof(struct aac_fibhdr);
  601. if (size > le16_to_cpu(fib->header.SenderSize))
  602. return -EMSGSIZE;
  603. fib->header.Size = cpu_to_le16(size);
  604. }
  605. if(aac_queue_get(dev, &index, AdapHighRespQueue, fib, 1, NULL, &nointr) < 0) {
  606. return -EWOULDBLOCK;
  607. }
  608. if (aac_insert_entry(dev, index, AdapHighRespQueue,  (nointr & (int)aac_config.irq_mod)) != 0) {
  609. }
  610. }
  611. else if (fib->header.XferState & NormalPriority) 
  612. {
  613. u32 index;
  614. if (size) {
  615. size += sizeof(struct aac_fibhdr);
  616. if (size > le16_to_cpu(fib->header.SenderSize)) 
  617. return -EMSGSIZE;
  618. fib->header.Size = cpu_to_le16(size);
  619. }
  620. if (aac_queue_get(dev, &index, AdapNormRespQueue, fib, 1, NULL, &nointr) < 0) 
  621. return -EWOULDBLOCK;
  622. if (aac_insert_entry(dev, index, AdapNormRespQueue, 
  623. (nointr & (int)aac_config.irq_mod)) != 0) 
  624. {
  625. }
  626. }
  627. }
  628. else 
  629. {
  630.          printk(KERN_WARNING "fib_adapter_complete: Unknown xferstate detected.n");
  631.          BUG();
  632. }   
  633. return 0;
  634. }
  635. /**
  636.  * fib_complete - fib completion handler
  637.  * @fib: FIB to complete
  638.  *
  639.  * Will do all necessary work to complete a FIB.
  640.  */
  641.  
  642. int fib_complete(struct fib * fibptr)
  643. {
  644. struct hw_fib * fib = fibptr->fib;
  645. /*
  646.  * Check for a fib which has already been completed
  647.  */
  648. if (fib->header.XferState == cpu_to_le32(0))
  649.          return 0;
  650. /*
  651.  * If we plan to do anything check the structure type first.
  652.  */ 
  653. if (fib->header.StructType != FIB_MAGIC)
  654.         return -EINVAL;
  655. /*
  656.  * This block completes a cdb which orginated on the host and we 
  657.  * just need to deallocate the cdb or reinit it. At this point the
  658.  * command is complete that we had sent to the adapter and this
  659.  * cdb could be reused.
  660.  */
  661. if((fib->header.XferState & cpu_to_le32(SentFromHost)) &&
  662. (fib->header.XferState & cpu_to_le32(AdapterProcessed)))
  663. {
  664. fib_dealloc(fibptr);
  665. }
  666. else if(fib->header.XferState & cpu_to_le32(SentFromHost))
  667. {
  668. /*
  669.  * This handles the case when the host has aborted the I/O
  670.  * to the adapter because the adapter is not responding
  671.  */
  672. fib_dealloc(fibptr);
  673. } else if(fib->header.XferState & cpu_to_le32(HostOwned)) {
  674. fib_dealloc(fibptr);
  675. } else {
  676. BUG();
  677. }   
  678. return 0;
  679. }
  680. /**
  681.  * aac_printf - handle printf from firmware
  682.  * @dev: Adapter
  683.  * @val: Message info
  684.  *
  685.  * Print a message passed to us by the controller firmware on the
  686.  * Adaptec board
  687.  */
  688. void aac_printf(struct aac_dev *dev, u32 val)
  689. {
  690. int length = val & 0xffff;
  691. int level = (val >> 16) & 0xffff;
  692. char *cp = dev->printfbuf;
  693. /*
  694.  * The size of the printfbuf is set in port.c
  695.  * There is no variable or define for it
  696.  */
  697. if (length > 255)
  698. length = 255;
  699. if (cp[length] != 0)
  700. cp[length] = 0;
  701. if (level == LOG_HIGH_ERROR)
  702. printk(KERN_WARNING "aacraid:%s", cp);
  703. else
  704. printk(KERN_INFO "aacraid:%s", cp);
  705. memset(cp, 0,  256);
  706. }
  707. /**
  708.  * aac_handle_aif - Handle a message from the firmware
  709.  * @dev: Which adapter this fib is from
  710.  * @fibptr: Pointer to fibptr from adapter
  711.  *
  712.  * This routine handles a driver notify fib from the adapter and
  713.  * dispatches it to the appropriate routine for handling.
  714.  */
  715. static void aac_handle_aif(struct aac_dev * dev, struct fib * fibptr)
  716. {
  717. struct hw_fib * fib = fibptr->fib;
  718. /*
  719.  * Set the status of this FIB to be Invalid parameter.
  720.  *
  721.  * *(u32 *)fib->data = ST_INVAL;
  722.  */
  723. *(u32 *)fib->data = cpu_to_le32(ST_OK);
  724. fib_adapter_complete(fibptr, sizeof(u32));
  725. }
  726. /**
  727.  * aac_command_thread - command processing thread
  728.  * @dev: Adapter to monitor
  729.  *
  730.  * Waits on the commandready event in it's queue. When the event gets set
  731.  * it will pull FIBs off it's queue. It will continue to pull FIBs off
  732.  * until the queue is empty. When the queue is empty it will wait for
  733.  * more FIBs.
  734.  */
  735.  
  736. int aac_command_thread(struct aac_dev * dev)
  737. {
  738. struct hw_fib *fib, *newfib;
  739. struct fib fibptr; /* for error logging */
  740. struct aac_queue_block *queues = dev->queues;
  741. struct aac_fib_context *fibctx;
  742. unsigned long flags;
  743. DECLARE_WAITQUEUE(wait, current);
  744. /*
  745.  * We can only have one thread per adapter for AIF's.
  746.  */
  747. if (dev->aif_thread)
  748. return -EINVAL;
  749. /*
  750.  * Set up the name that will appear in 'ps'
  751.  * stored in  task_struct.comm[16].
  752.  */
  753. sprintf(current->comm, "aacraid");
  754. daemonize();
  755. /*
  756.  * Let the DPC know it has a place to send the AIF's to.
  757.  */
  758. dev->aif_thread = 1;
  759. memset(&fibptr, 0, sizeof(struct fib));
  760. add_wait_queue(&queues->queue[HostNormCmdQueue].cmdready, &wait);
  761. set_current_state(TASK_INTERRUPTIBLE);
  762. while(1) 
  763. {
  764. spin_lock_irqsave(queues->queue[HostNormCmdQueue].lock, flags);
  765. while(!list_empty(&(queues->queue[HostNormCmdQueue].cmdq))) {
  766. struct list_head *entry;
  767. struct aac_aifcmd * aifcmd;
  768. set_current_state(TASK_RUNNING);
  769. entry = queues->queue[HostNormCmdQueue].cmdq.next;
  770. list_del(entry);
  771. spin_unlock_irqrestore(queues->queue[HostNormCmdQueue].lock, flags);
  772. fib = list_entry(entry, struct hw_fib, header.FibLinks);
  773. /*
  774.  * We will process the FIB here or pass it to a 
  775.  * worker thread that is TBD. We Really can't 
  776.  * do anything at this point since we don't have
  777.  * anything defined for this thread to do.
  778.  */
  779. memset(&fibptr, 0, sizeof(struct fib));
  780. fibptr.type = FSAFS_NTC_FIB_CONTEXT;
  781. fibptr.size = sizeof( struct fib );
  782. fibptr.fib = fib;
  783. fibptr.data = fib->data;
  784. fibptr.dev = dev;
  785. /*
  786.  * We only handle AifRequest fibs from the adapter.
  787.  */
  788. aifcmd = (struct aac_aifcmd *) fib->data;
  789. if (aifcmd->command == le16_to_cpu(AifCmdDriverNotify)) {
  790. aac_handle_aif(dev, &fibptr);
  791. } else {
  792. /* The u32 here is important and intended. We are using
  793.    32bit wrapping time to fit the adapter field */
  794.    
  795. u32 time_now, time_last;
  796. unsigned long flagv;
  797. time_now = jiffies/HZ;
  798. spin_lock_irqsave(&dev->fib_lock, flagv);
  799. entry = dev->fib_list.next;
  800. /*
  801.  * For each Context that is on the 
  802.  * fibctxList, make a copy of the
  803.  * fib, and then set the event to wake up the
  804.  * thread that is waiting for it.
  805.  */
  806. while (entry != &dev->fib_list) {
  807. /*
  808.  * Extract the fibctx
  809.  */
  810. fibctx = list_entry(entry, struct aac_fib_context, next);
  811. /*
  812.  * Check if the queue is getting
  813.  * backlogged
  814.  */
  815. if (fibctx->count > 20)
  816. {
  817. time_last = fibctx->jiffies;
  818. /*
  819.  * Has it been > 2 minutes 
  820.  * since the last read off
  821.  * the queue?
  822.  */
  823. if ((time_now - time_last) > 120) {
  824. entry = entry->next;
  825. aac_close_fib_context(dev, fibctx);
  826. continue;
  827. }
  828. }
  829. /*
  830.  * Warning: no sleep allowed while
  831.  * holding spinlock
  832.  */
  833. newfib = kmalloc(sizeof(struct hw_fib), GFP_ATOMIC);
  834. if (newfib) {
  835. /*
  836.  * Make the copy of the FIB
  837.  */
  838. memcpy(newfib, fib, sizeof(struct hw_fib));
  839. /*
  840.  * Put the FIB onto the
  841.  * fibctx's fibs
  842.  */
  843. list_add_tail(&newfib->header.FibLinks, &fibctx->fibs);
  844. fibctx->count++;
  845. /* 
  846.  * Set the event to wake up the
  847.  * thread that will waiting.
  848.  */
  849. up(&fibctx->wait_sem);
  850. } else {
  851. printk(KERN_WARNING "aifd: didn't allocate NewFib.n");
  852. }
  853. entry = entry->next;
  854. }
  855. /*
  856.  * Set the status of this FIB
  857.  */
  858. *(u32 *)fib->data = cpu_to_le32(ST_OK);
  859. fib_adapter_complete(&fibptr, sizeof(u32));
  860. spin_unlock_irqrestore(&dev->fib_lock, flagv);
  861. }
  862. spin_lock_irqsave(queues->queue[HostNormCmdQueue].lock, flags);
  863. }
  864. /*
  865.  * There are no more AIF's
  866.  */
  867. spin_unlock_irqrestore(queues->queue[HostNormCmdQueue].lock, flags);
  868. schedule();
  869. if(signal_pending(current))
  870. break;
  871. set_current_state(TASK_INTERRUPTIBLE);
  872. }
  873. remove_wait_queue(&queues->queue[HostNormCmdQueue].cmdready, &wait);
  874. dev->aif_thread = 0;
  875. complete_and_exit(&dev->aif_completion, 0);
  876. }