diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2000-08-01 13:45:27 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2000-08-01 13:45:27 +0000 |
commit | 389a0a4582e6890e967b7827708a1462222bcaf5 (patch) | |
tree | 1ca5cbeb74526a85c9847034516db86c65e436ab /sys/dev/pci/ncr.c | |
parent | 4d1c3524bcc0c13e67bf5432bc59a03f9af91899 (diff) |
Add Symbios 53C895A support; armin@wolfermann.org
Diffstat (limited to 'sys/dev/pci/ncr.c')
-rw-r--r-- | sys/dev/pci/ncr.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/dev/pci/ncr.c b/sys/dev/pci/ncr.c index 38ec01c02f8..3f0a8e132e0 100644 --- a/sys/dev/pci/ncr.c +++ b/sys/dev/pci/ncr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ncr.c,v 1.50 2000/02/08 01:25:02 millert Exp $ */ +/* $OpenBSD: ncr.c,v 1.51 2000/08/01 13:45:26 millert Exp $ */ /* $NetBSD: ncr.c,v 1.63 1997/09/23 02:39:15 perry Exp $ */ /************************************************************************** @@ -1466,7 +1466,7 @@ static void ncr_attach (pcici_t tag, int unit); #if 0 static char ident[] = - "\n$OpenBSD: ncr.c,v 1.50 2000/02/08 01:25:02 millert Exp $\n"; + "\n$OpenBSD: ncr.c,v 1.51 2000/08/01 13:45:26 millert Exp $\n"; #endif static const u_long ncr_version = NCR_VERSION * 11 @@ -1507,6 +1507,7 @@ static int ncr_cache; /* to be aligned _NOT_ static */ #define NCR_875_ID2 (0x008f1000ul) #define NCR_885_ID (0x000d1000ul) #define NCR_895_ID (0x000c1000ul) +#define NCR_895A_ID (0x00121000ul) #define NCR_896_ID (0x000b1000ul) #ifdef __OpenBSD__ @@ -3489,6 +3490,9 @@ static ncr_chip ncr_chip_table[] = { {NCR_895_ID, 0x00, 7, 31, 7, FE_WIDE|FE_ULTRA2|FE_QUAD|FE_CACHE_SET|FE_DFS|FE_LDSTR|FE_PFEN|FE_RAM} , + {NCR_895A_ID, 0x00, 7, 31, 7, + FE_WIDE|FE_ULTRA2|FE_QUAD|FE_CACHE_SET|FE_DFS|FE_LDSTR|FE_PFEN|FE_RAM} + , {NCR_896_ID, 0x00, 7, 31, 7, FE_WIDE|FE_ULTRA2|FE_QUAD|FE_CACHE_SET|FE_DFS|FE_LDSTR|FE_PFEN|FE_RAM} }; |