aboutsummaryrefslogtreecommitdiffstats
path: root/package/linux
diff options
context:
space:
mode:
authorMike Baker <mbm@openwrt.org>2005-05-13 00:35:33 +0000
committerMike Baker <mbm@openwrt.org>2005-05-13 00:35:33 +0000
commitcacf706b2228e68f2ff61f1d7142162c90a74091 (patch)
tree62cbc9268b9812b2d7da9a7a33a060b5ca699a6b /package/linux
parent39c03360fd9457d98842927f7fdfe71661e48db6 (diff)
downloadmaster-187ad058-cacf706b2228e68f2ff61f1d7142162c90a74091.tar.gz
master-187ad058-cacf706b2228e68f2ff61f1d7142162c90a74091.tar.bz2
master-187ad058-cacf706b2228e68f2ff61f1d7142162c90a74091.zip
more pci fixes
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@862 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/linux')
-rw-r--r--package/linux/kernel-source/arch/mips/brcm-boards/bcm947xx/sbpci.c4
-rw-r--r--package/linux/kernel-source/include/bcmdevs.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/package/linux/kernel-source/arch/mips/brcm-boards/bcm947xx/sbpci.c b/package/linux/kernel-source/arch/mips/brcm-boards/bcm947xx/sbpci.c
index 2841519350..538dea57ba 100644
--- a/package/linux/kernel-source/arch/mips/brcm-boards/bcm947xx/sbpci.c
+++ b/package/linux/kernel-source/arch/mips/brcm-boards/bcm947xx/sbpci.c
@@ -282,7 +282,9 @@ sbpci_init(void *sbh)
* PCI is bonded out, some boards may leave the pins
* floating.
*/
- if (((chip == BCM4712_DEVICE_ID) && (chippkg == BCM4712SMALL_PKG_ID)) ||
+ if (((chip == BCM4712_DEVICE_ID) &&
+ ((chippkg == BCM4712SMALL_PKG_ID) ||
+ (chippkg == BCM4712MID_PKG_ID))) ||
(boardflags & BFL_NOPCI))
pci_disabled = TRUE;
diff --git a/package/linux/kernel-source/include/bcmdevs.h b/package/linux/kernel-source/include/bcmdevs.h
index 5e41b87c89..92590287cd 100644
--- a/package/linux/kernel-source/include/bcmdevs.h
+++ b/package/linux/kernel-source/include/bcmdevs.h
@@ -98,7 +98,9 @@
#define BCM4712_DEVICE_ID 0x4712 /* 4712 chipcommon chipid */
#define BCM4712_MIPS_ID 0x4720 /* 4712 base devid */
+#define BCM4712LARGE_PKG_ID 0 /* 340pin 4712 package id */
#define BCM4712SMALL_PKG_ID 1 /* 200pin 4712 package id */
+#define BCM4712MID_PKG_ID 2 /* 225pin 4712 package id */
#define SDIOH_FPGA_ID 0x4380 /* sdio host fpga */