2005-04-17 00:20:36 +02:00
|
|
|
#ifndef _X86_64_PAGE_H
|
|
|
|
#define _X86_64_PAGE_H
|
|
|
|
|
2007-05-08 09:31:11 +02:00
|
|
|
#include <linux/const.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/* PAGE_SHIFT determines the page size */
|
|
|
|
#define PAGE_SHIFT 12
|
2007-05-02 19:27:06 +02:00
|
|
|
#define PAGE_SIZE (_AC(1,UL) << PAGE_SHIFT)
|
2005-04-17 00:20:36 +02:00
|
|
|
#define PAGE_MASK (~(PAGE_SIZE-1))
|
2005-11-05 17:25:53 +01:00
|
|
|
#define PHYSICAL_PAGE_MASK (~(PAGE_SIZE-1) & __PHYSICAL_MASK)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#define THREAD_ORDER 1
|
2006-01-11 22:43:00 +01:00
|
|
|
#define THREAD_SIZE (PAGE_SIZE << THREAD_ORDER)
|
2005-04-17 00:20:36 +02:00
|
|
|
#define CURRENT_MASK (~(THREAD_SIZE-1))
|
|
|
|
|
2006-01-11 22:43:00 +01:00
|
|
|
#define EXCEPTION_STACK_ORDER 0
|
|
|
|
#define EXCEPTION_STKSZ (PAGE_SIZE << EXCEPTION_STACK_ORDER)
|
|
|
|
|
2006-07-28 14:44:48 +02:00
|
|
|
#define DEBUG_STACK_ORDER (EXCEPTION_STACK_ORDER + 1)
|
2006-01-11 22:43:00 +01:00
|
|
|
#define DEBUG_STKSZ (PAGE_SIZE << DEBUG_STACK_ORDER)
|
|
|
|
|
|
|
|
#define IRQSTACK_ORDER 2
|
|
|
|
#define IRQSTACKSIZE (PAGE_SIZE << IRQSTACK_ORDER)
|
|
|
|
|
2006-01-16 01:56:39 +01:00
|
|
|
#define STACKFAULT_STACK 1
|
|
|
|
#define DOUBLEFAULT_STACK 2
|
|
|
|
#define NMI_STACK 3
|
|
|
|
#define DEBUG_STACK 4
|
|
|
|
#define MCE_STACK 5
|
|
|
|
#define N_EXCEPTION_STACKS 5 /* hw limit: 7 */
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#define LARGE_PAGE_MASK (~(LARGE_PAGE_SIZE-1))
|
2007-05-02 19:27:06 +02:00
|
|
|
#define LARGE_PAGE_SIZE (_AC(1,UL) << PMD_SHIFT)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#define HPAGE_SHIFT PMD_SHIFT
|
2007-05-02 19:27:06 +02:00
|
|
|
#define HPAGE_SIZE (_AC(1,UL) << HPAGE_SHIFT)
|
2005-04-17 00:20:36 +02:00
|
|
|
#define HPAGE_MASK (~(HPAGE_SIZE - 1))
|
|
|
|
#define HUGETLB_PAGE_ORDER (HPAGE_SHIFT - PAGE_SHIFT)
|
|
|
|
|
|
|
|
#ifdef __KERNEL__
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
|
2005-09-12 18:49:24 +02:00
|
|
|
extern unsigned long end_pfn;
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
void clear_page(void *);
|
|
|
|
void copy_page(void *, void *);
|
|
|
|
|
|
|
|
#define clear_user_page(page, vaddr, pg) clear_page(page)
|
|
|
|
#define copy_user_page(to, from, vaddr, pg) copy_page(to, from)
|
|
|
|
|
|
|
|
#define alloc_zeroed_user_highpage(vma, vaddr) alloc_page_vma(GFP_HIGHUSER | __GFP_ZERO, vma, vaddr)
|
|
|
|
#define __HAVE_ARCH_ALLOC_ZEROED_USER_HIGHPAGE
|
|
|
|
/*
|
|
|
|
* These are used to make use of C type-checking..
|
|
|
|
*/
|
|
|
|
typedef struct { unsigned long pte; } pte_t;
|
|
|
|
typedef struct { unsigned long pmd; } pmd_t;
|
|
|
|
typedef struct { unsigned long pud; } pud_t;
|
|
|
|
typedef struct { unsigned long pgd; } pgd_t;
|
|
|
|
#define PTE_MASK PHYSICAL_PAGE_MASK
|
|
|
|
|
|
|
|
typedef struct { unsigned long pgprot; } pgprot_t;
|
|
|
|
|
2007-05-02 19:27:07 +02:00
|
|
|
extern unsigned long phys_base;
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#define pte_val(x) ((x).pte)
|
|
|
|
#define pmd_val(x) ((x).pmd)
|
|
|
|
#define pud_val(x) ((x).pud)
|
|
|
|
#define pgd_val(x) ((x).pgd)
|
|
|
|
#define pgprot_val(x) ((x).pgprot)
|
|
|
|
|
|
|
|
#define __pte(x) ((pte_t) { (x) } )
|
|
|
|
#define __pmd(x) ((pmd_t) { (x) } )
|
|
|
|
#define __pud(x) ((pud_t) { (x) } )
|
|
|
|
#define __pgd(x) ((pgd_t) { (x) } )
|
|
|
|
#define __pgprot(x) ((pgprot_t) { (x) } )
|
|
|
|
|
2007-05-02 19:27:06 +02:00
|
|
|
#endif /* !__ASSEMBLY__ */
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-06-25 23:57:52 +02:00
|
|
|
#define __PHYSICAL_START CONFIG_PHYSICAL_START
|
2007-05-02 19:27:08 +02:00
|
|
|
#define __KERNEL_ALIGN 0x200000
|
2005-06-25 23:57:52 +02:00
|
|
|
#define __START_KERNEL (__START_KERNEL_map + __PHYSICAL_START)
|
2005-04-17 00:20:36 +02:00
|
|
|
#define __START_KERNEL_map 0xffffffff80000000
|
|
|
|
#define __PAGE_OFFSET 0xffff810000000000
|
|
|
|
|
|
|
|
/* to align the pointer to the (next) page boundary */
|
|
|
|
#define PAGE_ALIGN(addr) (((addr)+PAGE_SIZE-1)&PAGE_MASK)
|
|
|
|
|
|
|
|
/* See Documentation/x86_64/mm.txt for a description of the memory map. */
|
|
|
|
#define __PHYSICAL_MASK_SHIFT 46
|
2007-05-02 19:27:06 +02:00
|
|
|
#define __PHYSICAL_MASK ((_AC(1,UL) << __PHYSICAL_MASK_SHIFT) - 1)
|
2005-04-17 00:20:36 +02:00
|
|
|
#define __VIRTUAL_MASK_SHIFT 48
|
2007-05-02 19:27:06 +02:00
|
|
|
#define __VIRTUAL_MASK ((_AC(1,UL) << __VIRTUAL_MASK_SHIFT) - 1)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-05-02 19:27:06 +02:00
|
|
|
#define KERNEL_TEXT_SIZE (40*1024*1024)
|
|
|
|
#define KERNEL_TEXT_START 0xffffffff80000000
|
Revert "[PATCH] x86: __pa and __pa_symbol address space separation"
This was broken. It adds complexity, for no good reason. Rather than
separate __pa() and __pa_symbol(), we should deprecate __pa_symbol(),
and preferably __pa() too - and just use "virt_to_phys()" instead, which
is more readable and has nicer semantics.
However, right now, just undo the separation, and make __pa_symbol() be
the exact same as __pa(). That fixes the bugs this patch introduced,
and we can do the fairly obvious cleanups later.
Do the new __phys_addr() function (which is now the actual workhorse for
the unified __pa()/__pa_symbol()) as a real external function, that way
all the potential issues with compile/link-time optimizations of
constant symbol addresses go away, and we can also, if we choose to, add
more sanity-checking of the argument.
Cc: Eric W. Biederman <ebiederm@xmission.com>
Cc: Vivek Goyal <vgoyal@in.ibm.com>
Cc: Andi Kleen <ak@suse.de>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-05-07 17:44:24 +02:00
|
|
|
#define PAGE_OFFSET __PAGE_OFFSET
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
|
|
|
|
#include <asm/bug.h>
|
|
|
|
|
Revert "[PATCH] x86: __pa and __pa_symbol address space separation"
This was broken. It adds complexity, for no good reason. Rather than
separate __pa() and __pa_symbol(), we should deprecate __pa_symbol(),
and preferably __pa() too - and just use "virt_to_phys()" instead, which
is more readable and has nicer semantics.
However, right now, just undo the separation, and make __pa_symbol() be
the exact same as __pa(). That fixes the bugs this patch introduced,
and we can do the fairly obvious cleanups later.
Do the new __phys_addr() function (which is now the actual workhorse for
the unified __pa()/__pa_symbol()) as a real external function, that way
all the potential issues with compile/link-time optimizations of
constant symbol addresses go away, and we can also, if we choose to, add
more sanity-checking of the argument.
Cc: Eric W. Biederman <ebiederm@xmission.com>
Cc: Vivek Goyal <vgoyal@in.ibm.com>
Cc: Andi Kleen <ak@suse.de>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-05-07 17:44:24 +02:00
|
|
|
extern unsigned long __phys_addr(unsigned long);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
Revert "[PATCH] x86: __pa and __pa_symbol address space separation"
This was broken. It adds complexity, for no good reason. Rather than
separate __pa() and __pa_symbol(), we should deprecate __pa_symbol(),
and preferably __pa() too - and just use "virt_to_phys()" instead, which
is more readable and has nicer semantics.
However, right now, just undo the separation, and make __pa_symbol() be
the exact same as __pa(). That fixes the bugs this patch introduced,
and we can do the fairly obvious cleanups later.
Do the new __phys_addr() function (which is now the actual workhorse for
the unified __pa()/__pa_symbol()) as a real external function, that way
all the potential issues with compile/link-time optimizations of
constant symbol addresses go away, and we can also, if we choose to, add
more sanity-checking of the argument.
Cc: Eric W. Biederman <ebiederm@xmission.com>
Cc: Vivek Goyal <vgoyal@in.ibm.com>
Cc: Andi Kleen <ak@suse.de>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-05-07 17:44:24 +02:00
|
|
|
#endif /* __ASSEMBLY__ */
|
2005-04-17 00:20:36 +02:00
|
|
|
|
Revert "[PATCH] x86: __pa and __pa_symbol address space separation"
This was broken. It adds complexity, for no good reason. Rather than
separate __pa() and __pa_symbol(), we should deprecate __pa_symbol(),
and preferably __pa() too - and just use "virt_to_phys()" instead, which
is more readable and has nicer semantics.
However, right now, just undo the separation, and make __pa_symbol() be
the exact same as __pa(). That fixes the bugs this patch introduced,
and we can do the fairly obvious cleanups later.
Do the new __phys_addr() function (which is now the actual workhorse for
the unified __pa()/__pa_symbol()) as a real external function, that way
all the potential issues with compile/link-time optimizations of
constant symbol addresses go away, and we can also, if we choose to, add
more sanity-checking of the argument.
Cc: Eric W. Biederman <ebiederm@xmission.com>
Cc: Vivek Goyal <vgoyal@in.ibm.com>
Cc: Andi Kleen <ak@suse.de>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-05-07 17:44:24 +02:00
|
|
|
#define __pa(x) __phys_addr((unsigned long)(x))
|
|
|
|
#define __pa_symbol(x) __phys_addr((unsigned long)(x))
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#define __va(x) ((void *)((unsigned long)(x)+PAGE_OFFSET))
|
Revert "[PATCH] x86: __pa and __pa_symbol address space separation"
This was broken. It adds complexity, for no good reason. Rather than
separate __pa() and __pa_symbol(), we should deprecate __pa_symbol(),
and preferably __pa() too - and just use "virt_to_phys()" instead, which
is more readable and has nicer semantics.
However, right now, just undo the separation, and make __pa_symbol() be
the exact same as __pa(). That fixes the bugs this patch introduced,
and we can do the fairly obvious cleanups later.
Do the new __phys_addr() function (which is now the actual workhorse for
the unified __pa()/__pa_symbol()) as a real external function, that way
all the potential issues with compile/link-time optimizations of
constant symbol addresses go away, and we can also, if we choose to, add
more sanity-checking of the argument.
Cc: Eric W. Biederman <ebiederm@xmission.com>
Cc: Vivek Goyal <vgoyal@in.ibm.com>
Cc: Andi Kleen <ak@suse.de>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-05-07 17:44:24 +02:00
|
|
|
#define __boot_va(x) __va(x)
|
|
|
|
#define __boot_pa(x) __pa(x)
|
2005-06-23 09:08:06 +02:00
|
|
|
#ifdef CONFIG_FLATMEM
|
2005-09-12 18:49:24 +02:00
|
|
|
#define pfn_valid(pfn) ((pfn) < end_pfn)
|
2005-04-17 00:20:36 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define virt_to_page(kaddr) pfn_to_page(__pa(kaddr) >> PAGE_SHIFT)
|
|
|
|
#define virt_addr_valid(kaddr) pfn_valid(__pa(kaddr) >> PAGE_SHIFT)
|
|
|
|
#define pfn_to_kaddr(pfn) __va((pfn) << PAGE_SHIFT)
|
|
|
|
|
|
|
|
#define VM_DATA_DEFAULT_FLAGS \
|
|
|
|
(((current->personality & READ_IMPLIES_EXEC) ? VM_EXEC : 0 ) | \
|
|
|
|
VM_READ | VM_WRITE | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
|
|
|
|
|
|
|
|
#define __HAVE_ARCH_GATE_AREA 1
|
|
|
|
|
2006-03-27 11:15:34 +02:00
|
|
|
#include <asm-generic/memory_model.h>
|
2005-09-04 00:54:30 +02:00
|
|
|
#include <asm-generic/page.h>
|
|
|
|
|
2006-04-27 16:48:08 +02:00
|
|
|
#endif /* __KERNEL__ */
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#endif /* _X86_64_PAGE_H */
|