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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*+M*************************************************************************
  2.  * Adaptec AIC7xxx device driver proc support for Linux.
  3.  *
  4.  * Copyright (c) 1995, 1996 Dean W. Gehnert
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2, or (at your option)
  9.  * any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; see the file COPYING.  If not, write to
  18.  * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  *
  20.  * ----------------------------------------------------------------
  21.  *  o Modified from the EATA-DMA /proc support.
  22.  *  o Additional support for device block statistics provided by
  23.  *    Matthew Jacob.
  24.  *  o Correction of overflow by Heinz Mauelshagen
  25.  *  o Adittional corrections by Doug Ledford
  26.  *
  27.  *  Dean W. Gehnert, deang@teleport.com, 05/01/96
  28.  *
  29.  *  $Id: aic7xxx_proc.c,v 4.1 1997/06/97 08:23:42 deang Exp $
  30.  *-M*************************************************************************/
  31. #include <linux/config.h>
  32. #define BLS (&aic7xxx_buffer[size])
  33. #define HDRB 
  34. "             < 2K      2K+     4K+     8K+    16K+    32K+    64K+   128K+"
  35. #ifdef PROC_DEBUG
  36. extern int vsprintf(char *, const char *, va_list);
  37. static void
  38. proc_debug(const char *fmt, ...)
  39. {
  40.   va_list ap;
  41.   char buf[256];
  42.   va_start(ap, fmt);
  43.   vsprintf(buf, fmt, ap);
  44.   printk(buf);
  45.   va_end(ap);
  46. }
  47. #else /* PROC_DEBUG */
  48. #  define proc_debug(fmt, args...)
  49. #endif /* PROC_DEBUG */
  50. static int aic7xxx_buffer_size = 0;
  51. static char *aic7xxx_buffer = NULL;
  52. /*+F*************************************************************************
  53.  * Function:
  54.  *   aic7xxx_set_info
  55.  *
  56.  * Description:
  57.  *   Set parameters for the driver from the /proc filesystem.
  58.  *-F*************************************************************************/
  59. int
  60. aic7xxx_set_info(char *buffer, int length, struct Scsi_Host *HBAptr)
  61. {
  62.   proc_debug("aic7xxx_set_info(): %sn", buffer);
  63.   return (-ENOSYS);  /* Currently this is a no-op */
  64. }
  65. /*+F*************************************************************************
  66.  * Function:
  67.  *   aic7xxx_proc_info
  68.  *
  69.  * Description:
  70.  *   Return information to handle /proc support for the driver.
  71.  *-F*************************************************************************/
  72. int
  73. aic7xxx_proc_info ( char *buffer, char **start, off_t offset, int length, 
  74.                     int hostno, int inout)
  75. {
  76.   struct Scsi_Host *HBAptr;
  77.   struct aic7xxx_host *p;
  78.   int    size = 0;
  79.   unsigned char i;
  80.   struct aic7xxx_xferstats *sp;
  81.   unsigned char target;
  82.   HBAptr = NULL;
  83.   for(p=first_aic7xxx; p->host->host_no != hostno; p=p->next)
  84.     ;
  85.   if (!p)
  86.   {
  87.     size += sprintf(buffer, "Can't find adapter for host number %dn", hostno);
  88.     if (size > length)
  89.     {
  90.       return (size);
  91.     }
  92.     else
  93.     {
  94.       return (length);
  95.     }
  96.   }
  97.   HBAptr = p->host;
  98.   if (inout == TRUE) /* Has data been written to the file? */ 
  99.   {
  100.     return (aic7xxx_set_info(buffer, length, HBAptr));
  101.   }
  102.   p = (struct aic7xxx_host *) HBAptr->hostdata;
  103.   /*
  104.    * It takes roughly 1K of space to hold all relevant card info, not
  105.    * counting any proc stats, so we start out with a 1.5k buffer size and
  106.    * if proc_stats is defined, then we sweep the stats structure to see
  107.    * how many drives we will be printing out for and add 384 bytes per
  108.    * device with active stats.
  109.    *
  110.    * Hmmmm...that 1.5k seems to keep growing as items get added so they
  111.    * can be easily viewed for debugging purposes.  So, we bumped that
  112.    * 1.5k to 4k so we can quit having to bump it all the time.
  113.    */
  114.   size = 4096;
  115.   for (target = 0; target < MAX_TARGETS; target++)
  116.   {
  117.     if (p->dev_flags[target] & DEVICE_PRESENT)
  118. #ifdef AIC7XXX_PROC_STATS
  119.       size += 512;
  120. #else
  121.       size += 256;
  122. #endif
  123.   }
  124.   if (aic7xxx_buffer_size != size)
  125.   {
  126.     if (aic7xxx_buffer != NULL) 
  127.     {
  128.       kfree(aic7xxx_buffer);
  129.       aic7xxx_buffer_size = 0;
  130.     }
  131.     aic7xxx_buffer = kmalloc(size, GFP_KERNEL);
  132.   }
  133.   if (aic7xxx_buffer == NULL)
  134.   {
  135.     size = sprintf(buffer, "AIC7xxx - kmalloc error at line %dn",
  136.         __LINE__);
  137.     return size;
  138.   }
  139.   aic7xxx_buffer_size = size;
  140.   size = 0;
  141.   size += sprintf(BLS, "Adaptec AIC7xxx driver version: ");
  142.   size += sprintf(BLS, "%s/", AIC7XXX_C_VERSION);
  143.   size += sprintf(BLS, "%s", AIC7XXX_H_VERSION);
  144.   size += sprintf(BLS, "n");
  145.   size += sprintf(BLS, "Compile Options:n");
  146. #ifdef CONFIG_AIC7XXX_OLD_TCQ_ON_BY_DEFAULT
  147.   size += sprintf(BLS, "  TCQ Enabled By Default : Enabledn");
  148. #else
  149.   size += sprintf(BLS, "  TCQ Enabled By Default : Disabledn");
  150. #endif
  151. #ifdef AIC7XXX_PROC_STATS
  152.   size += sprintf(BLS, "  AIC7XXX_PROC_STATS     : Enabledn");
  153. #else
  154.   size += sprintf(BLS, "  AIC7XXX_PROC_STATS     : Disabledn");
  155. #endif
  156.   size += sprintf(BLS, "n");
  157.   size += sprintf(BLS, "Adapter Configuration:n");
  158.   size += sprintf(BLS, "           SCSI Adapter: %sn",
  159.       board_names[p->board_name_index]);
  160.   if (p->flags & AHC_TWIN)
  161.     size += sprintf(BLS, "                         Twin Channel Controller ");
  162.   else
  163.   {
  164.     char *channel = "";
  165.     char *ultra = "";
  166.     char *wide = "Narrow ";
  167.     if (p->flags & AHC_MULTI_CHANNEL)
  168.     {
  169.       channel = " Channel A";
  170.       if (p->flags & (AHC_CHNLB|AHC_CHNLC))
  171.         channel = (p->flags & AHC_CHNLB) ? " Channel B" : " Channel C";
  172.     }
  173.     if (p->features & AHC_WIDE)
  174.       wide = "Wide ";
  175.     if (p->features & AHC_ULTRA3)
  176.     {
  177.       switch(p->chip & AHC_CHIPID_MASK)
  178.       {
  179.         case AHC_AIC7892:
  180.         case AHC_AIC7899:
  181.           ultra = "Ultra-160/m LVD/SE ";
  182.           break;
  183.         default:
  184.           ultra = "Ultra-3 LVD/SE ";
  185.           break;
  186.       }
  187.     }
  188.     else if (p->features & AHC_ULTRA2)
  189.       ultra = "Ultra-2 LVD/SE ";
  190.     else if (p->features & AHC_ULTRA)
  191.       ultra = "Ultra ";
  192.     size += sprintf(BLS, "                           %s%sController%s ",
  193.       ultra, wide, channel);
  194.   }
  195.   switch(p->chip & ~AHC_CHIPID_MASK)
  196.   {
  197.     case AHC_VL:
  198.       size += sprintf(BLS, "at VLB slot %dn", p->pci_device_fn);
  199.       break;
  200.     case AHC_EISA:
  201.       size += sprintf(BLS, "at EISA slot %dn", p->pci_device_fn);
  202.       break;
  203.     default:
  204.       size += sprintf(BLS, "at PCI %d/%d/%dn", p->pci_bus,
  205.         PCI_SLOT(p->pci_device_fn), PCI_FUNC(p->pci_device_fn));
  206.       break;
  207.   }
  208.   if( !(p->maddr) )
  209.   {
  210.     size += sprintf(BLS, "    Programmed I/O Base: %lxn", p->base);
  211.   }
  212.   else
  213.   {
  214.     size += sprintf(BLS, "    PCI MMAPed I/O Base: 0x%lxn", p->mbase);
  215.   }
  216.   if( (p->chip & (AHC_VL | AHC_EISA)) )
  217.   {
  218.     size += sprintf(BLS, "    BIOS Memory Address: 0x%08xn", p->bios_address);
  219.   }
  220.   size += sprintf(BLS, " Adapter SEEPROM Config: %sn",
  221.           (p->flags & AHC_SEEPROM_FOUND) ? "SEEPROM found and used." :
  222.          ((p->flags & AHC_USEDEFAULTS) ? "SEEPROM not found, using defaults." :
  223.            "SEEPROM not found, using leftover BIOS values.") );
  224.   size += sprintf(BLS, "      Adaptec SCSI BIOS: %sn",
  225.           (p->flags & AHC_BIOS_ENABLED) ? "Enabled" : "Disabled");
  226.   size += sprintf(BLS, "                    IRQ: %dn", HBAptr->irq);
  227.   size += sprintf(BLS, "                   SCBs: Active %d, Max Active %d,n",
  228.             p->activescbs, p->max_activescbs);
  229.   size += sprintf(BLS, "                         Allocated %d, HW %d, "
  230.             "Page %dn", p->scb_data->numscbs, p->scb_data->maxhscbs,
  231.             p->scb_data->maxscbs);
  232.   if (p->flags & AHC_EXTERNAL_SRAM)
  233.     size += sprintf(BLS, "                         Using External SCB SRAMn");
  234.   size += sprintf(BLS, "             Interrupts: %ld", p->isr_count);
  235.   if (p->chip & AHC_EISA)
  236.   {
  237.     size += sprintf(BLS, " %sn",
  238.         (p->pause & IRQMS) ? "(Level Sensitive)" : "(Edge Triggered)");
  239.   }
  240.   else
  241.   {
  242.     size += sprintf(BLS, "n");
  243.   }
  244.   size += sprintf(BLS, "      BIOS Control Word: 0x%04xn",
  245.             p->bios_control);
  246.   size += sprintf(BLS, "   Adapter Control Word: 0x%04xn",
  247.             p->adapter_control);
  248.   size += sprintf(BLS, "   Extended Translation: %sabledn",
  249.       (p->flags & AHC_EXTEND_TRANS_A) ? "En" : "Dis");
  250.   size += sprintf(BLS, "Disconnect Enable Flags: 0x%04xn", p->discenable);
  251.   if (p->features & (AHC_ULTRA | AHC_ULTRA2))
  252.   {
  253.     size += sprintf(BLS, "     Ultra Enable Flags: 0x%04xn", p->ultraenb);
  254.   }
  255.   size += sprintf(BLS, " Tag Queue Enable Flags: 0x%04xn", p->tagenable);
  256.   size += sprintf(BLS, "Ordered Queue Tag Flags: 0x%04xn", p->orderedtag);
  257.   size += sprintf(BLS, "Default Tag Queue Depth: %dn", AIC7XXX_CMDS_PER_DEVICE);
  258.   size += sprintf(BLS, "    Tagged Queue By Device array for aic7xxx host "
  259.                        "instance %d:n", p->instance);
  260.   size += sprintf(BLS, "      {");
  261.   for(i=0; i < (MAX_TARGETS - 1); i++)
  262.     size += sprintf(BLS, "%d,",aic7xxx_tag_info[p->instance].tag_commands[i]);
  263.   size += sprintf(BLS, "%d}n",aic7xxx_tag_info[p->instance].tag_commands[i]);
  264.   size += sprintf(BLS, "    Actual queue depth per device for aic7xxx host "
  265.                        "instance %d:n", p->instance);
  266.   size += sprintf(BLS, "      {");
  267.   for(i=0; i < (MAX_TARGETS - 1); i++)
  268.     size += sprintf(BLS, "%d,", p->dev_max_queue_depth[i]);
  269.   size += sprintf(BLS, "%d}n", p->dev_max_queue_depth[i]);
  270.   size += sprintf(BLS, "n");
  271.   size += sprintf(BLS, "Statistics:nn");
  272.   for (target = 0; target < MAX_TARGETS; target++)
  273.   {
  274.     sp = &p->stats[target];
  275.     if ((p->dev_flags[target] & DEVICE_PRESENT) == 0)
  276.     {
  277.       continue;
  278.     }
  279.     if (p->features & AHC_TWIN)
  280.     {
  281.       size += sprintf(BLS, "(scsi%d:%d:%d:%d)n",
  282.           p->host_no, (target >> 3), (target & 0x7), 0);
  283.     }
  284.     else
  285.     {
  286.       size += sprintf(BLS, "(scsi%d:%d:%d:%d)n",
  287.           p->host_no, 0, target, 0);
  288.     }
  289.     size += sprintf(BLS, "  Device using %s/%s",
  290.           (p->transinfo[target].cur_width == MSG_EXT_WDTR_BUS_16_BIT) ?
  291.           "Wide" : "Narrow",
  292.           (p->transinfo[target].cur_offset != 0) ?
  293.           "Sync transfers at " : "Async transfers.n" );
  294.     if (p->transinfo[target].cur_offset != 0)
  295.     {
  296.       struct aic7xxx_syncrate *sync_rate;
  297.       unsigned char options = p->transinfo[target].cur_options;
  298.       int period = p->transinfo[target].cur_period;
  299.       int rate = (p->transinfo[target].cur_width ==
  300.                   MSG_EXT_WDTR_BUS_16_BIT) ? 1 : 0;
  301.       sync_rate = aic7xxx_find_syncrate(p, &period, 0, &options);
  302.       if (sync_rate != NULL)
  303.       {
  304.         size += sprintf(BLS, "%s MByte/sec, offset %dn",
  305.                         sync_rate->rate[rate],
  306.                         p->transinfo[target].cur_offset );
  307.       }
  308.       else
  309.       {
  310.         size += sprintf(BLS, "3.3 MByte/sec, offset %dn",
  311.                         p->transinfo[target].cur_offset );
  312.       }
  313.     }
  314.     size += sprintf(BLS, "  Transinfo settings: ");
  315.     size += sprintf(BLS, "current(%d/%d/%d/%d), ",
  316.                     p->transinfo[target].cur_period,
  317.                     p->transinfo[target].cur_offset,
  318.                     p->transinfo[target].cur_width,
  319.                     p->transinfo[target].cur_options);
  320.     size += sprintf(BLS, "goal(%d/%d/%d/%d), ",
  321.                     p->transinfo[target].goal_period,
  322.                     p->transinfo[target].goal_offset,
  323.                     p->transinfo[target].goal_width,
  324.                     p->transinfo[target].goal_options);
  325.     size += sprintf(BLS, "user(%d/%d/%d/%d)n",
  326.                     p->transinfo[target].user_period,
  327.                     p->transinfo[target].user_offset,
  328.                     p->transinfo[target].user_width,
  329.                     p->transinfo[target].user_options);
  330. #ifdef AIC7XXX_PROC_STATS
  331.     size += sprintf(BLS, "  Total transfers %ld (%ld reads and %ld writes)n",
  332.         sp->r_total + sp->w_total, sp->r_total, sp->w_total);
  333.     size += sprintf(BLS, "%sn", HDRB);
  334.     size += sprintf(BLS, "   Reads:");
  335.     for (i = 0; i < NUMBER(sp->r_bins); i++)
  336.     {
  337.       size += sprintf(BLS, " %7ld", sp->r_bins[i]);
  338.     }
  339.     size += sprintf(BLS, "n");
  340.     size += sprintf(BLS, "  Writes:");
  341.     for (i = 0; i < NUMBER(sp->w_bins); i++)
  342.     {
  343.       size += sprintf(BLS, " %7ld", sp->w_bins[i]);
  344.     }
  345.     size += sprintf(BLS, "n");
  346. #else
  347.     size += sprintf(BLS, "  Total transfers %ld (%ld reads and %ld writes)n",
  348.         sp->r_total + sp->w_total, sp->r_total, sp->w_total);
  349. #endif /* AIC7XXX_PROC_STATS */
  350.     size += sprintf(BLS, "nn");
  351.   }
  352.   if (size >= aic7xxx_buffer_size)
  353.   {
  354.     printk(KERN_WARNING "aic7xxx: Overflow in aic7xxx_proc.cn");
  355.   }
  356.   if (offset > size - 1)
  357.   {
  358.     kfree(aic7xxx_buffer);
  359.     aic7xxx_buffer = NULL;
  360.     aic7xxx_buffer_size = length = 0;
  361.     *start = NULL;
  362.   }
  363.   else
  364.   {
  365.     *start = buffer;
  366.     length = MIN(length, size - offset);
  367.     memcpy(buffer, &aic7xxx_buffer[offset], length);
  368.   }
  369.   return (length);
  370. }
  371. /*
  372.  * Overrides for Emacs so that we follow Linus's tabbing style.
  373.  * Emacs will notice this stuff at the end of the file and automatically
  374.  * adjust the settings for this buffer only.  This must remain at the end
  375.  * of the file.
  376.  * ---------------------------------------------------------------------------
  377.  * Local variables:
  378.  * c-indent-level: 2
  379.  * c-brace-imaginary-offset: 0
  380.  * c-brace-offset: -2
  381.  * c-argdecl-indent: 2
  382.  * c-label-offset: -2
  383.  * c-continued-statement-offset: 2
  384.  * c-continued-brace-offset: 0
  385.  * indent-tabs-mode: nil
  386.  * tab-width: 8
  387.  * End:
  388.  */