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

嵌入式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.  *  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.  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",
  259. qid, q->numpending);
  260. return 0;
  261. } else {
  262.         *entry = q->base + *index;
  263. return 1;
  264. }
  265. }   
  266. /**
  267.  * aac_queue_get - get the next free QE
  268.  * @dev: Adapter
  269.  * @index: Returned index
  270.  * @priority: Priority of fib
  271.  * @fib: Fib to associate with the queue entry
  272.  * @wait: Wait if queue full
  273.  * @fibptr: Driver fib object to go with fib
  274.  * @nonotify: Don't notify the adapter
  275.  *
  276.  * Gets the next free QE off the requested priorty adapter command
  277.  * queue and associates the Fib with the QE. The QE represented by
  278.  * index is ready to insert on the queue when this routine returns
  279.  * success.
  280.  */
  281. 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)
  282. {
  283. struct aac_entry * entry = NULL;
  284. int map = 0;
  285. struct aac_queue * q = &dev->queues->queue[qid];
  286. spin_lock_irqsave(q->lock, q->SavedIrql);
  287.     
  288. if (qid == AdapHighCmdQueue || qid == AdapNormCmdQueue) 
  289. {
  290. /*  if no entries wait for some if caller wants to */
  291.          while (!aac_get_entry(dev, qid, &entry, index, nonotify)) 
  292.          {
  293. printk(KERN_ERR "GetEntries failedn");
  294. }
  295.         /*
  296.          * Setup queue entry with a command, status and fib mapped
  297.          */
  298.         entry->size = cpu_to_le32(le16_to_cpu(fib->header.Size));
  299.         map = 1;
  300. }
  301. else if (qid == AdapHighRespQueue || qid == AdapNormRespQueue)
  302. {
  303.         while(!aac_get_entry(dev, qid, &entry, index, nonotify)) 
  304.         {
  305. /* if no entries wait for some if caller wants to */
  306. }
  307.          /*
  308.           * Setup queue entry with command, status and fib mapped
  309.           */
  310.          entry->size = cpu_to_le32(le16_to_cpu(fib->header.Size));
  311.          entry->addr = cpu_to_le32(fib->header.SenderFibAddress);      /* Restore adapters pointer to the FIB */
  312. fib->header.ReceiverFibAddress = fib->header.SenderFibAddress; /* Let the adapter now where to find its data */
  313.          map = 0;
  314. /*
  315.  * If MapFib is true than we need to map the Fib and put pointers
  316.  * in the queue entry.
  317.  */
  318. if (map)
  319. entry->addr = cpu_to_le32((unsigned long)(fibptr->logicaladdr));
  320. return 0;
  321. }
  322. /**
  323.  * aac_insert_entry - insert a queue entry
  324.  * @dev: Adapter
  325.  * @index: Index of entry to insert
  326.  * @qid: Queue number
  327.  * @nonotify: Suppress adapter notification
  328.  *
  329.  * Gets the next free QE off the requested priorty adapter command
  330.  * queue and associates the Fib with the QE. The QE represented by
  331.  * index is ready to insert on the queue when this routine returns
  332.  * success.
  333.  */
  334.  
  335. static int aac_insert_entry(struct aac_dev * dev, u32 index, u32 qid, unsigned long nonotify) 
  336. {
  337. struct aac_queue * q = &dev->queues->queue[qid];
  338. if(q == NULL)
  339. BUG();
  340. *(q->headers.producer) = cpu_to_le32(index + 1);
  341. spin_unlock_irqrestore(q->lock, q->SavedIrql);
  342. if (qid == AdapHighCmdQueue ||
  343.     qid == AdapNormCmdQueue ||
  344.     qid == AdapHighRespQueue ||
  345.     qid == AdapNormRespQueue)
  346. {
  347. if (!nonotify)
  348. aac_adapter_notify(dev, qid);
  349. }
  350. else
  351. printk("Suprise insert!n");
  352. return 0;
  353. }
  354. /*
  355.  * Define the highest level of host to adapter communication routines. 
  356.  * These routines will support host to adapter FS commuication. These 
  357.  * routines have no knowledge of the commuication method used. This level
  358.  * sends and receives FIBs. This level has no knowledge of how these FIBs
  359.  * get passed back and forth.
  360.  */
  361. /**
  362.  * fib_send - send a fib to the adapter
  363.  * @command: Command to send
  364.  * @fibptr: The fib
  365.  * @size: Size of fib data area
  366.  * @priority: Priority of Fib
  367.  * @wait: Async/sync select
  368.  * @reply: True if a reply is wanted
  369.  * @callback: Called with reply
  370.  * @callback_data: Passed to callback
  371.  *
  372.  * Sends the requested FIB to the adapter and optionally will wait for a
  373.  * response FIB. If the caller does not wish to wait for a response than
  374.  * an event to wait on must be supplied. This event will be set when a
  375.  * response FIB is received from the adapter.
  376.  */
  377.  
  378. int fib_send(u16 command, struct fib * fibptr, unsigned long size,  int priority, int wait, int reply, fib_callback callback, void * callback_data)
  379. {
  380. u32 index;
  381. u32 qid;
  382. struct aac_dev * dev = fibptr->dev;
  383. unsigned long nointr = 0;
  384. struct hw_fib * fib = fibptr->fib;
  385. struct aac_queue * q;
  386. unsigned long flags = 0;
  387. if (!(le32_to_cpu(fib->header.XferState) & HostOwned))
  388. return -EBUSY;
  389. /*
  390.  * There are 5 cases with the wait and reponse requested flags. 
  391.  * The only invalid cases are if the caller requests to wait and
  392.  * does not request a response and if the caller does not want a
  393.  * response and the Fibis not allocated from pool. If a response
  394.  * is not requesed the Fib will just be deallocaed by the DPC
  395.  * routine when the response comes back from the adapter. No
  396.  * further processing will be done besides deleting the Fib. We 
  397.  * will have a debug mode where the adapter can notify the host
  398.  * it had a problem and the host can log that fact.
  399.  */
  400. if (wait && !reply) {
  401. return -EINVAL;
  402. } else if (!wait && reply) {
  403. fib->header.XferState |= cpu_to_le32(Async | ResponseExpected);
  404. FIB_COUNTER_INCREMENT(aac_config.AsyncSent);
  405. } else if (!wait && !reply) {
  406. fib->header.XferState |= cpu_to_le32(NoResponseExpected);
  407. FIB_COUNTER_INCREMENT(aac_config.NoResponseSent);
  408. } else if (wait && reply) {
  409. fib->header.XferState |= cpu_to_le32(ResponseExpected);
  410. FIB_COUNTER_INCREMENT(aac_config.NormalSent);
  411. fib->header.SenderData = (unsigned long)fibptr; /* for callback */
  412. /*
  413.  * Set FIB state to indicate where it came from and if we want a
  414.  * response from the adapter. Also load the command from the
  415.  * caller.
  416.  */
  417. fib->header.SenderFibAddress = cpu_to_le32((u32)fib);
  418. fib->header.Command = cpu_to_le16(command);
  419. fib->header.XferState |= cpu_to_le32(SentFromHost);
  420. fibptr->fib->header.Flags = 0; /* Zero the flags field - its internal only...  */
  421. /*
  422.  * Set the size of the Fib we want to send to the adapter
  423.  */
  424. fib->header.Size = cpu_to_le16(sizeof(struct aac_fibhdr) + size);
  425. if (le16_to_cpu(fib->header.Size) > le16_to_cpu(fib->header.SenderSize)) {
  426. return -EMSGSIZE;
  427. }                
  428. /*
  429.  * Get a queue entry connect the FIB to it and send an notify
  430.  * the adapter a command is ready.
  431.  */
  432. if (priority == FsaHigh) {
  433. fib->header.XferState |= cpu_to_le32(HighPriority);
  434. qid = AdapHighCmdQueue;
  435. } else {
  436. fib->header.XferState |= cpu_to_le32(NormalPriority);
  437. qid = AdapNormCmdQueue;
  438. }
  439. q = &dev->queues->queue[qid];
  440. if(wait)
  441. spin_lock_irqsave(&fibptr->event_lock, flags);
  442. if(aac_queue_get( dev, &index, qid, fib, 1, fibptr, &nointr)<0)
  443. return -EWOULDBLOCK;
  444. dprintk((KERN_DEBUG "fib_send: inserting a queue entry at index %d.n",index));
  445. dprintk((KERN_DEBUG "Fib contents:.n"));
  446. dprintk((KERN_DEBUG "  Command =               %d.n", fib->header.Command));
  447. dprintk((KERN_DEBUG "  XferState  =            %x.n", fib->header.XferState));
  448. /*
  449.  * Fill in the Callback and CallbackContext if we are not
  450.  * going to wait.
  451.  */
  452. if (!wait) {
  453. fibptr->callback = callback;
  454. fibptr->callback_data = callback_data;
  455. }
  456. FIB_COUNTER_INCREMENT(aac_config.FibsSent);
  457. list_add_tail(&fibptr->queue, &q->pendingq);
  458. q->numpending++;
  459. fibptr->done = 0;
  460. if(aac_insert_entry(dev, index, qid, (nointr & aac_config.irq_mod)) < 0)
  461. return -EWOULDBLOCK;
  462. /*
  463.  * If the caller wanted us to wait for response wait now. 
  464.  */
  465.     
  466. if (wait) {
  467. spin_unlock_irqrestore(&fibptr->event_lock, flags);
  468. down(&fibptr->event_wait);
  469. if(fibptr->done == 0)
  470. BUG();
  471. if((fibptr->flags & FIB_CONTEXT_FLAG_TIMED_OUT))
  472. return -ETIMEDOUT;
  473. else
  474. return 0;
  475. }
  476. /*
  477.  * If the user does not want a response than return success otherwise
  478.  * return pending
  479.  */
  480. if (reply)
  481. return -EINPROGRESS;
  482. else
  483. return 0;
  484. }
  485. /** 
  486.  * aac_consumer_get - get the top of the queue
  487.  * @dev: Adapter
  488.  * @q: Queue
  489.  * @entry: Return entry
  490.  *
  491.  * Will return a pointer to the entry on the top of the queue requested that
  492.  *  we are a consumer of, and return the address of the queue entry. It does
  493.  * not change the state of the queue. 
  494.  */
  495. int aac_consumer_get(struct aac_dev * dev, struct aac_queue * q, struct aac_entry **entry)
  496. {
  497. u32 index;
  498. int status;
  499. if (*q->headers.producer == *q->headers.consumer) {
  500. status = 0;
  501. } else {
  502. /*
  503.  * The consumer index must be wrapped if we have reached
  504.  * the end of the queue, else we just use the entry
  505.  * pointed to by the header index
  506.  */
  507. if (le32_to_cpu(*q->headers.consumer) >= q->entries) 
  508. index = 0;
  509. else
  510.         index = le32_to_cpu(*q->headers.consumer);
  511. *entry = q->base + index;
  512. status = 1;
  513. }
  514. return(status);
  515. }
  516. int aac_consumer_avail(struct aac_dev *dev, struct aac_queue * q)
  517. {
  518. return (*q->headers.producer != *q->headers.consumer);
  519. }
  520. /**
  521.  * aac_consumer_free - free consumer entry
  522.  * @dev: Adapter
  523.  * @q: Queue
  524.  * @qid: Queue ident
  525.  *
  526.  * Frees up the current top of the queue we are a consumer of. If the
  527.  * queue was full notify the producer that the queue is no longer full.
  528.  */
  529. void aac_consumer_free(struct aac_dev * dev, struct aac_queue *q, u32 qid)
  530. {
  531. int wasfull = 0;
  532. u32 notify;
  533. if (*q->headers.producer+1 == *q->headers.consumer)
  534. wasfull = 1;
  535.         
  536. if (le32_to_cpu(*q->headers.consumer) >= q->entries)
  537. *q->headers.consumer = cpu_to_le32(1);
  538. else
  539. *q->headers.consumer = cpu_to_le32(le32_to_cpu(*q->headers.consumer)+1);
  540.         
  541. if (wasfull) {
  542. switch (qid) {
  543. case HostNormCmdQueue:
  544. notify = HostNormCmdNotFull;
  545. break;
  546. case HostHighCmdQueue:
  547. notify = HostHighCmdNotFull;
  548. break;
  549. case HostNormRespQueue:
  550. notify = HostNormRespNotFull;
  551. break;
  552. case HostHighRespQueue:
  553. notify = HostHighRespNotFull;
  554. break;
  555. default:
  556. BUG();
  557. return;
  558. }
  559. aac_adapter_notify(dev, notify);
  560. }
  561. }        
  562. /**
  563.  * fib_adapter_complete - complete adapter issued fib
  564.  * @fibptr: fib to complete
  565.  * @size: size of fib
  566.  *
  567.  * Will do all necessary work to complete a FIB that was sent from
  568.  * the adapter.
  569.  */
  570. int fib_adapter_complete(struct fib * fibptr, unsigned short size)
  571. {
  572. struct hw_fib * fib = fibptr->fib;
  573. struct aac_dev * dev = fibptr->dev;
  574. unsigned long nointr = 0;
  575. if (le32_to_cpu(fib->header.XferState) == 0)
  576.          return 0;
  577. /*
  578.  * If we plan to do anything check the structure type first.
  579.  */ 
  580. if ( fib->header.StructType != FIB_MAGIC ) {
  581.          return -EINVAL;
  582. }
  583. /*
  584.  * This block handles the case where the adapter had sent us a
  585.  * command and we have finished processing the command. We
  586.  * call completeFib when we are done processing the command 
  587.  * and want to send a response back to the adapter. This will 
  588.  * send the completed cdb to the adapter.
  589.  */
  590. if (fib->header.XferState & cpu_to_le32(SentFromAdapter)) {
  591.         fib->header.XferState |= cpu_to_le32(HostProcessed);
  592.         if (fib->header.XferState & cpu_to_le32(HighPriority)) {
  593.          u32 index;
  594.         if (size) 
  595. {
  596. size += sizeof(struct aac_fibhdr);
  597. if (size > le16_to_cpu(fib->header.SenderSize))
  598. return -EMSGSIZE;
  599. fib->header.Size = cpu_to_le16(size);
  600. }
  601. if(aac_queue_get(dev, &index, AdapHighRespQueue, fib, 1, NULL, &nointr) < 0) {
  602. return -EWOULDBLOCK;
  603. }
  604. if (aac_insert_entry(dev, index, AdapHighRespQueue,  (nointr & (int)aac_config.irq_mod)) != 0) {
  605. }
  606. }
  607. else if (fib->header.XferState & NormalPriority) 
  608. {
  609. u32 index;
  610. if (size) {
  611. size += sizeof(struct aac_fibhdr);
  612. if (size > le16_to_cpu(fib->header.SenderSize)) 
  613. return -EMSGSIZE;
  614. fib->header.Size = cpu_to_le16(size);
  615. }
  616. if (aac_queue_get(dev, &index, AdapNormRespQueue, fib, 1, NULL, &nointr) < 0) 
  617. return -EWOULDBLOCK;
  618. if (aac_insert_entry(dev, index, AdapNormRespQueue, 
  619. (nointr & (int)aac_config.irq_mod)) != 0) 
  620. {
  621. }
  622. }
  623. }
  624. else 
  625. {
  626.          printk(KERN_WARNING "fib_complete: Unknown xferstate detected.n");
  627.          BUG();
  628. }   
  629. return 0;
  630. }
  631. /**
  632.  * fib_complete - fib completion handler
  633.  * @fib: FIB to complete
  634.  *
  635.  * Will do all necessary work to complete a FIB.
  636.  */
  637.  
  638. int fib_complete(struct fib * fibptr)
  639. {
  640. struct hw_fib * fib = fibptr->fib;
  641. /*
  642.  * Check for a fib which has already been completed
  643.  */
  644. if (fib->header.XferState == cpu_to_le32(0))
  645.          return 0;
  646. /*
  647.  * If we plan to do anything check the structure type first.
  648.  */ 
  649. if (fib->header.StructType != FIB_MAGIC)
  650.         return -EINVAL;
  651. /*
  652.  * This block completes a cdb which orginated on the host and we 
  653.  * just need to deallocate the cdb or reinit it. At this point the
  654.  * command is complete that we had sent to the adapter and this
  655.  * cdb could be reused.
  656.  */
  657. if((fib->header.XferState & cpu_to_le32(SentFromHost)) &&
  658. (fib->header.XferState & cpu_to_le32(AdapterProcessed)))
  659. {
  660. fib_dealloc(fibptr);
  661. }
  662. else if(fib->header.XferState & cpu_to_le32(SentFromHost))
  663. {
  664. /*
  665.  * This handles the case when the host has aborted the I/O
  666.  * to the adapter because the adapter is not responding
  667.  */
  668. fib_dealloc(fibptr);
  669. } else if(fib->header.XferState & cpu_to_le32(HostOwned)) {
  670. fib_dealloc(fibptr);
  671. } else {
  672. BUG();
  673. }   
  674. return 0;
  675. }
  676. /**
  677.  * aac_printf - handle printf from firmware
  678.  * @dev: Adapter
  679.  * @val: Message info
  680.  *
  681.  * Print a message passed to us by the controller firmware on the
  682.  * Adaptec board
  683.  */
  684. void aac_printf(struct aac_dev *dev, u32 val)
  685. {
  686. int length = val & 0xffff;
  687. int level = (val >> 16) & 0xffff;
  688. char *cp = dev->printfbuf;
  689. /*
  690.  * The size of the printfbuf is set in port.c
  691.  * There is no variable or define for it
  692.  */
  693. if (length > 255)
  694. length = 255;
  695. if (cp[length] != 0)
  696. cp[length] = 0;
  697. if (level == LOG_HIGH_ERROR)
  698. printk(KERN_WARNING "aacraid:%s.n", cp);
  699. else
  700. printk(KERN_INFO "aacraid:%s.n", cp);
  701. memset(cp, 0,  256);
  702. }
  703. /**
  704.  * aac_handle_aif - Handle a message from the firmware
  705.  * @dev: Which adapter this fib is from
  706.  * @fibptr: Pointer to fibptr from adapter
  707.  *
  708.  * This routine handles a driver notify fib from the adapter and
  709.  * dispatches it to the appropriate routine for handling.
  710.  */
  711. static void aac_handle_aif(struct aac_dev * dev, struct fib * fibptr)
  712. {
  713. struct hw_fib * fib = fibptr->fib;
  714. /*
  715.  * Set the status of this FIB to be Invalid parameter.
  716.  *
  717.  * *(u32 *)fib->data = ST_INVAL;
  718.  */
  719. *(u32 *)fib->data = cpu_to_le32(ST_OK);
  720. fib_adapter_complete(fibptr, sizeof(u32));
  721. }
  722. /**
  723.  * aac_command_thread - command processing thread
  724.  * @dev: Adapter to monitor
  725.  *
  726.  * Waits on the commandready event in it's queue. When the event gets set
  727.  * it will pull FIBs off it's queue. It will continue to pull FIBs off
  728.  * until the queue is empty. When the queue is empty it will wait for
  729.  * more FIBs.
  730.  */
  731.  
  732. int aac_command_thread(struct aac_dev * dev)
  733. {
  734. struct hw_fib *fib, *newfib;
  735. struct fib fibptr; /* for error logging */
  736. struct aac_queue_block *queues = dev->queues;
  737. struct aac_fib_context *fibctx;
  738. unsigned long flags;
  739. DECLARE_WAITQUEUE(wait, current);
  740. /*
  741.  * We can only have one thread per adapter for AIF's.
  742.  */
  743. if (dev->aif_thread)
  744. return -EINVAL;
  745. /*
  746.  * Set up the name that will appear in 'ps'
  747.  * stored in  task_struct.comm[16].
  748.  */
  749. sprintf(current->comm, "aacraid");
  750. daemonize();
  751. /*
  752.  * Let the DPC know it has a place to send the AIF's to.
  753.  */
  754. dev->aif_thread = 1;
  755. memset(&fibptr, 0, sizeof(struct fib));
  756. add_wait_queue(&queues->queue[HostNormCmdQueue].cmdready, &wait);
  757. set_current_state(TASK_INTERRUPTIBLE);
  758. while(1) 
  759. {
  760. spin_lock_irqsave(queues->queue[HostNormCmdQueue].lock, flags);
  761. while(!list_empty(&(queues->queue[HostNormCmdQueue].cmdq))) {
  762. struct list_head *entry;
  763. struct aac_aifcmd * aifcmd;
  764. set_current_state(TASK_RUNNING);
  765. entry = queues->queue[HostNormCmdQueue].cmdq.next;
  766. list_del(entry);
  767. spin_unlock_irqrestore(queues->queue[HostNormCmdQueue].lock, flags);
  768. fib = list_entry(entry, struct hw_fib, header.FibLinks);
  769. /*
  770.  * We will process the FIB here or pass it to a 
  771.  * worker thread that is TBD. We Really can't 
  772.  * do anything at this point since we don't have
  773.  * anything defined for this thread to do.
  774.  */
  775. memset(&fibptr, 0, sizeof(struct fib));
  776. fibptr.type = FSAFS_NTC_FIB_CONTEXT;
  777. fibptr.size = sizeof( struct fib );
  778. fibptr.fib = fib;
  779. fibptr.data = fib->data;
  780. fibptr.dev = dev;
  781. /*
  782.  * We only handle AifRequest fibs from the adapter.
  783.  */
  784. aifcmd = (struct aac_aifcmd *) fib->data;
  785. if (aifcmd->command == le16_to_cpu(AifCmdDriverNotify)) {
  786. aac_handle_aif(dev, &fibptr);
  787. } else {
  788. /* The u32 here is important and intended. We are using
  789.    32bit wrapping time to fit the adapter field */
  790.    
  791. u32 time_now, time_last;
  792. unsigned long flagv;
  793. time_now = jiffies/HZ;
  794. spin_lock_irqsave(&dev->fib_lock, flagv);
  795. entry = dev->fib_list.next;
  796. /*
  797.  * For each Context that is on the 
  798.  * fibctxList, make a copy of the
  799.  * fib, and then set the event to wake up the
  800.  * thread that is waiting for it.
  801.  */
  802. while (entry != &dev->fib_list) {
  803. /*
  804.  * Extract the fibctx
  805.  */
  806. fibctx = list_entry(entry, struct aac_fib_context, next);
  807. /*
  808.  * Check if the queue is getting
  809.  * backlogged
  810.  */
  811. if (fibctx->count > 20)
  812. {
  813. time_last = fibctx->jiffies;
  814. /*
  815.  * Has it been > 2 minutes 
  816.  * since the last read off
  817.  * the queue?
  818.  */
  819. if ((time_now - time_last) > 120) {
  820. entry = entry->next;
  821. aac_close_fib_context(dev, fibctx);
  822. continue;
  823. }
  824. }
  825. /*
  826.  * Warning: no sleep allowed while
  827.  * holding spinlock
  828.  */
  829. newfib = kmalloc(sizeof(struct hw_fib), GFP_ATOMIC);
  830. if (newfib) {
  831. /*
  832.  * Make the copy of the FIB
  833.  */
  834. memcpy(newfib, fib, sizeof(struct hw_fib));
  835. /*
  836.  * Put the FIB onto the
  837.  * fibctx's fibs
  838.  */
  839. list_add_tail(&newfib->header.FibLinks, &fibctx->fibs);
  840. fibctx->count++;
  841. /* 
  842.  * Set the event to wake up the
  843.  * thread that will waiting.
  844.  */
  845. up(&fibctx->wait_sem);
  846. } else {
  847. printk(KERN_WARNING "aifd: didn't allocate NewFib.n");
  848. }
  849. entry = entry->next;
  850. }
  851. /*
  852.  * Set the status of this FIB
  853.  */
  854. *(u32 *)fib->data = cpu_to_le32(ST_OK);
  855. fib_adapter_complete(&fibptr, sizeof(u32));
  856. spin_unlock_irqrestore(&dev->fib_lock, flagv);
  857. }
  858. spin_lock_irqsave(queues->queue[HostNormCmdQueue].lock, flags);
  859. }
  860. /*
  861.  * There are no more AIF's
  862.  */
  863. spin_unlock_irqrestore(queues->queue[HostNormCmdQueue].lock, flags);
  864. schedule();
  865. if(signal_pending(current))
  866. break;
  867. set_current_state(TASK_INTERRUPTIBLE);
  868. }
  869. remove_wait_queue(&queues->queue[HostNormCmdQueue].cmdready, &wait);
  870. dev->aif_thread = 0;
  871. complete_and_exit(&dev->aif_completion, 0);
  872. }