cacheflush.h 3.5 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * 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) 1994, 95, 96, 97, 98, 99, 2000, 01, 02, 03 by Ralf Baechle
 * Copyright (C) 1999, 2000, 2001 Silicon Graphics, Inc.
 */
#ifndef _ASM_CACHEFLUSH_H
#define _ASM_CACHEFLUSH_H

/* Keep includes the same across arches.  */
#include <linux/mm.h>
#include <asm/cpu-features.h>

/* Cache flushing:
 *
 *  - flush_cache_all() flushes entire cache
 *  - flush_cache_mm(mm) flushes the specified mm context's cache lines
20
 *  - flush_cache_dup mm(mm) handles cache flushing when forking
L
Linus Torvalds 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33 34
 *  - flush_cache_page(mm, vmaddr, pfn) flushes a single page
 *  - flush_cache_range(vma, start, end) flushes a range of pages
 *  - flush_icache_range(start, end) flush a range of instructions
 *  - flush_dcache_page(pg) flushes(wback&invalidates) a page for dcache
 *
 * MIPS specific flush operations:
 *
 *  - flush_cache_sigtramp() flush signal trampoline
 *  - flush_icache_all() flush the entire instruction cache
 *  - flush_data_cache_page() flushes a page from the data cache
 */
extern void (*flush_cache_all)(void);
extern void (*__flush_cache_all)(void);
extern void (*flush_cache_mm)(struct mm_struct *mm);
35
#define flush_cache_dup_mm(mm)	do { (void) (mm); } while (0)
L
Linus Torvalds 已提交
36 37 38 39 40 41 42
extern void (*flush_cache_range)(struct vm_area_struct *vma,
	unsigned long start, unsigned long end);
extern void (*flush_cache_page)(struct vm_area_struct *vma, unsigned long page, unsigned long pfn);
extern void __flush_dcache_page(struct page *page);

static inline void flush_dcache_page(struct page *page)
{
43
	if (cpu_has_dc_aliases || !cpu_has_ic_fills_f_dc)
L
Linus Torvalds 已提交
44 45 46 47 48 49 50
		__flush_dcache_page(page);

}

#define flush_dcache_mmap_lock(mapping)		do { } while (0)
#define flush_dcache_mmap_unlock(mapping)	do { } while (0)

51 52 53 54 55 56 57 58 59
#define ARCH_HAS_FLUSH_ANON_PAGE
extern void __flush_anon_page(struct page *, unsigned long);
static inline void flush_anon_page(struct vm_area_struct *vma,
	struct page *page, unsigned long vmaddr)
{
	if (cpu_has_dc_aliases && PageAnon(page))
		__flush_anon_page(page, vmaddr);
}

60 61 62 63 64
static inline void flush_icache_page(struct vm_area_struct *vma,
	struct page *page)
{
}

65
extern void (*flush_icache_range)(unsigned long start, unsigned long end);
L
Linus Torvalds 已提交
66 67 68
#define flush_cache_vmap(start, end)		flush_cache_all()
#define flush_cache_vunmap(start, end)		flush_cache_all()

69
extern void copy_to_user_page(struct vm_area_struct *vma,
R
Ralf Baechle 已提交
70
	struct page *page, unsigned long vaddr, void *dst, const void *src,
71
	unsigned long len);
R
Ralf Baechle 已提交
72

73
extern void copy_from_user_page(struct vm_area_struct *vma,
R
Ralf Baechle 已提交
74
	struct page *page, unsigned long vaddr, void *dst, const void *src,
75
	unsigned long len);
L
Linus Torvalds 已提交
76 77 78

extern void (*flush_cache_sigtramp)(unsigned long addr);
extern void (*flush_icache_all)(void);
79
extern void (*local_flush_data_cache_page)(void * addr);
L
Linus Torvalds 已提交
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
extern void (*flush_data_cache_page)(unsigned long addr);

/*
 * This flag is used to indicate that the page pointed to by a pte
 * is dirty and requires cleaning before returning it to the user.
 */
#define PG_dcache_dirty			PG_arch_1

#define Page_dcache_dirty(page)		\
	test_bit(PG_dcache_dirty, &(page)->flags)
#define SetPageDcacheDirty(page)	\
	set_bit(PG_dcache_dirty, &(page)->flags)
#define ClearPageDcacheDirty(page)	\
	clear_bit(PG_dcache_dirty, &(page)->flags)

95
/* Run kernel code uncached, useful for cache probing functions. */
96
unsigned long run_uncached(void *func);
97

98
extern void *kmap_coherent(struct page *page, unsigned long addr);
99
extern void kunmap_coherent(void);
100

L
Linus Torvalds 已提交
101
#endif /* _ASM_CACHEFLUSH_H */