2005-04-16 15:20:36 -07:00
/*
2008-08-02 10:55:55 +01:00
* arch / arm / include / asm / page . h
2005-04-16 15:20:36 -07:00
*
* Copyright ( C ) 1995 - 2003 Russell King
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation .
*/
# ifndef _ASMARM_PAGE_H
# define _ASMARM_PAGE_H
/* PAGE_SHIFT determines the page size */
# define PAGE_SHIFT 12
2009-06-24 23:38:56 +01:00
# define PAGE_SIZE (_AC(1,UL) << PAGE_SHIFT)
2005-04-16 15:20:36 -07:00
# define PAGE_MASK (~(PAGE_SIZE-1))
# ifndef __ASSEMBLY__
2006-06-20 20:46:52 +01:00
# ifndef CONFIG_MMU
# include "page-nommu.h"
# else
2005-04-16 15:20:36 -07:00
# include <asm/glue.h>
/*
* User Space Model
* = = = = = = = = = = = = = = = =
*
* This section selects the correct set of functions for dealing with
* page - based copying and clearing for user space for the particular
* processor ( s ) we ' re building for .
*
* We have the following to choose from :
* v3 - ARMv3
* v4wt - ARMv4 with writethrough cache , without minicache
* v4wb - ARMv4 with writeback cache , without minicache
* v4_mc - ARMv4 with minicache
* xscale - Xscale
2006-03-28 21:00:40 +01:00
* xsc3 - XScalev3
2005-04-16 15:20:36 -07:00
*/
# undef _USER
# undef MULTI_USER
# ifdef CONFIG_CPU_COPY_V3
# ifdef _USER
# define MULTI_USER 1
# else
# define _USER v3
# endif
# endif
# ifdef CONFIG_CPU_COPY_V4WT
# ifdef _USER
# define MULTI_USER 1
# else
# define _USER v4wt
# endif
# endif
# ifdef CONFIG_CPU_COPY_V4WB
# ifdef _USER
# define MULTI_USER 1
# else
# define _USER v4wb
# endif
# endif
2008-04-24 01:31:45 -04:00
# ifdef CONFIG_CPU_COPY_FEROCEON
# ifdef _USER
# define MULTI_USER 1
# else
# define _USER feroceon
# endif
# endif
2009-03-25 13:10:01 +02:00
# ifdef CONFIG_CPU_COPY_FA
# ifdef _USER
# define MULTI_USER 1
# else
# define _USER fa
# endif
# endif
2005-04-16 15:20:36 -07:00
# ifdef CONFIG_CPU_SA1100
# ifdef _USER
# define MULTI_USER 1
# else
# define _USER v4_mc
# endif
# endif
# ifdef CONFIG_CPU_XSCALE
# ifdef _USER
# define MULTI_USER 1
# else
# define _USER xscale_mc
# endif
# endif
2006-03-28 21:00:40 +01:00
# ifdef CONFIG_CPU_XSC3
# ifdef _USER
# define MULTI_USER 1
# else
# define _USER xsc3_mc
# endif
# endif
2005-04-16 15:20:36 -07:00
# ifdef CONFIG_CPU_COPY_V6
# define MULTI_USER 1
# endif
# if !defined(_USER) && !defined(MULTI_USER)
# error Unknown user operations model
# endif
2008-10-31 15:08:35 +00:00
struct page ;
2009-10-05 15:17:45 +01:00
struct vm_area_struct ;
2008-10-31 15:08:35 +00:00
2005-04-16 15:20:36 -07:00
struct cpu_user_fns {
2008-10-31 16:32:19 +00:00
void ( * cpu_clear_user_highpage ) ( struct page * page , unsigned long vaddr ) ;
2008-10-31 15:08:35 +00:00
void ( * cpu_copy_user_highpage ) ( struct page * to , struct page * from ,
2009-10-05 15:17:45 +01:00
unsigned long vaddr , struct vm_area_struct * vma ) ;
2005-04-16 15:20:36 -07:00
} ;
# ifdef MULTI_USER
extern struct cpu_user_fns cpu_user ;
2008-10-31 16:32:19 +00:00
# define __cpu_clear_user_highpage cpu_user.cpu_clear_user_highpage
2008-10-31 15:08:35 +00:00
# define __cpu_copy_user_highpage cpu_user.cpu_copy_user_highpage
2005-04-16 15:20:36 -07:00
# else
2008-10-31 16:32:19 +00:00
# define __cpu_clear_user_highpage __glue(_USER,_clear_user_highpage)
2008-10-31 15:08:35 +00:00
# define __cpu_copy_user_highpage __glue(_USER,_copy_user_highpage)
2005-04-16 15:20:36 -07:00
2008-10-31 16:32:19 +00:00
extern void __cpu_clear_user_highpage ( struct page * page , unsigned long vaddr ) ;
2008-10-31 15:08:35 +00:00
extern void __cpu_copy_user_highpage ( struct page * to , struct page * from ,
2009-10-05 15:17:45 +01:00
unsigned long vaddr , struct vm_area_struct * vma ) ;
2005-04-16 15:20:36 -07:00
# endif
2008-10-31 16:32:19 +00:00
# define clear_user_highpage(page,vaddr) \
__cpu_clear_user_highpage ( page , vaddr )
2008-10-31 15:08:35 +00:00
# define __HAVE_ARCH_COPY_USER_HIGHPAGE
# define copy_user_highpage(to,from,vaddr,vma) \
2009-10-05 15:17:45 +01:00
__cpu_copy_user_highpage ( to , from , vaddr , vma )
2005-04-16 15:20:36 -07:00
2008-10-27 11:24:09 +00:00
# define clear_page(page) memset((void *)(page), 0, PAGE_SIZE)
2005-04-16 15:20:36 -07:00
extern void copy_page ( void * to , const void * from ) ;
2010-11-16 00:22:09 +00:00
typedef unsigned long pteval_t ;
2005-04-16 15:20:36 -07:00
# undef STRICT_MM_TYPECHECKS
# ifdef STRICT_MM_TYPECHECKS
/*
* These are used to make use of C type - checking . .
*/
2010-11-16 00:22:09 +00:00
typedef struct { pteval_t pte ; } pte_t ;
2005-04-16 15:20:36 -07:00
typedef struct { unsigned long pmd ; } pmd_t ;
typedef struct { unsigned long pgd [ 2 ] ; } pgd_t ;
typedef struct { unsigned long pgprot ; } pgprot_t ;
# define pte_val(x) ((x).pte)
# define pmd_val(x) ((x).pmd)
# define pgd_val(x) ((x).pgd[0])
# define pgprot_val(x) ((x).pgprot)
# define __pte(x) ((pte_t) { (x) } )
# define __pmd(x) ((pmd_t) { (x) } )
# define __pgprot(x) ((pgprot_t) { (x) } )
# else
/*
* . . while these make it easier on the compiler
*/
2010-11-16 00:22:09 +00:00
typedef pteval_t pte_t ;
2005-04-16 15:20:36 -07:00
typedef unsigned long pmd_t ;
typedef unsigned long pgd_t [ 2 ] ;
typedef unsigned long pgprot_t ;
# define pte_val(x) (x)
# define pmd_val(x) (x)
# define pgd_val(x) ((x)[0])
# define pgprot_val(x) (x)
# define __pte(x) (x)
# define __pmd(x) (x)
# define __pgprot(x) (x)
# endif /* STRICT_MM_TYPECHECKS */
2006-06-20 20:46:52 +01:00
# endif /* CONFIG_MMU */
2008-05-23 07:16:52 +01:00
typedef struct page * pgtable_t ;
2009-09-07 15:06:42 +01:00
# ifndef CONFIG_SPARSEMEM
extern int pfn_valid ( unsigned long ) ;
# endif
2005-04-16 15:20:36 -07:00
# include <asm/memory.h>
# endif /* !__ASSEMBLY__ */
2008-09-07 17:16:54 +01:00
# define VM_DATA_DEFAULT_FLAGS \
( ( ( current - > personality & READ_IMPLIES_EXEC ) ? VM_EXEC : 0 ) | \
VM_READ | VM_WRITE | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC )
2005-04-16 15:20:36 -07:00
2009-05-13 22:56:30 +00:00
# include <asm-generic/getorder.h>
2005-09-03 15:54:30 -07:00
2005-04-16 15:20:36 -07:00
# endif