GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / tile / include / arch / icache.h
blob5c87c90163389bc3b6a9a265a4fbc1dea6256cc6
1 /*
2 * Copyright 2010 Tilera Corporation. All Rights Reserved.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation, version 2.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
11 * NON INFRINGEMENT. See the GNU General Public License for
12 * more details.
16 /**
17 * @file
19 * Support for invalidating bytes in the instruction
22 #ifndef __ARCH_ICACHE_H__
23 #define __ARCH_ICACHE_H__
25 #include <arch/chip.h>
28 /**
29 * Invalidate the instruction cache for the given range of memory.
31 * @param addr The start of memory to be invalidated.
32 * @param size The number of bytes to be invalidated.
33 * @param page_size The system's page size, typically the PAGE_SIZE constant
34 * in sys/page.h. This value must be a power of two no larger
35 * than the page containing the code to be invalidated. If the value
36 * is smaller than the actual page size, this function will still
37 * work, but may run slower than necessary.
39 static __inline void
40 invalidate_icache(const void* addr, unsigned long size,
41 unsigned long page_size)
43 const unsigned long cache_way_size =
44 CHIP_L1I_CACHE_SIZE() / CHIP_L1I_ASSOC();
45 unsigned long max_useful_size;
46 const char* start, *end;
47 long num_passes;
49 if (__builtin_expect(size == 0, 0))
50 return;
52 #ifdef __tilegx__
53 /* Limit the number of bytes visited to avoid redundant iterations. */
54 max_useful_size = (page_size < cache_way_size) ? page_size : cache_way_size;
56 /* No PA aliasing is possible, so one pass always suffices. */
57 num_passes = 1;
58 #else
59 /* Limit the number of bytes visited to avoid redundant iterations. */
60 max_useful_size = cache_way_size;
63 * Compute how many passes we need (we'll treat 0 as if it were 1).
64 * This works because we know the page size is a power of two.
66 num_passes = cache_way_size >> __builtin_ctzl(page_size);
67 #endif
69 if (__builtin_expect(size > max_useful_size, 0))
70 size = max_useful_size;
72 /* Locate the first and last bytes to be invalidated. */
73 start = (const char *)((unsigned long)addr & -CHIP_L1I_LINE_SIZE());
74 end = (const char*)addr + size - 1;
76 __insn_mf();
80 const char* p;
82 for (p = start; p <= end; p += CHIP_L1I_LINE_SIZE())
83 __insn_icoh(p);
85 start += page_size;
86 end += page_size;
88 while (--num_passes > 0);
90 __insn_drain();
94 #endif /* __ARCH_ICACHE_H__ */