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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  hosts.c Copyright (C) 1992 Drew Eckhardt
  3.  *          Copyright (C) 1993, 1994, 1995 Eric Youngdale
  4.  *
  5.  *  mid to lowlevel SCSI driver interface
  6.  *      Initial versions: Drew Eckhardt
  7.  *      Subsequent revisions: Eric Youngdale
  8.  *
  9.  *  <drew@colorado.edu>
  10.  *
  11.  *  Jiffies wrap fixes (host->resetting), 3 Dec 1998 Andrea Arcangeli
  12.  *  Added QLOGIC QLA1280 SCSI controller kernel host support. 
  13.  *     August 4, 1999 Fred Lewis, Intel DuPont
  14.  *
  15.  *  Updated to reflect the new initialization scheme for the higher 
  16.  *  level of scsi drivers (sd/sr/st)
  17.  *  September 17, 2000 Torben Mathiasen <tmm@image.dk>
  18.  */
  19. /*
  20.  *  This file contains the medium level SCSI
  21.  *  host interface initialization, as well as the scsi_hosts array of SCSI
  22.  *  hosts currently present in the system.
  23.  */
  24. #define __NO_VERSION__
  25. #include <linux/module.h>
  26. #include <linux/blk.h>
  27. #include <linux/kernel.h>
  28. #include <linux/string.h>
  29. #include <linux/mm.h>
  30. #include <linux/proc_fs.h>
  31. #include <linux/init.h>
  32. #define __KERNEL_SYSCALLS__
  33. #include <linux/unistd.h>
  34. #include "scsi.h"
  35. #include "hosts.h"
  36. /*
  37. static const char RCSid[] = "$Header: /vger/u4/cvs/linux/drivers/scsi/hosts.c,v 1.20 1996/12/12 19:18:32 davem Exp $";
  38. */
  39. /*
  40.  *  The scsi host entries should be in the order you wish the
  41.  *  cards to be detected.  A driver may appear more than once IFF
  42.  *  it can deal with being detected (and therefore initialized)
  43.  *  with more than one simultaneous host number, can handle being
  44.  *  reentrant, etc.
  45.  *
  46.  *  They may appear in any order, as each SCSI host is told which host 
  47.  *  number it is during detection.
  48.  */
  49. /* This is a placeholder for controllers that are not configured into
  50.  * the system - we do this to ensure that the controller numbering is
  51.  * always consistent, no matter how the kernel is configured. */
  52. #define NO_CONTROLLER {NULL, NULL, NULL, NULL, NULL, NULL, NULL, 
  53.    NULL, NULL, 0, 0, 0, 0, 0, 0}
  54. /*
  55.  *  When figure is run, we don't want to link to any object code.  Since
  56.  *  the macro for each host will contain function pointers, we cannot
  57.  *  use it and instead must use a "blank" that does no such
  58.  *  idiocy.
  59.  */
  60. Scsi_Host_Template * scsi_hosts;
  61. /*
  62.  *  Our semaphores and timeout counters, where size depends on 
  63.  *      MAX_SCSI_HOSTS here.
  64.  */
  65. Scsi_Host_Name * scsi_host_no_list;
  66. struct Scsi_Host * scsi_hostlist;
  67. struct Scsi_Device_Template * scsi_devicelist;
  68. int max_scsi_hosts;
  69. int next_scsi_host;
  70. void
  71. scsi_unregister(struct Scsi_Host * sh){
  72.     struct Scsi_Host * shpnt;
  73.     Scsi_Host_Name *shn;
  74.         
  75.     if(scsi_hostlist == sh)
  76. scsi_hostlist = sh->next;
  77.     else {
  78. shpnt = scsi_hostlist;
  79. while(shpnt->next != sh) shpnt = shpnt->next;
  80. shpnt->next = shpnt->next->next;
  81.     }
  82.     /*
  83.      * We have to unregister the host from the scsi_host_no_list as well.
  84.      * Decide by the host_no not by the name because most host drivers are
  85.      * able to handle more than one adapters from the same kind (or family).
  86.      */
  87.     for ( shn=scsi_host_no_list; shn && (sh->host_no != shn->host_no);
  88.   shn=shn->next);
  89.     if (shn) shn->host_registered = 0;
  90.     /* else {} : This should not happen, we should panic here... */
  91.     
  92.     /* If we are removing the last host registered, it is safe to reuse
  93.      * its host number (this avoids "holes" at boot time) (DB) 
  94.      * It is also safe to reuse those of numbers directly below which have
  95.      * been released earlier (to avoid some holes in numbering).
  96.      */
  97.     if(sh->host_no == max_scsi_hosts - 1) {
  98. while(--max_scsi_hosts >= next_scsi_host) {
  99.     shpnt = scsi_hostlist;
  100.     while(shpnt && shpnt->host_no != max_scsi_hosts - 1)
  101. shpnt = shpnt->next;
  102.     if(shpnt)
  103. break;
  104. }
  105.     }
  106.     next_scsi_host--;
  107.     kfree((char *) sh);
  108. }
  109. /* We call this when we come across a new host adapter. We only do this
  110.  * once we are 100% sure that we want to use this host adapter -  it is a
  111.  * pain to reverse this, so we try to avoid it 
  112.  */
  113. extern int blk_nohighio;
  114. struct Scsi_Host * scsi_register(Scsi_Host_Template * tpnt, int j){
  115.     struct Scsi_Host * retval, *shpnt, *o_shp;
  116.     Scsi_Host_Name *shn, *shn2;
  117.     int flag_new = 1;
  118.     const char * hname;
  119.     size_t hname_len;
  120.     retval = (struct Scsi_Host *)kmalloc(sizeof(struct Scsi_Host) + j,
  121.  (tpnt->unchecked_isa_dma && j ? 
  122.   GFP_DMA : 0) | GFP_ATOMIC);
  123.     if(retval == NULL)
  124.     {
  125.         printk("scsi: out of memory in scsi_register.n");
  126.      return NULL;
  127.     }
  128.     
  129.     memset(retval, 0, sizeof(struct Scsi_Host) + j);
  130.     /* trying to find a reserved entry (host_no) */
  131.     hname = (tpnt->proc_name) ?  tpnt->proc_name : "";
  132.     hname_len = strlen(hname);
  133.     for (shn = scsi_host_no_list;shn;shn = shn->next) {
  134. if (!(shn->host_registered) && 
  135.     (hname_len > 0) && (0 == strncmp(hname, shn->name, hname_len))) {
  136.     flag_new = 0;
  137.     retval->host_no = shn->host_no;
  138.     shn->host_registered = 1;
  139.     shn->loaded_as_module = 1;
  140.     break;
  141. }
  142.     }
  143.     atomic_set(&retval->host_active,0);
  144.     retval->host_busy = 0;
  145.     retval->host_failed = 0;
  146.     if(j > 0xffff) panic("Too many extra bytes requestedn");
  147.     retval->extra_bytes = j;
  148.     retval->loaded_as_module = 1;
  149.     if (flag_new) {
  150. shn = (Scsi_Host_Name *) kmalloc(sizeof(Scsi_Host_Name), GFP_ATOMIC);
  151.         if (!shn) {
  152.                 kfree(retval);
  153.                 printk(KERN_ERR "scsi: out of memory(2) in scsi_register.n");
  154.                 return NULL;
  155.         }
  156. shn->name = kmalloc(hname_len + 1, GFP_ATOMIC);
  157. if (hname_len > 0)
  158.     strncpy(shn->name, hname, hname_len);
  159. shn->name[hname_len] = 0;
  160. shn->host_no = max_scsi_hosts++;
  161. shn->host_registered = 1;
  162. shn->loaded_as_module = 1;
  163. shn->next = NULL;
  164. if (scsi_host_no_list) {
  165.     for (shn2 = scsi_host_no_list;shn2->next;shn2 = shn2->next)
  166. ;
  167.     shn2->next = shn;
  168. }
  169. else
  170.     scsi_host_no_list = shn;
  171. retval->host_no = shn->host_no;
  172.     }
  173.     next_scsi_host++;
  174.     retval->host_queue = NULL;
  175.     init_waitqueue_head(&retval->host_wait);
  176.     retval->resetting = 0;
  177.     retval->last_reset = 0;
  178.     retval->irq = 0;
  179.     retval->dma_channel = 0xff;
  180.     /* These three are default values which can be overridden */
  181.     retval->max_channel = 0; 
  182.     retval->max_id = 8;      
  183.     retval->max_lun = 8;
  184.     /*
  185.      * All drivers right now should be able to handle 12 byte commands.
  186.      * Every so often there are requests for 16 byte commands, but individual
  187.      * low-level drivers need to certify that they actually do something
  188.      * sensible with such commands.
  189.      */
  190.     retval->max_cmd_len = 12;
  191.     retval->unique_id = 0;
  192.     retval->io_port = 0;
  193.     retval->hostt = tpnt;
  194.     retval->next = NULL;
  195.     retval->in_recovery = 0;
  196.     retval->ehandler = NULL;    /* Initial value until the thing starts up. */
  197.     retval->eh_notify   = NULL;    /* Who we notify when we exit. */
  198.     retval->host_blocked = FALSE;
  199.     retval->host_self_blocked = FALSE;
  200. #ifdef DEBUG
  201.     printk("Register %x %x: %dn", (int)retval, (int)retval->hostt, j);
  202. #endif
  203.     /* The next six are the default values which can be overridden
  204.      * if need be */
  205.     retval->this_id = tpnt->this_id;
  206.     retval->can_queue = tpnt->can_queue;
  207.     retval->sg_tablesize = tpnt->sg_tablesize;
  208.     retval->cmd_per_lun = tpnt->cmd_per_lun;
  209.     retval->unchecked_isa_dma = tpnt->unchecked_isa_dma;
  210.     retval->use_clustering = tpnt->use_clustering;   
  211.     if (!blk_nohighio)
  212. retval->highmem_io = tpnt->highmem_io;
  213.     retval->select_queue_depths = tpnt->select_queue_depths;
  214.     retval->max_sectors = tpnt->max_sectors;
  215.     if(!scsi_hostlist)
  216. scsi_hostlist = retval;
  217.     else {
  218. shpnt = scsi_hostlist;
  219. if (retval->host_no < shpnt->host_no) {
  220.     retval->next = shpnt;
  221.     wmb(); /* want all to see these writes in this order */
  222.     scsi_hostlist = retval;
  223. }
  224. else {
  225.     for (o_shp = shpnt, shpnt = shpnt->next; shpnt; 
  226.  o_shp = shpnt, shpnt = shpnt->next) {
  227. if (retval->host_no < shpnt->host_no) {
  228.     retval->next = shpnt;
  229.     wmb();
  230.     o_shp->next = retval;
  231.     break;
  232. }
  233.     }
  234.     if (! shpnt)
  235. o_shp->next = retval;
  236.         }
  237.     }
  238.     
  239.     return retval;
  240. }
  241. int
  242. scsi_register_device(struct Scsi_Device_Template * sdpnt)
  243. {
  244.     if(sdpnt->next) panic("Device already registered");
  245.     sdpnt->next = scsi_devicelist;
  246.     scsi_devicelist = sdpnt;
  247.     return 0;
  248. }
  249. void
  250. scsi_deregister_device(struct Scsi_Device_Template * tpnt)
  251. {
  252.     struct Scsi_Device_Template *spnt;
  253.     struct Scsi_Device_Template *prev_spnt;
  254.     spnt = scsi_devicelist;
  255.     prev_spnt = NULL;
  256.     while (spnt != tpnt) {
  257. prev_spnt = spnt;
  258. spnt = spnt->next;
  259.     }
  260.     if (prev_spnt == NULL)
  261.         scsi_devicelist = tpnt->next;
  262.     else
  263.         prev_spnt->next = spnt->next;
  264. }
  265. /*
  266.  * Overrides for Emacs so that we follow Linus's tabbing style.
  267.  * Emacs will notice this stuff at the end of the file and automatically
  268.  * adjust the settings for this buffer only.  This must remain at the end
  269.  * of the file.
  270.  * ---------------------------------------------------------------------------
  271.  * Local variables:
  272.  * c-indent-level: 4
  273.  * c-brace-imaginary-offset: 0
  274.  * c-brace-offset: -4
  275.  * c-argdecl-indent: 4
  276.  * c-label-offset: -4
  277.  * c-continued-statement-offset: 4
  278.  * c-continued-brace-offset: 0
  279.  * indent-tabs-mode: nil
  280.  * tab-width: 8
  281.  * End:
  282.  */