2 * Product specific probe and attach routines for:
3 * 27/284X and aic7770 motherboard SCSI controllers
5 * Copyright (c) 1994-1998, 2000, 2001 Justin T. Gibbs.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
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.
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.
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.
40 * $Id: //depot/aic7xxx/aic7xxx/aic7770.c#32 $
46 #include "aic7xxx_osm.h"
47 #include "aic7xxx_inline.h"
48 #include "aic7xxx_93cx6.h"
50 #include <dev/aic7xxx/aic7xxx_osm.h>
51 #include <dev/aic7xxx/aic7xxx_inline.h>
52 #include <dev/aic7xxx/aic7xxx_93cx6.h>
55 #define ID_AIC7770 0x04907770
56 #define ID_AHA_274x 0x04907771
57 #define ID_AHA_284xB 0x04907756 /* BIOS enabled */
58 #define ID_AHA_284x 0x04907757 /* BIOS disabled*/
59 #define ID_OLV_274x 0x04907782 /* Olivetti OEM */
60 #define ID_OLV_274xD 0x04907783 /* Olivetti OEM (Differential) */
62 static int aic7770_chip_init(struct ahc_softc
*ahc
);
63 static int aic7770_suspend(struct ahc_softc
*ahc
);
64 static int aic7770_resume(struct ahc_softc
*ahc
);
65 static int aha2840_load_seeprom(struct ahc_softc
*ahc
);
66 static ahc_device_setup_t ahc_aic7770_VL_setup
;
67 static ahc_device_setup_t ahc_aic7770_EISA_setup
;
68 static ahc_device_setup_t ahc_aic7770_setup
;
70 struct aic7770_identity aic7770_ident_table
[] =
75 "Adaptec 274X SCSI adapter",
76 ahc_aic7770_EISA_setup
81 "Adaptec 284X SCSI adapter",
87 "Adaptec 284X SCSI adapter (BIOS Disabled)",
93 "Adaptec (Olivetti OEM) 274X SCSI adapter",
94 ahc_aic7770_EISA_setup
99 "Adaptec (Olivetti OEM) 274X Differential SCSI adapter",
100 ahc_aic7770_EISA_setup
102 /* Generic chip probes for devices we don't know 'exactly' */
106 "Adaptec aic7770 SCSI adapter",
107 ahc_aic7770_EISA_setup
110 const int ahc_num_aic7770_devs
= NUM_ELEMENTS(aic7770_ident_table
);
112 struct aic7770_identity
*
113 aic7770_find_device(uint32_t id
)
115 struct aic7770_identity
*entry
;
118 for (i
= 0; i
< ahc_num_aic7770_devs
; i
++) {
119 entry
= &aic7770_ident_table
[i
];
120 if (entry
->full_id
== (id
& entry
->id_mask
))
127 aic7770_config(struct ahc_softc
*ahc
, struct aic7770_identity
*entry
, u_int io
)
136 error
= entry
->setup(ahc
);
141 error
= aic7770_map_registers(ahc
, io
);
146 * Before we continue probing the card, ensure that
147 * its interrupts are *disabled*. We don't want
148 * a misstep to hang the machine in an interrupt
151 ahc_intr_enable(ahc
, FALSE
);
153 ahc
->description
= entry
->name
;
154 error
= ahc_softc_init(ahc
);
158 ahc
->bus_chip_init
= aic7770_chip_init
;
159 ahc
->bus_suspend
= aic7770_suspend
;
160 ahc
->bus_resume
= aic7770_resume
;
162 error
= ahc_reset(ahc
, /*reinit*/FALSE
);
166 /* Make sure we have a valid interrupt vector */
167 intdef
= ahc_inb(ahc
, INTDEF
);
168 irq
= intdef
& VECTOR
;
178 printf("aic7770_config: invalid irq setting %d\n", intdef
);
182 if ((intdef
& EDGE_TRIG
) != 0)
183 ahc
->flags
|= AHC_EDGE_INTERRUPT
;
185 switch (ahc
->chip
& (AHC_EISA
|AHC_VL
)) {
192 biosctrl
= ahc_inb(ahc
, HA_274_BIOSCTRL
);
193 scsiconf
= ahc_inb(ahc
, SCSICONF
);
194 scsiconf1
= ahc_inb(ahc
, SCSICONF
+ 1);
196 /* Get the primary channel information */
197 if ((biosctrl
& CHANNEL_B_PRIMARY
) != 0)
200 if ((biosctrl
& BIOSMODE
) == BIOSDISABLED
) {
201 ahc
->flags
|= AHC_USEDEFAULTS
;
203 if ((ahc
->features
& AHC_WIDE
) != 0) {
204 ahc
->our_id
= scsiconf1
& HWSCSIID
;
205 if (scsiconf
& TERM_ENB
)
206 ahc
->flags
|= AHC_TERM_ENB_A
;
208 ahc
->our_id
= scsiconf
& HSCSIID
;
209 ahc
->our_id_b
= scsiconf1
& HSCSIID
;
210 if (scsiconf
& TERM_ENB
)
211 ahc
->flags
|= AHC_TERM_ENB_A
;
212 if (scsiconf1
& TERM_ENB
)
213 ahc
->flags
|= AHC_TERM_ENB_B
;
216 if ((ahc_inb(ahc
, HA_274_BIOSGLOBAL
) & HA_274_EXTENDED_TRANS
))
217 ahc
->flags
|= AHC_EXTENDED_TRANS_A
|AHC_EXTENDED_TRANS_B
;
222 have_seeprom
= aha2840_load_seeprom(ahc
);
228 if (have_seeprom
== 0) {
229 free(ahc
->seep_config
, M_DEVBUF
);
230 ahc
->seep_config
= NULL
;
234 * Ensure autoflush is enabled
236 ahc_outb(ahc
, SBLKCTL
, ahc_inb(ahc
, SBLKCTL
) & ~AUTOFLUSHDIS
);
238 /* Setup the FIFO threshold and the bus off time */
239 hostconf
= ahc_inb(ahc
, HOSTCONF
);
240 ahc_outb(ahc
, BUSSPD
, hostconf
& DFTHRSH
);
241 ahc_outb(ahc
, BUSTIME
, (hostconf
<< 2) & BOFF
);
243 ahc
->bus_softc
.aic7770_softc
.busspd
= hostconf
& DFTHRSH
;
244 ahc
->bus_softc
.aic7770_softc
.bustime
= (hostconf
<< 2) & BOFF
;
247 * Generic aic7xxx initialization.
249 error
= ahc_init(ahc
);
253 error
= aic7770_map_int(ahc
, irq
);
259 * Link this softc in with all other ahc instances.
261 ahc_softc_insert(ahc
);
264 * Enable the board's BUS drivers
266 ahc_outb(ahc
, BCTL
, ENABLE
);
274 aic7770_chip_init(struct ahc_softc
*ahc
)
276 ahc_outb(ahc
, BUSSPD
, ahc
->bus_softc
.aic7770_softc
.busspd
);
277 ahc_outb(ahc
, BUSTIME
, ahc
->bus_softc
.aic7770_softc
.bustime
);
278 ahc_outb(ahc
, SBLKCTL
, ahc_inb(ahc
, SBLKCTL
) & ~AUTOFLUSHDIS
);
279 ahc_outb(ahc
, BCTL
, ENABLE
);
280 return (ahc_chip_init(ahc
));
284 aic7770_suspend(struct ahc_softc
*ahc
)
286 return (ahc_suspend(ahc
));
290 aic7770_resume(struct ahc_softc
*ahc
)
292 return (ahc_resume(ahc
));
296 * Read the 284x SEEPROM.
299 aha2840_load_seeprom(struct ahc_softc
*ahc
)
301 struct seeprom_descriptor sd
;
302 struct seeprom_config
*sc
;
307 sd
.sd_control_offset
= SEECTL_2840
;
308 sd
.sd_status_offset
= STATUS_2840
;
309 sd
.sd_dataout_offset
= STATUS_2840
;
312 sd
.sd_RDY
= EEPROM_TF
;
317 sc
= ahc
->seep_config
;
320 printf("%s: Reading SEEPROM...", ahc_name(ahc
));
321 have_seeprom
= ahc_read_seeprom(&sd
, (uint16_t *)sc
,
322 /*start_addr*/0, sizeof(*sc
)/2);
326 if (ahc_verify_cksum(sc
) == 0) {
328 printf ("checksum error\n");
330 } else if (bootverbose
) {
337 printf("%s: No SEEPROM available\n", ahc_name(ahc
));
338 ahc
->flags
|= AHC_USEDEFAULTS
;
341 * Put the data we've collected down into SRAM
342 * where ahc_init will find it.
348 max_targ
= (ahc
->features
& AHC_WIDE
) != 0 ? 16 : 8;
350 for (i
= 0; i
< max_targ
; i
++){
351 uint8_t target_settings
;
353 target_settings
= (sc
->device_flags
[i
] & CFXFER
) << 4;
354 if (sc
->device_flags
[i
] & CFSYNCH
)
355 target_settings
|= SOFS
;
356 if (sc
->device_flags
[i
] & CFWIDEB
)
357 target_settings
|= WIDEXFER
;
358 if (sc
->device_flags
[i
] & CFDISC
)
359 discenable
|= (0x01 << i
);
360 ahc_outb(ahc
, TARG_SCSIRATE
+ i
, target_settings
);
362 ahc_outb(ahc
, DISC_DSB
, ~(discenable
& 0xff));
363 ahc_outb(ahc
, DISC_DSB
+ 1, ~((discenable
>> 8) & 0xff));
365 ahc
->our_id
= sc
->brtime_id
& CFSCSIID
;
367 scsi_conf
= (ahc
->our_id
& 0x7);
368 if (sc
->adapter_control
& CFSPARITY
)
369 scsi_conf
|= ENSPCHK
;
370 if (sc
->adapter_control
& CFRESETB
)
371 scsi_conf
|= RESET_SCSI
;
373 if (sc
->bios_control
& CF284XEXTEND
)
374 ahc
->flags
|= AHC_EXTENDED_TRANS_A
;
375 /* Set SCSICONF info */
376 ahc_outb(ahc
, SCSICONF
, scsi_conf
);
378 if (sc
->adapter_control
& CF284XSTERM
)
379 ahc
->flags
|= AHC_TERM_ENB_A
;
381 return (have_seeprom
);
385 ahc_aic7770_VL_setup(struct ahc_softc
*ahc
)
389 error
= ahc_aic7770_setup(ahc
);
395 ahc_aic7770_EISA_setup(struct ahc_softc
*ahc
)
399 error
= ahc_aic7770_setup(ahc
);
400 ahc
->chip
|= AHC_EISA
;
405 ahc_aic7770_setup(struct ahc_softc
*ahc
)
408 ahc
->channel_b
= 'B';
409 ahc
->chip
= AHC_AIC7770
;
410 ahc
->features
= AHC_AIC7770_FE
;
411 ahc
->bugs
|= AHC_TMODE_WIDEODD_BUG
;
412 ahc
->flags
|= AHC_PAGESCBS
;
413 ahc
->instruction_ram_size
= 448;