tlb-sh3.c 876 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10
/*
 * arch/sh/mm/tlb-sh3.c
 *
 * SH-3 specific TLB operations
 *
 * Copyright (C) 1999  Niibe Yutaka
 * Copyright (C) 2002  Paul Mundt
 *
 * Released under the terms of the GNU GPL v2.0.
 */
11
#include <linux/io.h>
L
Linus Torvalds 已提交
12 13 14
#include <asm/system.h>
#include <asm/mmu_context.h>

15
void local_flush_tlb_one(unsigned long asid, unsigned long page)
L
Linus Torvalds 已提交
16 17 18 19 20 21 22 23 24 25 26 27
{
	unsigned long addr, data;
	int i, ways = MMU_NTLB_WAYS;

	/*
	 * 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_TLB_ADDRESS_ARRAY | (page & 0x1F000);
	data = (page & 0xfffe0000) | asid; /* VALID bit is off */
28

29
	if ((current_cpu_data.flags & CPU_HAS_MMU_PAGE_ASSOC)) {
L
Linus Torvalds 已提交
30 31 32 33 34 35 36
		addr |= MMU_PAGE_ASSOC_BIT;
		ways = 1;	/* we already know the way .. */
	}

	for (i = 0; i < ways; i++)
		ctrl_outl(data, addr + (i << 8));
}