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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Linux driver attachment glue for aic7770 based controllers.
  3.  *
  4.  * Copyright (c) 2000-2001 Adaptec Inc.
  5.  * All rights reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  * 1. Redistributions of source code must retain the above copyright
  11.  *    notice, this list of conditions, and the following disclaimer,
  12.  *    without modification.
  13.  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
  14.  *    substantially similar to the "NO WARRANTY" disclaimer below
  15.  *    ("Disclaimer") and any redistribution must be conditioned upon
  16.  *    including a substantially similar Disclaimer requirement for further
  17.  *    binary redistribution.
  18.  * 3. Neither the names of the above-listed copyright holders nor the names
  19.  *    of any contributors may be used to endorse or promote products derived
  20.  *    from this software without specific prior written permission.
  21.  *
  22.  * Alternatively, this software may be distributed under the terms of the
  23.  * GNU General Public License ("GPL") version 2 as published by the Free
  24.  * Software Foundation.
  25.  *
  26.  * NO WARRANTY
  27.  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  28.  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  29.  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
  30.  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  31.  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  32.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  33.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  34.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  35.  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  36.  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  37.  * POSSIBILITY OF SUCH DAMAGES.
  38.  *
  39.  * $Id: //depot/aic7xxx/linux/drivers/scsi/aic7xxx/aic7770_linux.c#9 $
  40.  */
  41. #include "aic7xxx_osm.h"
  42. #define MINSLOT 1
  43. #define NUMSLOTS 16
  44. #define IDOFFSET 0x80
  45. int
  46. aic7770_linux_probe(Scsi_Host_Template *template)
  47. {
  48. #if defined(__i386__) || defined(__alpha__)
  49. struct aic7770_identity *entry;
  50. struct ahc_softc *ahc;
  51. int i, slot;
  52. int eisaBase;
  53. int found;
  54. if (aic7xxx_no_probe)
  55. return (0);
  56. eisaBase = 0x1000 + AHC_EISA_SLOT_OFFSET;
  57. found = 0;
  58. for (slot = 1; slot < NUMSLOTS; eisaBase+=0x1000, slot++) {
  59. uint32_t eisa_id;
  60. size_t  id_size;
  61. if (check_region(eisaBase, AHC_EISA_IOSIZE) != 0)
  62. continue;
  63. eisa_id = 0;
  64. id_size = sizeof(eisa_id);
  65. for (i = 0; i < 4; i++) {
  66. /* VLcards require priming*/
  67. outb(0x80 + i, eisaBase + IDOFFSET);
  68. eisa_id |= inb(eisaBase + IDOFFSET + i)
  69.    << ((id_size-i-1) * 8);
  70. }
  71. if (eisa_id & 0x80000000)
  72. continue;  /* no EISA card in slot */
  73. entry = aic7770_find_device(eisa_id);
  74. if (entry != NULL) {
  75. char  buf[80];
  76. char *name;
  77. int  error;
  78. /*
  79.  * Allocate a softc for this card and
  80.  * set it up for attachment by our
  81.  * common detect routine.
  82.  */
  83. sprintf(buf, "ahc_eisa:%d", slot);
  84. name = malloc(strlen(buf) + 1, M_DEVBUF, M_NOWAIT);
  85. if (name == NULL)
  86. break;
  87. strcpy(name, buf);
  88. ahc = ahc_alloc(template, name);
  89. if (ahc == NULL) {
  90. /*
  91.  * If we can't allocate this one,
  92.  * chances are we won't be able to
  93.  * allocate future card structures.
  94.  */
  95. break;
  96. }
  97. ahc->tag = BUS_SPACE_PIO;
  98. ahc->bsh.ioport = eisaBase;
  99. error = aic7770_config(ahc, entry);
  100. if (error != 0) {
  101. ahc_free(ahc);
  102. continue;
  103. }
  104. found++;
  105. }
  106. }
  107. return (found);
  108. #else
  109. return (0);
  110. #endif
  111. }
  112. int
  113. aic7770_map_registers(struct ahc_softc *ahc)
  114. {
  115. /*
  116.  * Lock out other contenders for our i/o space.
  117.  */
  118. #if LINUX_VERSION_CODE < KERNEL_VERSION(2,4,0)
  119. request_region(ahc->bsh.ioport, AHC_EISA_IOSIZE, "aic7xxx");
  120. #else
  121. if (request_region(ahc->bsh.ioport, AHC_EISA_IOSIZE, "aic7xxx") == 0)
  122. return (ENOMEM);
  123. #endif
  124. return (0);
  125. }
  126. int
  127. aic7770_map_int(struct ahc_softc *ahc, u_int irq)
  128. {
  129. int error;
  130. int shared;
  131. shared = 0;
  132. if ((ahc->flags & AHC_EDGE_INTERRUPT) == 0)
  133. shared = SA_SHIRQ;
  134. ahc->platform_data->irq = irq;
  135. error = request_irq(ahc->platform_data->irq, ahc_linux_isr,
  136.     shared, "aic7xxx", ahc);
  137. return (-error);
  138. }