summaryrefslogtreecommitdiff
path: root/sys/arch/amd64/pci
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2009-04-11 17:13:34 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2009-04-11 17:13:34 +0000
commit08fa0b17d91348290772c5b75bc60e38f8d42bad (patch)
tree360afea18afde97fe9e2a50a6fcee1db7d0581d7 /sys/arch/amd64/pci
parenteccb04705ac1a9a387c0e27658f1ddf8f9c131ea (diff)
Create extents for resource accounting on the root PCI bus and populate them
based on the BIOS memory map.
Diffstat (limited to 'sys/arch/amd64/pci')
-rw-r--r--sys/arch/amd64/pci/pci_machdep.c42
1 files changed, 41 insertions, 1 deletions
diff --git a/sys/arch/amd64/pci/pci_machdep.c b/sys/arch/amd64/pci/pci_machdep.c
index 96b62150d83..e91d7e8215f 100644
--- a/sys/arch/amd64/pci/pci_machdep.c
+++ b/sys/arch/amd64/pci/pci_machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pci_machdep.c,v 1.24 2009/04/04 16:03:17 kettenis Exp $ */
+/* $OpenBSD: pci_machdep.c,v 1.25 2009/04/11 17:13:33 kettenis Exp $ */
/* $NetBSD: pci_machdep.c,v 1.3 2003/05/07 21:33:58 fvdl Exp $ */
/*-
@@ -79,6 +79,8 @@
#include <sys/systm.h>
#include <sys/errno.h>
#include <sys/device.h>
+#include <sys/extent.h>
+#include <sys/malloc.h>
#include <uvm/uvm_extern.h>
@@ -86,6 +88,7 @@
#include <machine/pio.h>
#include <machine/intr.h>
+#include <machine/biosvar.h>
#include <dev/isa/isareg.h>
#include <dev/isa/isavar.h>
@@ -549,3 +552,40 @@ pci_intr_disestablish(pci_chipset_tag_t pc, void *cookie)
{
intr_disestablish(cookie);
}
+
+struct extent *pciio_ex;
+struct extent *pcimem_ex;
+
+void
+pci_init_extents(void)
+{
+ bios_memmap_t *bmp;
+ u_int64_t size;
+
+ if (pciio_ex == NULL)
+ pciio_ex = extent_create("pciio", 0, 0xffff, M_DEVBUF,
+ NULL, 0, EX_NOWAIT);
+
+ if (pcimem_ex == NULL) {
+ pcimem_ex = extent_create("pcimem", 0, 0xffffffff, M_DEVBUF,
+ NULL, 0, EX_NOWAIT);
+ if (pcimem_ex == NULL)
+ return;
+
+ for (bmp = bios_memmap; bmp->type != BIOS_MAP_END; bmp++) {
+ /*
+ * Ignore address space beyond 4G.
+ */
+ if (bmp->addr >= 0x100000000ULL)
+ continue;
+ size = bmp->size;
+ if (bmp->addr + size >= 0x100000000ULL)
+ size = 0x100000000ULL - bmp->addr;
+
+ if (extent_alloc_region(pcimem_ex, bmp->addr, size,
+ EX_NOWAIT))
+ printf("memory map conflict 0x%llx/0x%llx\n",
+ bmp->addr, bmp->size);
+ }
+ }
+}