summaryrefslogtreecommitdiff
path: root/sys/arch/powerpc/pci
diff options
context:
space:
mode:
authorDale S. Rahn <rahnds@cvs.openbsd.org>1998-10-09 02:09:20 +0000
committerDale S. Rahn <rahnds@cvs.openbsd.org>1998-10-09 02:09:20 +0000
commit5aacd91b8a0e5362bee11851ace045af10df5d33 (patch)
tree0d19715f36a16f0acdd4221bae0d23a09abb5d09 /sys/arch/powerpc/pci
parent4e60339ea8b52ea5c31f0d9c7100cb44daafb3d5 (diff)
PCI io space starts at 0x80000000 not 16MB added to that address, when
referring to the offset specified in the pci base address config register.
Diffstat (limited to 'sys/arch/powerpc/pci')
-rw-r--r--sys/arch/powerpc/pci/mpc106reg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/powerpc/pci/mpc106reg.h b/sys/arch/powerpc/pci/mpc106reg.h
index 29f839fb557..edc27ff5486 100644
--- a/sys/arch/powerpc/pci/mpc106reg.h
+++ b/sys/arch/powerpc/pci/mpc106reg.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: mpc106reg.h,v 1.2 1998/08/25 07:40:47 pefo Exp $ */
+/* $OpenBSD: mpc106reg.h,v 1.3 1998/10/09 02:09:19 rahnds Exp $ */
/*
* Copyright (c) 1997 Per Fogelstrom
@@ -45,7 +45,7 @@
/* Where we map the PCI I/O space */
#define MPC106_P_ISA_IO_SPACE 0x80000000
#define MPC106_V_ISA_IO_SPACE 0x80000000
-#define MPC106_V_PCI_IO_SPACE (MPC106_V_ISA_IO_SPACE + 0x01000000)
+#define MPC106_V_PCI_IO_SPACE 0x80000000
/* Where we map the config space */
#define MPC106_PCI_CONF_SPACE (MPC106_V_ISA_IO_SPACE + 0x00800000)