Bug #775
closedfix for alix1.c pci bus detection
0%
Description
Seen on ALIX.1C board (www.pcengines.ch) .. Matt suspects it may be fix some recent Transmeta -based
issues ..
- cvs diff -u pci_cfgreg.h pcibus.h
Index: pci_cfgreg.h ===================================================================
RCS file: /usr/dfly/repo/src/sys/bus/pci/i386/pci_cfgreg.h,v
retrieving revision 1.2
diffu -r1.2 pci_cfgreg.hpci_cfgreg.h 27 Jun 2005 02:27:10 -0000 1.2
--
+++ pci_cfgreg.h 13 Aug 2007 16:52:52 -0000@ -36,7 +36,7
@#define CONF1_ENABLE 0x80000000ul
===================================================================
#define CONF1_ENABLE_CHK 0x80000000ul
-#define CONF1_ENABLE_MSK 0x7ff00000ul
+#define CONF1_ENABLE_MSK 0x7f000000ul
#define CONF1_ENABLE_CHK1 0xff000001ul
#define CONF1_ENABLE_MSK1 0x80000001ul
#define CONF1_ENABLE_RES1 0x80000000ul
Index: pcibus.h
RCS file: /usr/dfly/repo/src/sys/bus/pci/i386/pcibus.h,v
retrieving revision 1.3
diffu -r1.3 pcibus.hpcibus.h 27 Jun 2005 02:27:10 -0000 1.3
--
+++ pcibus.h 13 Aug 2007 16:52:44 -0000@ -33,7 +33,7
@#define CONF1_ENABLE 0x80000000ul
#define CONF1_ENABLE_CHK 0x80000000ul
-#define CONF1_ENABLE_MSK 0x7ff00000ul
+#define CONF1_ENABLE_MSK 0x7f000000ul
#define CONF1_ENABLE_CHK1 0xff000001ul
#define CONF1_ENABLE_MSK1 0x80000001ul
#define CONF1_ENABLE_RES1 0x80000000ul
Updated by dillon over 17 years ago
:
:Seen on ALIX.1C board (www.pcengines.ch) .. Matt suspects it may be fix some recent Transmeta -based
:issues ..
Committed for wider testing. I'd appreciate it if people running
HEAD could test this sooner rather then later and report back if
their systems no longer boot :-)
-Matt