summaryrefslogtreecommitdiffstats
path: root/sys/sun4v/include
diff options
context:
space:
mode:
authoralc <alc@FreeBSD.org>2007-06-03 23:33:11 +0000
committeralc <alc@FreeBSD.org>2007-06-03 23:33:11 +0000
commit038cbd309191ecf0eb033e2443aeee4949a312dd (patch)
tree01dde4b9c58e7be22a53ff4e0d6837dcf52b4e6b /sys/sun4v/include
parent0c68a06c262d5f5a208d9c6bc2aeae293543782c (diff)
downloadFreeBSD-src-038cbd309191ecf0eb033e2443aeee4949a312dd.zip
FreeBSD-src-038cbd309191ecf0eb033e2443aeee4949a312dd.tar.gz
Add the machine-specific definitions for configuring the new physical
memory allocator. Approved by: re
Diffstat (limited to 'sys/sun4v/include')
-rw-r--r--sys/sun4v/include/vmparam.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/sys/sun4v/include/vmparam.h b/sys/sun4v/include/vmparam.h
index 6d475f6..42af1df 100644
--- a/sys/sun4v/include/vmparam.h
+++ b/sys/sun4v/include/vmparam.h
@@ -83,6 +83,44 @@
#define VM_PHYSSEG_DENSE
/*
+ * The number of PHYSSEG entries must be one greater than the number
+ * of phys_avail entries because the phys_avail entry that spans the
+ * largest physical address that is accessible by ISA DMA is split
+ * into two PHYSSEG entries.
+ */
+#define VM_PHYSSEG_MAX 64
+
+/*
+ * Create two free page pools: VM_FREEPOOL_DEFAULT is the default pool
+ * from which physical pages are allocated and VM_FREEPOOL_DIRECT is
+ * the pool from which physical pages for small UMA objects are
+ * allocated.
+ */
+#define VM_NFREEPOOL 2
+#define VM_FREEPOOL_DEFAULT 0
+#define VM_FREEPOOL_DIRECT 1
+
+/*
+ * Create two free page lists: VM_FREELIST_DEFAULT is for physical
+ * pages that are above the largest physical address that is
+ * accessible by ISA DMA and VM_FREELIST_ISADMA is for physical pages
+ * that are below that address.
+ */
+#define VM_NFREELIST 2
+#define VM_FREELIST_DEFAULT 0
+#define VM_FREELIST_ISADMA 1
+
+/*
+ * An allocation size of 16MB is supported in order to optimize the
+ * use of the direct map by UMA. Specifically, a cache line contains
+ * at most four TTEs, collectively mapping 16MB of physical memory.
+ * By reducing the number of distinct 16MB "pages" that are used by UMA,
+ * the physical memory allocator reduces the likelihood of both 4MB
+ * page TLB misses and cache misses caused by 4MB page TLB misses.
+ */
+#define VM_NFREEORDER 12
+
+/*
* Address space layout.
*
* UltraSPARC I and II implement a 44 bit virtual address space. The address
OpenPOWER on IntegriCloud