diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2012-09-28 02:59:30 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2012-09-28 02:59:30 +0000 |
commit | 2279bbd8586cfa3a6355eeb06c133b24762484c1 (patch) | |
tree | 782cb5aa7b14eb783b35614eede528afe0d9ce67 /sys/dev/pci | |
parent | 626a9ae4ade79dc2bb40bb8975810786fa388d5a (diff) |
Add support for the Adaptec 39320LPE controller.
From FreeBSD
ok kettenis@
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/ahd_pci.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/dev/pci/ahd_pci.c b/sys/dev/pci/ahd_pci.c index 8e4dda5ad0b..5a198cded05 100644 --- a/sys/dev/pci/ahd_pci.c +++ b/sys/dev/pci/ahd_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ahd_pci.c,v 1.18 2009/05/31 04:47:59 deraadt Exp $ */ +/* $OpenBSD: ahd_pci.c,v 1.19 2012/09/28 02:59:29 brad Exp $ */ /* * Copyright (c) 2004 Milos Urbanek, Kenneth R. Westerback & Marco Peereboom @@ -119,6 +119,7 @@ ahd_compose_id(u_int device, u_int vendor, u_int subdevice, u_int subvendor) #define ID_AHA_39320D_B 0x801C900500419005ull #define ID_AHA_39320D_HP 0x8011900500AC0E11ull #define ID_AHA_39320D_B_HP 0x801C900500AC0E11ull +#define ID_AHA_39320LPE 0x8017900500459005ull #define ID_AIC7902_PCI_REV_A4 0x3 #define ID_AIC7902_PCI_REV_B0 0x10 #define SUBID_HP 0x0E11 @@ -221,6 +222,11 @@ struct ahd_pci_identity ahd_pci_ident_table [] = ID_ALL_MASK, ahd_aic7902_setup }, + { + ID_AHA_39320LPE, + ID_ALL_MASK, + ahd_aic7902_setup + }, /* Generic chip probes for devices we don't know 'exactly' */ { ID_AIC7901 & ID_9005_GENERIC_MASK, |