diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1998-10-09 02:09:20 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1998-10-09 02:09:20 +0000 |
commit | 5aacd91b8a0e5362bee11851ace045af10df5d33 (patch) | |
tree | 0d19715f36a16f0acdd4221bae0d23a09abb5d09 /sys/arch/powerpc/pci | |
parent | 4e60339ea8b52ea5c31f0d9c7100cb44daafb3d5 (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.h | 4 |
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) |