2005-06-24 09:01:26 +04:00
/*
* include / asm - xtensa / mmu_context . h
*
* Switch an MMU context .
*
* This file is subject to the terms and conditions of the GNU General Public
* License . See the file " COPYING " in the main directory of this archive
* for more details .
*
* Copyright ( C ) 2001 - 2005 Tensilica Inc .
*/
# ifndef _XTENSA_MMU_CONTEXT_H
# define _XTENSA_MMU_CONTEXT_H
2009-03-04 18:21:31 +03:00
# ifndef CONFIG_MMU
# include <asm/nommu_context.h>
# else
2005-06-24 09:01:26 +04:00
# include <linux/stringify.h>
2007-06-01 04:47:01 +04:00
# include <linux/sched.h>
2005-06-24 09:01:26 +04:00
2009-03-04 18:21:28 +03:00
# include <variant/core.h>
2005-06-24 09:01:26 +04:00
# include <asm/pgtable.h>
# include <asm/cacheflush.h>
# include <asm/tlbflush.h>
2007-05-02 21:27:14 +04:00
# include <asm-generic/mm_hooks.h>
2005-06-24 09:01:26 +04:00
# if (XCHAL_HAVE_TLBS != 1)
# error "Linux must have an MMU!"
# endif
extern unsigned long asid_cache ;
/*
* NO_CONTEXT is the invalid ASID value that we don ' t ever assign to
2006-12-10 13:18:48 +03:00
* any user or kernel context .
*
* 0 invalid
* 1 kernel
* 2 reserved
* 3 reserved
* 4. . .255 available
2005-06-24 09:01:26 +04:00
*/
2006-12-10 13:18:48 +03:00
# define NO_CONTEXT 0
# define ASID_USER_FIRST 4
# define ASID_MASK ((1 << XCHAL_MMU_ASID_BITS) - 1)
# define ASID_INSERT(x) (0x03020001 | (((x) & ASID_MASK) << 8))
2005-06-24 09:01:26 +04:00
2005-09-04 02:57:53 +04:00
static inline void set_rasid_register ( unsigned long val )
2005-06-24 09:01:26 +04:00
{
__asm__ __volatile__ ( " wsr %0, " __stringify ( RASID ) " \n \t "
" isync \n " : : " a " ( val ) ) ;
}
2005-09-04 02:57:53 +04:00
static inline unsigned long get_rasid_register ( void )
2005-06-24 09:01:26 +04:00
{
unsigned long tmp ;
2006-12-10 13:18:48 +03:00
__asm__ __volatile__ ( " rsr %0, " __stringify ( RASID ) " \n \t " : " =a " ( tmp ) ) ;
2005-06-24 09:01:26 +04:00
return tmp ;
}
2005-09-04 02:57:53 +04:00
static inline void
2006-12-10 13:18:48 +03:00
__get_new_mmu_context ( struct mm_struct * mm )
2005-06-24 09:01:26 +04:00
{
extern void flush_tlb_all ( void ) ;
2006-12-10 13:18:48 +03:00
if ( ! ( + + asid_cache & ASID_MASK ) ) {
2005-06-24 09:01:26 +04:00
flush_tlb_all ( ) ; /* start new asid cycle */
2006-12-10 13:18:48 +03:00
asid_cache + = ASID_USER_FIRST ;
2005-06-24 09:01:26 +04:00
}
2006-12-10 13:18:48 +03:00
mm - > context = asid_cache ;
2005-06-24 09:01:26 +04:00
}
2005-09-04 02:57:53 +04:00
static inline void
2006-12-10 13:18:48 +03:00
__load_mmu_context ( struct mm_struct * mm )
2005-06-24 09:01:26 +04:00
{
2006-12-10 13:18:48 +03:00
set_rasid_register ( ASID_INSERT ( mm - > context ) ) ;
invalidate_page_directory ( ) ;
2005-06-24 09:01:26 +04:00
}
/*
* Initialize the context related info for a new mm_struct
* instance .
*/
2005-09-04 02:57:53 +04:00
static inline int
2005-06-24 09:01:26 +04:00
init_new_context ( struct task_struct * tsk , struct mm_struct * mm )
{
mm - > context = NO_CONTEXT ;
return 0 ;
}
2006-12-10 13:18:48 +03:00
/*
* After we have set current - > mm to a new value , this activates
* the context for the new mm so we see the new mappings .
*/
static inline void
activate_mm ( struct mm_struct * prev , struct mm_struct * next )
{
/* Unconditionally get a new ASID. */
__get_new_mmu_context ( next ) ;
__load_mmu_context ( next ) ;
}
2005-09-04 02:57:53 +04:00
static inline void switch_mm ( struct mm_struct * prev , struct mm_struct * next ,
2005-06-24 09:01:26 +04:00
struct task_struct * tsk )
{
unsigned long asid = asid_cache ;
/* Check if our ASID is of an older version and thus invalid */
2006-12-10 13:18:48 +03:00
if ( next - > context = = NO_CONTEXT | | ( ( next - > context ^ asid ) & ~ ASID_MASK ) )
__get_new_mmu_context ( next ) ;
2005-06-24 09:01:26 +04:00
2006-12-10 13:18:48 +03:00
__load_mmu_context ( next ) ;
2005-06-24 09:01:26 +04:00
}
# define deactivate_mm(tsk, mm) do { } while(0)
/*
* Destroy context related info for an mm_struct that is about
* to be put to rest .
*/
2005-09-04 02:57:53 +04:00
static inline void destroy_context ( struct mm_struct * mm )
2005-06-24 09:01:26 +04:00
{
invalidate_page_directory ( ) ;
}
static inline void enter_lazy_tlb ( struct mm_struct * mm , struct task_struct * tsk )
{
/* Nothing to do. */
}
2009-03-04 18:21:31 +03:00
# endif /* CONFIG_MMU */
2005-06-24 09:01:26 +04:00
# endif /* _XTENSA_MMU_CONTEXT_H */