blob: 5c17dee53b5dca8fa3fe0e0520958c18a4ac8be8 [file] [log] [blame]
Bryan Wu1394f032007-05-06 14:50:22 -07001/*
2 * File: include/asm-blackfin/cacheflush.h
3 * Based on: include/asm-m68knommu/cacheflush.h
4 * Author: LG Soft India
5 * Copyright (C) 2004 Analog Devices Inc.
6 * Created: Tue Sep 21 2004
7 * Description: Blackfin low-level cache routines adapted from the i386
8 * and PPC versions by Greg Ungerer (gerg@snapgear.com)
9 *
10 * Modified:
11 *
12 * Bugs: Enter bugs at http://blackfin.uclinux.org/
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2, or (at your option)
17 * any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; see the file COPYING.
26 * If not, write to the Free Software Foundation,
27 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
28 */
29
30#ifndef _BLACKFIN_CACHEFLUSH_H
31#define _BLACKFIN_CACHEFLUSH_H
32
Mike Frysinger5d891372009-04-10 20:52:08 +000033#include <asm/blackfin.h> /* for SSYNC() */
34
Mike Frysinger8fb4f8f2008-10-16 23:39:12 +080035extern void blackfin_icache_flush_range(unsigned long start_address, unsigned long end_address);
36extern void blackfin_dcache_flush_range(unsigned long start_address, unsigned long end_address);
37extern void blackfin_dcache_invalidate_range(unsigned long start_address, unsigned long end_address);
38extern void blackfin_dflush_page(void *page);
Graf Yang6b3087c2009-01-07 23:14:39 +080039extern void blackfin_invalidate_entire_dcache(void);
Sonic Zhang47e9ded2009-06-10 08:57:08 +000040extern void blackfin_invalidate_entire_icache(void);
Bryan Wu1394f032007-05-06 14:50:22 -070041
42#define flush_dcache_mmap_lock(mapping) do { } while (0)
43#define flush_dcache_mmap_unlock(mapping) do { } while (0)
44#define flush_cache_mm(mm) do { } while (0)
45#define flush_cache_range(vma, start, end) do { } while (0)
46#define flush_cache_page(vma, vmaddr) do { } while (0)
47#define flush_cache_vmap(start, end) do { } while (0)
48#define flush_cache_vunmap(start, end) do { } while (0)
49
Graf Yang6b3087c2009-01-07 23:14:39 +080050#ifdef CONFIG_SMP
51#define flush_icache_range_others(start, end) \
52 smp_icache_flush_range_others((start), (end))
53#else
54#define flush_icache_range_others(start, end) do { } while (0)
55#endif
56
Bryan Wu1394f032007-05-06 14:50:22 -070057static inline void flush_icache_range(unsigned start, unsigned end)
58{
Mike Frysinger5d891372009-04-10 20:52:08 +000059#if defined(CONFIG_BFIN_WB)
60 blackfin_dcache_flush_range(start, end);
61#endif
Bryan Wu1394f032007-05-06 14:50:22 -070062
Mike Frysinger5d891372009-04-10 20:52:08 +000063 /* Make sure all write buffers in the data side of the core
64 * are flushed before trying to invalidate the icache. This
65 * needs to be after the data flush and before the icache
66 * flush so that the SSYNC does the right thing in preventing
67 * the instruction prefetcher from hitting things in cached
68 * memory at the wrong time -- it runs much further ahead than
69 * the pipeline.
70 */
71 SSYNC();
72#if defined(CONFIG_BFIN_ICACHE)
73 blackfin_icache_flush_range(start, end);
Graf Yang6b3087c2009-01-07 23:14:39 +080074 flush_icache_range_others(start, end);
Bryan Wu1394f032007-05-06 14:50:22 -070075#endif
76}
77
Graf Yang6b3087c2009-01-07 23:14:39 +080078#define copy_to_user_page(vma, page, vaddr, dst, src, len) \
79do { memcpy(dst, src, len); \
80 flush_icache_range((unsigned) (dst), (unsigned) (dst) + (len)); \
Bryan Wu1394f032007-05-06 14:50:22 -070081} while (0)
Graf Yang6b3087c2009-01-07 23:14:39 +080082
Bryan Wu1394f032007-05-06 14:50:22 -070083#define copy_from_user_page(vma, page, vaddr, dst, src, len) memcpy(dst, src, len)
84
Robin Getz3bebca22007-10-10 23:55:26 +080085#if defined(CONFIG_BFIN_DCACHE)
Bryan Wu1394f032007-05-06 14:50:22 -070086# define invalidate_dcache_range(start,end) blackfin_dcache_invalidate_range((start), (end))
87#else
88# define invalidate_dcache_range(start,end) do { } while (0)
89#endif
Robin Getz3bebca22007-10-10 23:55:26 +080090#if defined(CONFIG_BFIN_DCACHE) && defined(CONFIG_BFIN_WB)
Bryan Wu1394f032007-05-06 14:50:22 -070091# define flush_dcache_range(start,end) blackfin_dcache_flush_range((start), (end))
92# define flush_dcache_page(page) blackfin_dflush_page(page_address(page))
93#else
94# define flush_dcache_range(start,end) do { } while (0)
Graf Yang6b3087c2009-01-07 23:14:39 +080095# define flush_dcache_page(page) do { } while (0)
Bryan Wu1394f032007-05-06 14:50:22 -070096#endif
97
Mike Frysinger04be80e2008-10-16 23:33:53 +080098extern unsigned long reserved_mem_dcache_on;
99extern unsigned long reserved_mem_icache_on;
100
Jie Zhang67834fa2009-06-10 06:26:26 +0000101static inline int bfin_addr_dcacheable(unsigned long addr)
Mike Frysinger04be80e2008-10-16 23:33:53 +0800102{
103#ifdef CONFIG_BFIN_DCACHE
104 if (addr < (_ramend - DMA_UNCACHED_REGION))
105 return 1;
106#endif
107
108 if (reserved_mem_dcache_on &&
109 addr >= _ramend && addr < physical_mem_end)
110 return 1;
111
Mike Frysingerf339f462009-05-19 12:58:13 +0000112#ifndef CONFIG_BFIN_L2_NOT_CACHED
113 if (addr >= L2_START && addr < L2_START + L2_LENGTH)
114 return 1;
115#endif
116
Mike Frysinger04be80e2008-10-16 23:33:53 +0800117 return 0;
118}
119
Robin Getz3bebca22007-10-10 23:55:26 +0800120#endif /* _BLACKFIN_ICACHEFLUSH_H */