2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* include/asm-sh/cpu-sh4/cacheflush.h
|
|
|
|
*
|
|
|
|
* Copyright (C) 1999 Niibe Yutaka
|
|
|
|
* Copyright (C) 2003 Paul Mundt
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
#ifndef __ASM_CPU_SH4_CACHEFLUSH_H
|
|
|
|
#define __ASM_CPU_SH4_CACHEFLUSH_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Caches are broken on SH-4 (unless we use write-through
|
|
|
|
* caching; in which case they're only semi-broken),
|
|
|
|
* so we need them.
|
|
|
|
*/
|
2006-09-27 08:13:36 +02:00
|
|
|
void flush_cache_all(void);
|
2007-02-13 03:09:15 +01:00
|
|
|
void flush_dcache_all(void);
|
2006-09-27 08:13:36 +02:00
|
|
|
void flush_cache_mm(struct mm_struct *mm);
|
2006-12-12 18:14:57 +01:00
|
|
|
#define flush_cache_dup_mm(mm) flush_cache_mm(mm)
|
2006-09-27 08:13:36 +02:00
|
|
|
void flush_cache_range(struct vm_area_struct *vma, unsigned long start,
|
|
|
|
unsigned long end);
|
|
|
|
void flush_cache_page(struct vm_area_struct *vma, unsigned long addr,
|
|
|
|
unsigned long pfn);
|
|
|
|
void flush_dcache_page(struct page *pg);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#define flush_dcache_mmap_lock(mapping) do { } while (0)
|
|
|
|
#define flush_dcache_mmap_unlock(mapping) do { } while (0)
|
|
|
|
|
2006-09-27 08:13:36 +02:00
|
|
|
void flush_icache_range(unsigned long start, unsigned long end);
|
|
|
|
void flush_cache_sigtramp(unsigned long addr);
|
|
|
|
void flush_icache_user_range(struct vm_area_struct *vma, struct page *page,
|
|
|
|
unsigned long addr, int len);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#define flush_icache_page(vma,pg) do { } while (0)
|
|
|
|
|
|
|
|
/* Initialization of P3 area for copy_user_page */
|
2006-09-27 08:13:36 +02:00
|
|
|
void p3_cache_init(void);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#endif /* __ASM_CPU_SH4_CACHEFLUSH_H */
|