blob: 89f195656be74e8888e2c9d28389034408511775 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _M68KNOMMU_CACHEFLUSH_H
2#define _M68KNOMMU_CACHEFLUSH_H
3
4/*
Greg Ungerer962d69e2005-09-13 11:14:08 +10005 * (C) Copyright 2000-2004, Greg Ungerer <gerg@snapgear.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7#include <linux/mm.h>
8
9#define flush_cache_all() __flush_cache_all()
10#define flush_cache_mm(mm) do { } while (0)
Ralf Baechleec8c0442006-12-12 17:14:57 +000011#define flush_cache_dup_mm(mm) do { } while (0)
Greg Ungerer962d69e2005-09-13 11:14:08 +100012#define flush_cache_range(vma, start, end) __flush_cache_all()
13#define flush_cache_page(vma, vmaddr) do { } while (0)
14#define flush_dcache_range(start,len) __flush_cache_all()
Ilya Loginov2d4dc892009-11-26 09:16:19 +010015#define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#define flush_dcache_page(page) do { } while (0)
17#define flush_dcache_mmap_lock(mapping) do { } while (0)
18#define flush_dcache_mmap_unlock(mapping) do { } while (0)
19#define flush_icache_range(start,len) __flush_cache_all()
20#define flush_icache_page(vma,pg) do { } while (0)
21#define flush_icache_user_range(vma,pg,adr,len) do { } while (0)
Greg Ungerer962d69e2005-09-13 11:14:08 +100022#define flush_cache_vmap(start, end) do { } while (0)
23#define flush_cache_vunmap(start, end) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#define copy_to_user_page(vma, page, vaddr, dst, src, len) \
26 memcpy(dst, src, len)
27#define copy_from_user_page(vma, page, vaddr, dst, src, len) \
28 memcpy(dst, src, len)
29
Greg Ungerer3dead1a2005-11-07 14:09:50 +100030static inline void __flush_cache_all(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070031{
32#ifdef CONFIG_M5407
33 /*
34 * Use cpushl to push and invalidate all cache lines.
35 * Gas doesn't seem to know how to generate the ColdFire
36 * cpushl instruction... Oh well, bit stuff it for now.
37 */
38 __asm__ __volatile__ (
39 "nop\n\t"
40 "clrl %%d0\n\t"
41 "1:\n\t"
42 "movel %%d0,%%a0\n\t"
43 "2:\n\t"
44 ".word 0xf468\n\t"
45 "addl #0x10,%%a0\n\t"
46 "cmpl #0x00000800,%%a0\n\t"
47 "blt 2b\n\t"
48 "addql #1,%%d0\n\t"
49 "cmpil #4,%%d0\n\t"
50 "bne 1b\n\t"
51 "movel #0xb6088500,%%d0\n\t"
52 "movec %%d0,%%CACR\n\t"
53 : : : "d0", "a0" );
54#endif /* CONFIG_M5407 */
Greg Ungerera1a9bcb2009-01-13 10:17:30 +100055#if defined(CONFIG_M523x) || defined(CONFIG_M527x)
56 __asm__ __volatile__ (
57 "movel #0x81400100, %%d0\n\t"
58 "movec %%d0, %%CACR\n\t"
59 "nop\n\t"
60 : : : "d0" );
61#endif /* CONFIG_M523x || CONFIG_M527x */
62#if defined(CONFIG_M528x)
Greg Ungerer962d69e2005-09-13 11:14:08 +100063 __asm__ __volatile__ (
Greg Ungererb7dcf7f2008-02-01 17:38:24 +100064 "movel #0x81000200, %%d0\n\t"
Greg Ungerer2cd9cdc2008-02-14 19:31:27 -080065 "movec %%d0, %%CACR\n\t"
Greg Ungerer962d69e2005-09-13 11:14:08 +100066 "nop\n\t"
67 : : : "d0" );
Greg Ungerera1a9bcb2009-01-13 10:17:30 +100068#endif /* CONFIG_M528x */
Greg Ungerer1b1a9bd2006-06-26 11:40:44 +100069#if defined(CONFIG_M5206) || defined(CONFIG_M5206e) || defined(CONFIG_M5272)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 __asm__ __volatile__ (
Greg Ungerer2cd9cdc2008-02-14 19:31:27 -080071 "movel #0x81000100, %%d0\n\t"
72 "movec %%d0, %%CACR\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 "nop\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 : : : "d0" );
Greg Ungerer1b1a9bd2006-06-26 11:40:44 +100075#endif /* CONFIG_M5206 || CONFIG_M5206e || CONFIG_M5272 */
Greg Ungerer3dead1a2005-11-07 14:09:50 +100076#ifdef CONFIG_M5249
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 __asm__ __volatile__ (
Greg Ungerer2cd9cdc2008-02-14 19:31:27 -080078 "movel #0xa1000200, %%d0\n\t"
79 "movec %%d0, %%CACR\n\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 "nop\n\t"
81 : : : "d0" );
82#endif /* CONFIG_M5249 */
Greg Ungerer1b1a9bd2006-06-26 11:40:44 +100083#ifdef CONFIG_M532x
84 __asm__ __volatile__ (
Greg Ungerer2cd9cdc2008-02-14 19:31:27 -080085 "movel #0x81000200, %%d0\n\t"
86 "movec %%d0, %%CACR\n\t"
Greg Ungerer1b1a9bd2006-06-26 11:40:44 +100087 "nop\n\t"
88 : : : "d0" );
89#endif /* CONFIG_M532x */
Linus Torvalds1da177e2005-04-16 15:20:36 -070090}
91
92#endif /* _M68KNOMMU_CACHEFLUSH_H */