From b8e89ffabc26f795ed1d97306ae4201450ce4541 Mon Sep 17 00:00:00 2001 From: Scott Long Date: Sat, 30 Nov 2002 18:00:43 +0000 Subject: [PATCH] Add support for the Olivetti branded EISA boards. Approved by: re (blanket) --- sys/dev/aic7xxx/aic7770.c | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/sys/dev/aic7xxx/aic7770.c b/sys/dev/aic7xxx/aic7770.c index e15c9694f58a..5229eb2cdafa 100644 --- a/sys/dev/aic7xxx/aic7770.c +++ b/sys/dev/aic7xxx/aic7770.c @@ -37,7 +37,7 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGES. * - * $Id: //depot/aic7xxx/aic7xxx/aic7770.c#26 $ + * $Id: //depot/aic7xxx/aic7xxx/aic7770.c#27 $ * * $FreeBSD$ */ @@ -56,6 +56,8 @@ #define ID_AHA_274x 0x04907771 #define ID_AHA_284xB 0x04907756 /* BIOS enabled */ #define ID_AHA_284x 0x04907757 /* BIOS disabled*/ +#define ID_OLV_274x 0x04907782 /* Olivetti OEM */ +#define ID_OLV_274xD 0x04907783 /* Olivetti OEM (Differential) */ static int aha2840_load_seeprom(struct ahc_softc *ahc); static ahc_device_setup_t ahc_aic7770_VL_setup; @@ -77,6 +79,18 @@ struct aic7770_identity aic7770_ident_table [] = "Adaptec 284X SCSI adapter", ahc_aic7770_VL_setup }, + { + ID_OLV_274x, + 0xFFFFFFFF, + "Adaptec (Olivetti OEM) 274X SCSI adapter", + ahc_aic7770_EISA_setup + }, + { + ID_OLV_274xD, + 0xFFFFFFFF, + "Adaptec (Olivetti OEM) 274X Differential SCSI adapter", + ahc_aic7770_EISA_setup + }, /* Generic chip probes for devices we don't know 'exactly' */ { ID_AIC7770,