diff options
author | groudier <groudier@FreeBSD.org> | 2000-01-23 12:27:49 +0000 |
---|---|---|
committer | groudier <groudier@FreeBSD.org> | 2000-01-23 12:27:49 +0000 |
commit | 69d6cb63b3f9e813588143c3b90d43a676e34c1a (patch) | |
tree | 2d238d9eb18320ddb3936dbb847352fa499665ed | |
parent | 196127c4c54519078a20416e07ecf473eaf6c3a1 (diff) | |
download | FreeBSD-src-69d6cb63b3f9e813588143c3b90d43a676e34c1a.zip FreeBSD-src-69d6cb63b3f9e813588143c3b90d43a676e34c1a.tar.gz |
Add 53C895A and 53C1510D device description to the ncr chip table.
-rw-r--r-- | sys/pci/ncr.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sys/pci/ncr.c b/sys/pci/ncr.c index 26de939..ad258f1 100644 --- a/sys/pci/ncr.c +++ b/sys/pci/ncr.c @@ -1397,6 +1397,8 @@ static int ncr_cache; /* to be aligned _NOT_ static */ #define NCR_885_ID (0x000d1000ul) #define NCR_895_ID (0x000c1000ul) #define NCR_896_ID (0x000b1000ul) +#define NCR_895A_ID (0x00121000ul) +#define NCR_1510D_ID (0x000a1000ul) static u_long ncr_count; @@ -3315,6 +3317,12 @@ static ncr_chip ncr_chip_table[] = { , {NCR_896_ID, 0x00, "ncr 53c896 fast40 wide scsi", 7, 31, 7, FE_WIDE|FE_ULTRA2|FE_QUAD|FE_CACHE_SET|FE_DFS|FE_LDSTR|FE_PFEN|FE_RAM} + , + {NCR_895A_ID, 0x00, "ncr 53c895a fast40 wide scsi", 7, 31, 7, + FE_WIDE|FE_ULTRA2|FE_QUAD|FE_CACHE_SET|FE_DFS|FE_LDSTR|FE_PFEN|FE_RAM} + , + {NCR_1510D_ID, 0x00, "ncr 53c1510d fast40 wide scsi", 7, 31, 7, + FE_WIDE|FE_ULTRA2|FE_QUAD|FE_CACHE_SET|FE_DFS|FE_LDSTR|FE_PFEN|FE_RAM} }; static int ncr_chip_lookup(u_long device_id, u_char revision_id) |