diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2011-07-07 18:44:40 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2011-07-07 18:44:40 +0000 |
commit | c3cd94eb41186f79a24cec1145efddf158a564e6 (patch) | |
tree | 35f72c80ef74b8066dc2acfb62e8c44e393d61f1 /sys/arch/hppa64 | |
parent | 0e8e6e2bbb4644f7b852ee49b5b3c8cb135ff9fd (diff) |
Raise the cache aliasing boundary to 4MB like we did on hppa a couple of years
ago.
Diffstat (limited to 'sys/arch/hppa64')
-rw-r--r-- | sys/arch/hppa64/include/cpu.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/hppa64/include/cpu.h b/sys/arch/hppa64/include/cpu.h index d35f3b0a954..f3a9687da4e 100644 --- a/sys/arch/hppa64/include/cpu.h +++ b/sys/arch/hppa64/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.25 2011/04/21 12:42:59 jsing Exp $ */ +/* $OpenBSD: cpu.h,v 1.26 2011/07/07 18:44:39 kettenis Exp $ */ /* * Copyright (c) 2005 Michael Shalayeff @@ -134,9 +134,9 @@ extern int cpu_hvers; * Exported definitions unique to hp700/PA-RISC cpu support. */ -#define HPPA_PGALIAS 0x0000000000100000UL -#define HPPA_PGAMASK 0xfffffffffff00000UL -#define HPPA_PGAOFF 0x00000000000fffffUL +#define HPPA_PGALIAS 0x0000000000400000UL +#define HPPA_PGAMASK 0xffffffffffc00000UL +#define HPPA_PGAOFF 0x00000000003fffffUL #define HPPA_PHYSMAP 0x000001ffffffffffUL #define HPPA_IOBEGIN 0xfffffff000000000UL |