2 * linux/arch/arm/mm/minicache.c
4 * Copyright (C) 2001 Russell King
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * This handles the mini data cache, as found on SA11x0 and XScale
11 * processors. When we copy a user page page, we map it in such a way
12 * that accesses to this page will not touch the main data cache, but
13 * will be cached in the mini data cache. This prevents us thrashing
14 * the main data cache on page faults.
16 #include <linux/init.h>
20 #include <asm/pgtable.h>
21 #include <asm/tlbflush.h>
24 * 0xffff8000 to 0xffffffff is reserved for any ARM architecture
25 * specific hacks for copying pages efficiently.
27 #define minicache_address (0xffff8000)
28 #define minicache_pgprot __pgprot(L_PTE_PRESENT | L_PTE_YOUNG | \
31 static pte_t
*minicache_pte
;
34 * Note that this is intended to be called only from the copy_user_page
35 * asm code; anything else will require special locking to prevent the
36 * mini-cache space being re-used. (Note: probably preempt unsafe).
38 * We rely on the fact that the minicache is 2K, and we'll be pushing
39 * 4K of data through it, so we don't actually have to specifically
40 * flush the minicache when we change the mapping.
42 * Note also: assert(PAGE_OFFSET <= virt < high_memory).
43 * Unsafe: preempt, kmap.
45 unsigned long map_page_minicache(unsigned long virt
)
47 set_pte(minicache_pte
, pfn_pte(__pa(virt
) >> PAGE_SHIFT
, minicache_pgprot
));
48 flush_tlb_kernel_page(minicache_address
);
50 return minicache_address
;
53 static int __init
minicache_init(void)
58 spin_lock(&init_mm
.page_table_lock
);
60 pgd
= pgd_offset_k(minicache_address
);
61 pmd
= pmd_alloc(&init_mm
, pgd
, minicache_address
);
64 minicache_pte
= pte_alloc_kernel(&init_mm
, pmd
, minicache_address
);
68 spin_unlock(&init_mm
.page_table_lock
);
73 core_initcall(minicache_init
);