2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* arch/sh/mm/tlb-sh4.c
|
|
|
|
*
|
|
|
|
* SH-4 specific TLB operations
|
|
|
|
*
|
|
|
|
* Copyright (C) 1999 Niibe Yutaka
|
|
|
|
* Copyright (C) 2002 Paul Mundt
|
|
|
|
*
|
|
|
|
* Released under the terms of the GNU GPL v2.0.
|
|
|
|
*/
|
2006-12-28 09:31:48 +08:00
|
|
|
#include <linux/io.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <asm/system.h>
|
|
|
|
#include <asm/mmu_context.h>
|
|
|
|
|
2006-12-25 18:28:54 +08:00
|
|
|
void local_flush_tlb_one(unsigned long asid, unsigned long page)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
unsigned long addr, data;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* NOTE: PTEH.ASID should be set to this MM
|
|
|
|
* _AND_ we need to write ASID to the array.
|
|
|
|
*
|
|
|
|
* It would be simple if we didn't need to set PTEH.ASID...
|
|
|
|
*/
|
|
|
|
addr = MMU_UTLB_ADDRESS_ARRAY | MMU_PAGE_ASSOC_BIT;
|
|
|
|
data = page | asid; /* VALID bit is off */
|
|
|
|
jump_to_P2();
|
|
|
|
ctrl_outl(data, addr);
|
|
|
|
back_to_P1();
|
|
|
|
}
|