diff options
author | David Daney <ddaney@caviumnetworks.com> | 2009-05-27 20:47:43 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2009-06-17 06:06:30 -0400 |
commit | dd7943920b492d9d8a79080fe05e25ecd7e10bc3 (patch) | |
tree | 51c5dd2079819186009e5703c936ddeb3cd845e2 /arch/mips/include/asm/mipsregs.h | |
parent | 50a41ff292fafe1e937102be23464b54fed8b78c (diff) |
MIPS: Add hugetlbfs page defines.
Signed-off-by: David Daney <ddaney@caviumnetworks.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/include/asm/mipsregs.h')
-rw-r--r-- | arch/mips/include/asm/mipsregs.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/mips/include/asm/mipsregs.h b/arch/mips/include/asm/mipsregs.h index 32ef8bec5c85..a581d60cbcc2 100644 --- a/arch/mips/include/asm/mipsregs.h +++ b/arch/mips/include/asm/mipsregs.h | |||
@@ -220,6 +220,22 @@ | |||
220 | #error Bad page size configuration! | 220 | #error Bad page size configuration! |
221 | #endif | 221 | #endif |
222 | 222 | ||
223 | /* | ||
224 | * Default huge tlb size for a given kernel configuration | ||
225 | */ | ||
226 | #ifdef CONFIG_PAGE_SIZE_4KB | ||
227 | #define PM_HUGE_MASK PM_1M | ||
228 | #elif defined(CONFIG_PAGE_SIZE_8KB) | ||
229 | #define PM_HUGE_MASK PM_4M | ||
230 | #elif defined(CONFIG_PAGE_SIZE_16KB) | ||
231 | #define PM_HUGE_MASK PM_16M | ||
232 | #elif defined(CONFIG_PAGE_SIZE_32KB) | ||
233 | #define PM_HUGE_MASK PM_64M | ||
234 | #elif defined(CONFIG_PAGE_SIZE_64KB) | ||
235 | #define PM_HUGE_MASK PM_256M | ||
236 | #elif defined(CONFIG_HUGETLB_PAGE) | ||
237 | #error Bad page size configuration for hugetlbfs! | ||
238 | #endif | ||
223 | 239 | ||
224 | /* | 240 | /* |
225 | * Values used for computation of new tlb entries | 241 | * Values used for computation of new tlb entries |