aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/include/cpu-common
diff options
context:
space:
mode:
authorPaul Mundt <lethal@linux-sh.org>2009-08-21 03:20:57 -0400
committerPaul Mundt <lethal@linux-sh.org>2009-08-21 03:20:57 -0400
commitf9bd71f255b4349c4f9f596863161fd5182f67fa (patch)
tree5ffc0f17408bfe917a10f5297c81e932f9b27f67 /arch/sh/include/cpu-common
parent711e522d70f760969de7bcc97907b467993614dc (diff)
sh: Kill off unused cpu/cacheflush.h.
All CPU-specific overloads are done at runtime now, so this common header can go away and simply be folded back in to asm/ version. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/include/cpu-common')
-rw-r--r--arch/sh/include/cpu-common/cpu/cacheflush.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/arch/sh/include/cpu-common/cpu/cacheflush.h b/arch/sh/include/cpu-common/cpu/cacheflush.h
deleted file mode 100644
index 8189dbd68f8f..000000000000
--- a/arch/sh/include/cpu-common/cpu/cacheflush.h
+++ /dev/null
@@ -1,42 +0,0 @@
1/*
2 * Copyright (C) 2003 Paul Mundt
3 *
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
7 */
8#ifndef __ASM_CPU_SH_CACHEFLUSH_H
9#define __ASM_CPU_SH_CACHEFLUSH_H
10
11/*
12 * Cache flushing:
13 *
14 * - flush_cache_all() flushes entire cache
15 * - flush_cache_mm(mm) flushes the specified mm context's cache lines
16 * - flush_cache_dup mm(mm) handles cache flushing when forking
17 * - flush_cache_page(mm, vmaddr, pfn) flushes a single page
18 * - flush_cache_range(vma, start, end) flushes a range of pages
19 *
20 * - flush_dcache_page(pg) flushes(wback&invalidates) a page for dcache
21 * - flush_icache_range(start, end) flushes(invalidates) a range for icache
22 * - flush_icache_page(vma, pg) flushes(invalidates) a page for icache
23 * - flush_cache_sigtramp(vaddr) flushes the signal trampoline
24 */
25extern void (*flush_cache_all)(void);
26extern void (*flush_cache_mm)(struct mm_struct *mm);
27extern void (*flush_cache_dup_mm)(struct mm_struct *mm);
28extern void (*flush_cache_page)(struct vm_area_struct *vma,
29 unsigned long addr, unsigned long pfn);
30extern void (*flush_cache_range)(struct vm_area_struct *vma,
31 unsigned long start, unsigned long end);
32extern void (*flush_dcache_page)(struct page *page);
33extern void (*flush_icache_range)(unsigned long start, unsigned long end);
34extern void (*flush_icache_page)(struct vm_area_struct *vma,
35 struct page *page);
36extern void (*flush_cache_sigtramp)(unsigned long address);
37
38extern void (*__flush_wback_region)(void *start, int size);
39extern void (*__flush_purge_region)(void *start, int size);
40extern void (*__flush_invalidate_region)(void *start, int size);
41
42#endif /* __ASM_CPU_SH_CACHEFLUSH_H */