Module Name: src
Committed By: matt
Date: Sun Aug 9 17:53:54 UTC 2009
Modified Files:
src/sys/arch/mips/mips: mips_machdep.c
Log Message:
Initialize Page Mask register based on PAGE_SIZE, don't assume it's always
going to be 4KB. (And this change, I can boot a GDIUM kernel with 16KB
pages as far as I could with 4KB).
To generate a diff of this commit:
cvs rdiff -u -r1.215 -r1.216 src/sys/arch/mips/mips/mips_machdep.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/mips/mips/mips_machdep.c
diff -u src/sys/arch/mips/mips/mips_machdep.c:1.215 src/sys/arch/mips/mips/mips_machdep.c:1.216
--- src/sys/arch/mips/mips/mips_machdep.c:1.215 Sun Aug 9 04:06:35 2009
+++ src/sys/arch/mips/mips/mips_machdep.c Sun Aug 9 17:53:54 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: mips_machdep.c,v 1.215 2009/08/09 04:06:35 matt Exp $ */
+/* $NetBSD: mips_machdep.c,v 1.216 2009/08/09 17:53:54 matt Exp $ */
/*
* Copyright 2002 Wasabi Systems, Inc.
@@ -112,7 +112,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
-__KERNEL_RCSID(0, "$NetBSD: mips_machdep.c,v 1.215 2009/08/09 04:06:35 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mips_machdep.c,v 1.216 2009/08/09 17:53:54 matt Exp $");
#include "opt_cputype.h"
@@ -931,7 +931,7 @@
case CPU_ARCH_MIPS3:
case CPU_ARCH_MIPS4:
#if defined(MIPS3_5900) /* XXX */
- mips3_cp0_pg_mask_write(MIPS3_PG_SIZE_4K);
+ mips3_cp0_pg_mask_write(MIPS3_PG_SIZE_TO_MASK(PAGE_SIZE));
mips3_cp0_wired_write(0);
mips5900_TBIA(mips_num_tlb_entries);
mips3_cp0_wired_write(MIPS3_TLB_WIRED_UPAGES);
@@ -940,10 +940,10 @@
#else /* MIPS3_5900 */
#if defined(MIPS3_4100)
if (MIPS_PRID_IMPL(cpu_id) == MIPS_R4100)
- mips3_cp0_pg_mask_write(MIPS4100_PG_SIZE_4K);
+ mips3_cp0_pg_mask_write(MIPS4100_PG_SIZE_TO_MASK(PAGE_SIZE));
else
#endif
- mips3_cp0_pg_mask_write(MIPS3_PG_SIZE_4K);
+ mips3_cp0_pg_mask_write(MIPS3_PG_SIZE_TO_MASK(PAGE_SIZE));
mips3_cp0_wired_write(0);
mips3_TBIA(mips_num_tlb_entries);
mips3_cp0_wired_write(MIPS3_TLB_WIRED_UPAGES);
@@ -954,7 +954,7 @@
#endif
#if defined(MIPS32)
case CPU_ARCH_MIPS32:
- mips3_cp0_pg_mask_write(MIPS3_PG_SIZE_4K);
+ mips3_cp0_pg_mask_write(MIPS3_PG_SIZE_TO_MASK(PAGE_SIZE));
mips3_cp0_wired_write(0);
mips32_TBIA(mips_num_tlb_entries);
mips3_cp0_wired_write(MIPS3_TLB_WIRED_UPAGES);
@@ -964,7 +964,7 @@
#endif
#if defined(MIPS64)
case CPU_ARCH_MIPS64:
- mips3_cp0_pg_mask_write(MIPS3_PG_SIZE_4K);
+ mips3_cp0_pg_mask_write(MIPS3_PG_SIZE_TO_MASK(PAGE_SIZE));
mips3_cp0_wired_write(0);
mips64_TBIA(mips_num_tlb_entries);
mips3_cp0_wired_write(MIPS3_TLB_WIRED_UPAGES);