aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-ia64/cacheflush.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /include/asm-ia64/cacheflush.h
Linux-2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'include/asm-ia64/cacheflush.h')
-rw-r--r--include/asm-ia64/cacheflush.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/include/asm-ia64/cacheflush.h b/include/asm-ia64/cacheflush.h
new file mode 100644
index 00000000000..f2dacb4245e
--- /dev/null
+++ b/include/asm-ia64/cacheflush.h
@@ -0,0 +1,50 @@
1#ifndef _ASM_IA64_CACHEFLUSH_H
2#define _ASM_IA64_CACHEFLUSH_H
3
4/*
5 * Copyright (C) 2002 Hewlett-Packard Co
6 * David Mosberger-Tang <davidm@hpl.hp.com>
7 */
8
9#include <linux/page-flags.h>
10
11#include <asm/bitops.h>
12#include <asm/page.h>
13
14/*
15 * Cache flushing routines. This is the kind of stuff that can be very expensive, so try
16 * to avoid them whenever possible.
17 */
18
19#define flush_cache_all() do { } while (0)
20#define flush_cache_mm(mm) do { } while (0)
21#define flush_cache_range(vma, start, end) do { } while (0)
22#define flush_cache_page(vma, vmaddr, pfn) do { } while (0)
23#define flush_icache_page(vma,page) do { } while (0)
24#define flush_cache_vmap(start, end) do { } while (0)
25#define flush_cache_vunmap(start, end) do { } while (0)
26
27#define flush_dcache_page(page) \
28do { \
29 clear_bit(PG_arch_1, &(page)->flags); \
30} while (0)
31
32#define flush_dcache_mmap_lock(mapping) do { } while (0)
33#define flush_dcache_mmap_unlock(mapping) do { } while (0)
34
35extern void flush_icache_range (unsigned long start, unsigned long end);
36
37#define flush_icache_user_range(vma, page, user_addr, len) \
38do { \
39 unsigned long _addr = (unsigned long) page_address(page) + ((user_addr) & ~PAGE_MASK); \
40 flush_icache_range(_addr, _addr + (len)); \
41} while (0)
42
43#define copy_to_user_page(vma, page, vaddr, dst, src, len) \
44do { memcpy(dst, src, len); \
45 flush_icache_user_range(vma, page, vaddr, len); \
46} while (0)
47#define copy_from_user_page(vma, page, vaddr, dst, src, len) \
48 memcpy(dst, src, len)
49
50#endif /* _ASM_IA64_CACHEFLUSH_H */