summaryrefslogtreecommitdiff
path: root/sys/arch/alpha/include
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2009-10-02 17:57:24 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2009-10-02 17:57:24 +0000
commitaed0d244243ddcfc67a5ea117baf712d50b4d7bd (patch)
treea94a9cdca1288461c15d316a0816c06e9c87b84e /sys/arch/alpha/include
parent42d38499b376ca9066c18b7918a2990055df1920 (diff)
Link the kernel at a higher physical address, in order to accomodate SRM
with larger footprint than the usual 2MB, as encountered on some of the most recent alpha systems. Tested on many models (DEC 3000, PC164, AS500, ES40, and more)
Diffstat (limited to 'sys/arch/alpha/include')
-rw-r--r--sys/arch/alpha/include/param.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/include/param.h b/sys/arch/alpha/include/param.h
index 721367e8939..ace9b16468c 100644
--- a/sys/arch/alpha/include/param.h
+++ b/sys/arch/alpha/include/param.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: param.h,v 1.33 2007/09/15 10:10:37 martin Exp $ */
+/* $OpenBSD: param.h,v 1.34 2009/10/02 17:57:23 miod Exp $ */
/* $NetBSD: param.h,v 1.30 2000/06/09 16:03:04 thorpej Exp $ */
/*
@@ -74,7 +74,7 @@
#define PAGE_SIZE (1 << PAGE_SHIFT)
#define PAGE_MASK (PAGE_SIZE - 1)
-#define KERNBASE 0xfffffc0000230000 /* start of kernel virtual */
+#define KERNBASE 0xfffffc0000580000 /* start of kernel virtual */
#define DEV_BSHIFT 9 /* log2(DEV_BSIZE) */
#define DEV_BSIZE (1 << DEV_BSHIFT)