diff options
author | Paul Mundt <lethal@linux-sh.org> | 2007-11-08 22:56:06 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-01-27 23:18:40 -0500 |
commit | 3b9e78868d000ca10b740c465df9236b04d29718 (patch) | |
tree | b928c3be31a3c9203f9cd04472803f87acf62d96 /include/asm-sh/cpu-sh5 | |
parent | 2f725945822dbc2e481d5e6ab4693e19a0c99972 (diff) |
sh: Add in cacheflush and DMA headers for SH-5.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'include/asm-sh/cpu-sh5')
-rw-r--r-- | include/asm-sh/cpu-sh5/cacheflush.h | 34 | ||||
-rw-r--r-- | include/asm-sh/cpu-sh5/dma.h | 6 |
2 files changed, 40 insertions, 0 deletions
diff --git a/include/asm-sh/cpu-sh5/cacheflush.h b/include/asm-sh/cpu-sh5/cacheflush.h new file mode 100644 index 000000000000..847374b6526f --- /dev/null +++ b/include/asm-sh/cpu-sh5/cacheflush.h | |||
@@ -0,0 +1,34 @@ | |||
1 | #ifndef __ASM_SH64_CACHEFLUSH_H | ||
2 | #define __ASM_SH64_CACHEFLUSH_H | ||
3 | |||
4 | #ifndef __ASSEMBLY__ | ||
5 | |||
6 | #include <asm/page.h> | ||
7 | |||
8 | struct vm_area_struct; | ||
9 | struct page; | ||
10 | struct mm_struct; | ||
11 | |||
12 | extern void flush_cache_all(void); | ||
13 | extern void flush_cache_mm(struct mm_struct *mm); | ||
14 | extern void flush_cache_sigtramp(unsigned long start, unsigned long end); | ||
15 | extern void flush_cache_range(struct vm_area_struct *vma, unsigned long start, | ||
16 | unsigned long end); | ||
17 | extern void flush_cache_page(struct vm_area_struct *vma, unsigned long addr, unsigned long pfn); | ||
18 | extern void flush_dcache_page(struct page *pg); | ||
19 | extern void flush_icache_range(unsigned long start, unsigned long end); | ||
20 | extern void flush_icache_user_range(struct vm_area_struct *vma, | ||
21 | struct page *page, unsigned long addr, | ||
22 | int len); | ||
23 | |||
24 | #define flush_cache_dup_mm(mm) flush_cache_mm(mm) | ||
25 | |||
26 | #define flush_dcache_mmap_lock(mapping) do { } while (0) | ||
27 | #define flush_dcache_mmap_unlock(mapping) do { } while (0) | ||
28 | |||
29 | #define flush_icache_page(vma, page) do { } while (0) | ||
30 | |||
31 | #endif /* __ASSEMBLY__ */ | ||
32 | |||
33 | #endif /* __ASM_SH64_CACHEFLUSH_H */ | ||
34 | |||
diff --git a/include/asm-sh/cpu-sh5/dma.h b/include/asm-sh/cpu-sh5/dma.h new file mode 100644 index 000000000000..7bf6bb3d35ed --- /dev/null +++ b/include/asm-sh/cpu-sh5/dma.h | |||
@@ -0,0 +1,6 @@ | |||
1 | #ifndef __ASM_SH_CPU_SH5_DMA_H | ||
2 | #define __ASM_SH_CPU_SH5_DMA_H | ||
3 | |||
4 | /* Nothing yet */ | ||
5 | |||
6 | #endif /* __ASM_SH_CPU_SH5_DMA_H */ | ||