2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* arch/sh/mm/tlb-nommu.c
|
|
|
|
*
|
|
|
|
* TLB Operations for MMUless SH.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 Paul Mundt
|
|
|
|
*
|
|
|
|
* Released under the terms of the GNU GPL v2.0.
|
|
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/mm.h>
|
2007-12-17 01:52:11 +00:00
|
|
|
#include <asm/pgtable.h>
|
2008-09-04 09:53:58 +00:00
|
|
|
#include <asm/tlbflush.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Nothing too terribly exciting here ..
|
|
|
|
*/
|
2006-12-25 10:28:54 +00:00
|
|
|
void local_flush_tlb_all(void)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
BUG();
|
|
|
|
}
|
|
|
|
|
2006-12-25 10:28:54 +00:00
|
|
|
void local_flush_tlb_mm(struct mm_struct *mm)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
BUG();
|
|
|
|
}
|
|
|
|
|
2006-12-25 10:28:54 +00:00
|
|
|
void local_flush_tlb_range(struct vm_area_struct *vma, unsigned long start,
|
2005-04-16 22:20:36 +00:00
|
|
|
unsigned long end)
|
|
|
|
{
|
|
|
|
BUG();
|
|
|
|
}
|
|
|
|
|
2006-12-25 10:28:54 +00:00
|
|
|
void local_flush_tlb_page(struct vm_area_struct *vma, unsigned long page)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
BUG();
|
|
|
|
}
|
|
|
|
|
2006-12-25 10:28:54 +00:00
|
|
|
void local_flush_tlb_one(unsigned long asid, unsigned long page)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
BUG();
|
|
|
|
}
|
|
|
|
|
2006-12-25 10:28:54 +00:00
|
|
|
void local_flush_tlb_kernel_range(unsigned long start, unsigned long end)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
BUG();
|
|
|
|
}
|
|
|
|
|
|
|
|
void update_mmu_cache(struct vm_area_struct * vma,
|
|
|
|
unsigned long address, pte_t pte)
|
|
|
|
{
|
|
|
|
BUG();
|
|
|
|
}
|
2007-12-17 01:52:11 +00:00
|
|
|
|
|
|
|
void __init page_table_range_init(unsigned long start, unsigned long end,
|
|
|
|
pgd_t *pgd_base)
|
|
|
|
{
|
|
|
|
}
|
2007-12-18 00:43:35 +00:00
|
|
|
|
|
|
|
void __set_fixmap(enum fixed_addresses idx, unsigned long phys, pgprot_t prot)
|
|
|
|
{
|
|
|
|
}
|