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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Product specific probe and attach routines for:
  3.  *  27/284X and aic7770 motherboard SCSI controllers
  4.  *
  5.  * Copyright (c) 1994-1998, 2000, 2001 Justin T. Gibbs.
  6.  * All rights reserved.
  7.  *
  8.  * Redistribution and use in source and binary forms, with or without
  9.  * modification, are permitted provided that the following conditions
  10.  * are met:
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions, and the following disclaimer,
  13.  *    without modification.
  14.  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
  15.  *    substantially similar to the "NO WARRANTY" disclaimer below
  16.  *    ("Disclaimer") and any redistribution must be conditioned upon
  17.  *    including a substantially similar Disclaimer requirement for further
  18.  *    binary redistribution.
  19.  * 3. Neither the names of the above-listed copyright holders nor the names
  20.  *    of any contributors may be used to endorse or promote products derived
  21.  *    from this software without specific prior written permission.
  22.  *
  23.  * Alternatively, this software may be distributed under the terms of the
  24.  * GNU General Public License ("GPL") version 2 as published by the Free
  25.  * Software Foundation.
  26.  *
  27.  * NO WARRANTY
  28.  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  29.  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  30.  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
  31.  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  32.  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  33.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  34.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  35.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  36.  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  37.  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  38.  * POSSIBILITY OF SUCH DAMAGES.
  39.  *
  40.  * $Id: //depot/aic7xxx/aic7xxx/aic7770.c#14 $
  41.  *
  42.  * $FreeBSD: src/sys/dev/aic7xxx/aic7770.c,v 1.1 2000/09/16 20:02:27 gibbs Exp $
  43.  */
  44. #include "aic7xxx_osm.h"
  45. #include "aic7xxx_inline.h"
  46. #include "aic7xxx_93cx6.h"
  47. #define ID_AIC7770 0x04907770
  48. #define ID_AHA_274x 0x04907771
  49. #define ID_AHA_284xB 0x04907756 /* BIOS enabled */
  50. #define ID_AHA_284x 0x04907757 /* BIOS disabled*/
  51. static void aha2840_load_seeprom(struct ahc_softc *ahc);
  52. static ahc_device_setup_t ahc_aic7770_VL_setup;
  53. static ahc_device_setup_t ahc_aic7770_EISA_setup;;
  54. static ahc_device_setup_t ahc_aic7770_setup;
  55. struct aic7770_identity aic7770_ident_table [] =
  56. {
  57. {
  58. ID_AHA_274x,
  59. 0xFFFFFFFF,
  60. "Adaptec 274X SCSI adapter",
  61. ahc_aic7770_EISA_setup
  62. },
  63. {
  64. ID_AHA_284xB,
  65. 0xFFFFFFFE,
  66. "Adaptec 284X SCSI adapter",
  67. ahc_aic7770_VL_setup
  68. },
  69. /* Generic chip probes for devices we don't know 'exactly' */
  70. {
  71. ID_AIC7770,
  72. 0xFFFFFFFF,
  73. "Adaptec aic7770 SCSI adapter",
  74. ahc_aic7770_EISA_setup
  75. }
  76. };
  77. const int ahc_num_aic7770_devs = NUM_ELEMENTS(aic7770_ident_table);
  78. struct aic7770_identity *
  79. aic7770_find_device(uint32_t id)
  80. {
  81. struct aic7770_identity *entry;
  82. int i;
  83. for (i = 0; i < ahc_num_aic7770_devs; i++) {
  84. entry = &aic7770_ident_table[i];
  85. if (entry->full_id == (id & entry->id_mask))
  86. return (entry);
  87. }
  88. return (NULL);
  89. }
  90. int
  91. aic7770_config(struct ahc_softc *ahc, struct aic7770_identity *entry)
  92. {
  93. int error;
  94. u_int hostconf;
  95. u_int   irq;
  96. u_int intdef;
  97. error = entry->setup(ahc);
  98. if (error != 0)
  99. return (error);
  100. error = aic7770_map_registers(ahc);
  101. if (error != 0)
  102. return (error);
  103. ahc->description = entry->name;
  104. error = ahc_softc_init(ahc);
  105. error = ahc_reset(ahc);
  106. if (error != 0)
  107. return (error);
  108. /* Make sure we have a valid interrupt vector */
  109. intdef = ahc_inb(ahc, INTDEF);
  110. irq = intdef & VECTOR;
  111. switch (irq) {
  112. case 9:
  113. case 10:
  114. case 11:
  115. case 12:
  116. case 14:
  117. case 15:
  118. break;
  119. default:
  120. printf("aic7770_config: illegal irq setting %dn", intdef);
  121. return (ENXIO);
  122. }
  123. if ((intdef & EDGE_TRIG) != 0)
  124. ahc->flags |= AHC_EDGE_INTERRUPT;
  125. switch (ahc->chip & (AHC_EISA|AHC_VL)) {
  126. case AHC_EISA:
  127. {
  128. u_int biosctrl;
  129. u_int scsiconf;
  130. u_int scsiconf1;
  131. biosctrl = ahc_inb(ahc, HA_274_BIOSCTRL);
  132. scsiconf = ahc_inb(ahc, SCSICONF);
  133. scsiconf1 = ahc_inb(ahc, SCSICONF + 1);
  134. /* Get the primary channel information */
  135. if ((biosctrl & CHANNEL_B_PRIMARY) != 0)
  136. ahc->flags |= 1;
  137. if ((biosctrl & BIOSMODE) == BIOSDISABLED) {
  138. ahc->flags |= AHC_USEDEFAULTS;
  139. } else {
  140. if ((ahc->features & AHC_WIDE) != 0) {
  141. ahc->our_id = scsiconf1 & HWSCSIID;
  142. if (scsiconf & TERM_ENB)
  143. ahc->flags |= AHC_TERM_ENB_A;
  144. } else {
  145. ahc->our_id = scsiconf & HSCSIID;
  146. ahc->our_id_b = scsiconf1 & HSCSIID;
  147. if (scsiconf & TERM_ENB)
  148. ahc->flags |= AHC_TERM_ENB_A;
  149. if (scsiconf1 & TERM_ENB)
  150. ahc->flags |= AHC_TERM_ENB_B;
  151. }
  152. }
  153. /*
  154.  * We have no way to tell, so assume extended
  155.  * translation is enabled.
  156.  */
  157. ahc->flags |= AHC_EXTENDED_TRANS_A|AHC_EXTENDED_TRANS_B;
  158. break;
  159. }
  160. case AHC_VL:
  161. {
  162. aha2840_load_seeprom(ahc);
  163. break;
  164. }
  165. default:
  166. break;
  167. }
  168. /*
  169.  * Ensure autoflush is enabled
  170.  */
  171. ahc_outb(ahc, SBLKCTL, ahc_inb(ahc, SBLKCTL) & ~AUTOFLUSHDIS);
  172. /* Setup the FIFO threshold and the bus off time */
  173. hostconf = ahc_inb(ahc, HOSTCONF);
  174. ahc_outb(ahc, BUSSPD, hostconf & DFTHRSH);
  175. ahc_outb(ahc, BUSTIME, (hostconf << 2) & BOFF);
  176. /*
  177.  * Generic aic7xxx initialization.
  178.  */
  179. error = ahc_init(ahc);
  180. if (error != 0)
  181. return (error);
  182. /*
  183.  * Link this softc in with all other ahc instances.
  184.  */
  185. ahc_softc_insert(ahc);
  186. error = aic7770_map_int(ahc, irq);
  187. if (error != 0)
  188. return (error);
  189. /*
  190.  * Enable the board's BUS drivers
  191.  */
  192. ahc_outb(ahc, BCTL, ENABLE);
  193. /*
  194.  * Allow interrupts.
  195.  */
  196. ahc_intr_enable(ahc, TRUE);
  197. return (0);
  198. }
  199. /*
  200.  * Read the 284x SEEPROM.
  201.  */
  202. static void
  203. aha2840_load_seeprom(struct ahc_softc *ahc)
  204. {
  205. struct   seeprom_descriptor sd;
  206. struct   seeprom_config sc;
  207. uint16_t  checksum = 0;
  208. uint8_t   scsi_conf;
  209. int   have_seeprom;
  210. sd.sd_ahc = ahc;
  211. sd.sd_control_offset = SEECTL_2840;
  212. sd.sd_status_offset = STATUS_2840;
  213. sd.sd_dataout_offset = STATUS_2840;
  214. sd.sd_chip = C46;
  215. sd.sd_MS = 0;
  216. sd.sd_RDY = EEPROM_TF;
  217. sd.sd_CS = CS_2840;
  218. sd.sd_CK = CK_2840;
  219. sd.sd_DO = DO_2840;
  220. sd.sd_DI = DI_2840;
  221. if (bootverbose)
  222. printf("%s: Reading SEEPROM...", ahc_name(ahc));
  223. have_seeprom = read_seeprom(&sd,
  224.     (uint16_t *)&sc,
  225.     /*start_addr*/0,
  226.     sizeof(sc)/2);
  227. if (have_seeprom) {
  228. /* Check checksum */
  229. int i;
  230. int maxaddr = (sizeof(sc)/2) - 1;
  231. uint16_t *scarray = (uint16_t *)&sc;
  232. for (i = 0; i < maxaddr; i++)
  233. checksum = checksum + scarray[i];
  234. if (checksum != sc.checksum) {
  235. if(bootverbose)
  236. printf ("checksum errorn");
  237. have_seeprom = 0;
  238. } else if (bootverbose) {
  239. printf("done.n");
  240. }
  241. }
  242. if (!have_seeprom) {
  243. if (bootverbose)
  244. printf("%s: No SEEPROM availablen", ahc_name(ahc));
  245. ahc->flags |= AHC_USEDEFAULTS;
  246. } else {
  247. /*
  248.  * Put the data we've collected down into SRAM
  249.  * where ahc_init will find it.
  250.  */
  251. int i;
  252. int max_targ = (ahc->features & AHC_WIDE) != 0 ? 16 : 8;
  253. uint16_t discenable;
  254. discenable = 0;
  255. for (i = 0; i < max_targ; i++){
  256.                 uint8_t target_settings;
  257. target_settings = (sc.device_flags[i] & CFXFER) << 4;
  258. if (sc.device_flags[i] & CFSYNCH)
  259. target_settings |= SOFS;
  260. if (sc.device_flags[i] & CFWIDEB)
  261. target_settings |= WIDEXFER;
  262. if (sc.device_flags[i] & CFDISC)
  263. discenable |= (0x01 << i);
  264. ahc_outb(ahc, TARG_SCSIRATE + i, target_settings);
  265. }
  266. ahc_outb(ahc, DISC_DSB, ~(discenable & 0xff));
  267. ahc_outb(ahc, DISC_DSB + 1, ~((discenable >> 8) & 0xff));
  268. ahc->our_id = sc.brtime_id & CFSCSIID;
  269. scsi_conf = (ahc->our_id & 0x7);
  270. if (sc.adapter_control & CFSPARITY)
  271. scsi_conf |= ENSPCHK;
  272. if (sc.adapter_control & CFRESETB)
  273. scsi_conf |= RESET_SCSI;
  274. if (sc.bios_control & CF284XEXTEND)
  275. ahc->flags |= AHC_EXTENDED_TRANS_A;
  276. /* Set SCSICONF info */
  277. ahc_outb(ahc, SCSICONF, scsi_conf);
  278. if (sc.adapter_control & CF284XSTERM)
  279. ahc->flags |= AHC_TERM_ENB_A;
  280. }
  281. }
  282. static int
  283. ahc_aic7770_VL_setup(struct ahc_softc *ahc)
  284. {
  285. int error;
  286. error = ahc_aic7770_setup(ahc);
  287. ahc->chip |= AHC_VL;
  288. return (error);
  289. }
  290. static int
  291. ahc_aic7770_EISA_setup(struct ahc_softc *ahc)
  292. {
  293. int error;
  294. error = ahc_aic7770_setup(ahc);
  295. ahc->chip |= AHC_EISA;
  296. return (error);
  297. }
  298. static int
  299. ahc_aic7770_setup(struct ahc_softc *ahc)
  300. {
  301. ahc->channel = 'A';
  302. ahc->channel_b = 'B';
  303. ahc->chip = AHC_AIC7770;
  304. ahc->features = AHC_AIC7770_FE;
  305. ahc->bugs |= AHC_TMODE_WIDEODD_BUG;
  306. ahc->flags |= AHC_PAGESCBS;
  307. return (0);
  308. }