diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-04-21 03:22:19 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-04-21 03:22:19 +0000 |
commit | 012b8d5bf42d38944d188243d4a3bc88a0e2c2b0 (patch) | |
tree | d02f2352db96819edf9caa60360ba51eb79a046f | |
parent | e07f9da56b15bec1ecadafba81b077bdd7cb37f5 (diff) |
recognize the BCM5752 A2
-rw-r--r-- | sys/dev/pci/if_bge.c | 5 | ||||
-rw-r--r-- | sys/dev/pci/if_bgereg.h | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/sys/dev/pci/if_bge.c b/sys/dev/pci/if_bge.c index d9aeec8290a..2473291928a 100644 --- a/sys/dev/pci/if_bge.c +++ b/sys/dev/pci/if_bge.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bge.c,v 1.140 2006/04/05 01:47:38 brad Exp $ */ +/* $OpenBSD: if_bge.c,v 1.141 2006/04/21 03:22:18 brad Exp $ */ /* * Copyright (c) 2001 Wind River Systems @@ -393,6 +393,9 @@ static const struct bge_revision { { BGE_CHIPID_BCM5752_A1, "BCM5752 A1" }, + { BGE_CHIPID_BCM5752_A2, + "BCM5752 A2" }, + { BGE_CHIPID_BCM5714_B0, "BCM5714 B0" }, diff --git a/sys/dev/pci/if_bgereg.h b/sys/dev/pci/if_bgereg.h index 97447432f48..e0d0be52899 100644 --- a/sys/dev/pci/if_bgereg.h +++ b/sys/dev/pci/if_bgereg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bgereg.h,v 1.45 2006/04/13 23:35:19 brad Exp $ */ +/* $OpenBSD: if_bgereg.h,v 1.46 2006/04/21 03:22:18 brad Exp $ */ /* * Copyright (c) 2001 Wind River Systems @@ -269,6 +269,7 @@ #define BGE_CHIPID_BCM5714_A0 0x50000000 #define BGE_CHIPID_BCM5752_A0 0x60000000 #define BGE_CHIPID_BCM5752_A1 0x60010000 +#define BGE_CHIPID_BCM5752_A2 0x60020000 #define BGE_CHIPID_BCM5714_B0 0x80000000 #define BGE_CHIPID_BCM5714_B3 0x80030000 #define BGE_CHIPID_BCM5715_A0 0x90000000 |