diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-02-11 09:01:31 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-02-11 09:01:31 +0000 |
commit | b09d1ce208e65da904edfa3fa58f515a4467e952 (patch) | |
tree | 5a273107ac506b14c6a3f87815119e380e662da8 /sys | |
parent | 962389aaa631be6e5a1ddc42d627282f81f86d87 (diff) |
recognize another 5714 family chipset.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/if_bge.c | 8 | ||||
-rw-r--r-- | sys/dev/pci/if_bgereg.h | 5 |
2 files changed, 10 insertions, 3 deletions
diff --git a/sys/dev/pci/if_bge.c b/sys/dev/pci/if_bge.c index 27413c4ca8f..09c4416a760 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.131 2006/02/09 03:31:44 brad Exp $ */ +/* $OpenBSD: if_bge.c,v 1.132 2006/02/11 09:01:30 brad Exp $ */ /* * Copyright (c) 2001 Wind River Systems @@ -391,6 +391,12 @@ static const struct bge_revision { { BGE_CHIPID_BCM5752_A1, "BCM5752 A1" }, + { BGE_CHIPID_BCM5714_B0, + "BCM5714 B0" }, + + { BGE_CHIPID_BCM5714_B3, + "BCM5714 B3" }, + { BGE_CHIPID_BCM5715_A0, "BCM5715 A0" }, diff --git a/sys/dev/pci/if_bgereg.h b/sys/dev/pci/if_bgereg.h index 40abc730b44..c206575f122 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.40 2006/02/01 01:09:15 brad Exp $ */ +/* $OpenBSD: if_bgereg.h,v 1.41 2006/02/11 09:01:30 brad Exp $ */ /* * Copyright (c) 2001 Wind River Systems @@ -269,7 +269,8 @@ #define BGE_CHIPID_BCM5714_A0 0x50000000 #define BGE_CHIPID_BCM5752_A0 0x60000000 #define BGE_CHIPID_BCM5752_A1 0x60010000 -#define BGE_CHIPID_BCM5714 0x80000000 +#define BGE_CHIPID_BCM5714_B0 0x80000000 +#define BGE_CHIPID_BCM5714_B3 0x80030000 #define BGE_CHIPID_BCM5715_A0 0x90000000 #define BGE_CHIPID_BCM5715_A1 0x90010000 |