blob: b01a10f312259e9f3e8bef29041a4d47c0f29b04 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * include/asm-sh/cpu-sh4/cacheflush.h
3 *
4 * Copyright (C) 1999 Niibe Yutaka
5 * Copyright (C) 2003 Paul Mundt
6 *
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License. See the file "COPYING" in the main directory of this archive
9 * for more details.
10 */
11#ifndef __ASM_CPU_SH4_CACHEFLUSH_H
12#define __ASM_CPU_SH4_CACHEFLUSH_H
13
14/*
15 * Caches are broken on SH-4 (unless we use write-through
16 * caching; in which case they're only semi-broken),
17 * so we need them.
18 */
Paul Mundt26ff6c12006-09-27 15:13:36 +090019void flush_cache_all(void);
20void flush_cache_mm(struct mm_struct *mm);
Ralf Baechleec8c0442006-12-12 17:14:57 +000021#define flush_cache_dup_mm(mm) flush_cache_mm(mm)
Paul Mundt26ff6c12006-09-27 15:13:36 +090022void flush_cache_range(struct vm_area_struct *vma, unsigned long start,
23 unsigned long end);
24void flush_cache_page(struct vm_area_struct *vma, unsigned long addr,
25 unsigned long pfn);
26void flush_dcache_page(struct page *pg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28#define flush_dcache_mmap_lock(mapping) do { } while (0)
29#define flush_dcache_mmap_unlock(mapping) do { } while (0)
30
Paul Mundt26ff6c12006-09-27 15:13:36 +090031void flush_icache_range(unsigned long start, unsigned long end);
32void flush_cache_sigtramp(unsigned long addr);
33void flush_icache_user_range(struct vm_area_struct *vma, struct page *page,
34 unsigned long addr, int len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36#define flush_icache_page(vma,pg) do { } while (0)
37
38/* Initialization of P3 area for copy_user_page */
Paul Mundt26ff6c12006-09-27 15:13:36 +090039void p3_cache_init(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#define PG_mapped PG_arch_1
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#ifdef CONFIG_MMU
44extern int remap_area_pages(unsigned long addr, unsigned long phys_addr,
45 unsigned long size, unsigned long flags);
46#else /* CONFIG_MMU */
47static inline int remap_area_pages(unsigned long addr, unsigned long phys_addr,
48 unsigned long size, unsigned long flags)
49{
50 return 0;
51}
52#endif /* CONFIG_MMU */
53#endif /* __ASM_CPU_SH4_CACHEFLUSH_H */