OpenCores
URL https://opencores.org/ocsvn/or1k_soc_on_altera_embedded_dev_kit/or1k_soc_on_altera_embedded_dev_kit/trunk

Subversion Repositories or1k_soc_on_altera_embedded_dev_kit

[/] [or1k_soc_on_altera_embedded_dev_kit/] [trunk/] [linux-2.6/] [linux-2.6.24/] [arch/] [arm/] [mm/] [cache-v4wb.S] - Blame information for rev 3

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 3 xianfeng
/*
2
 *  linux/arch/arm/mm/cache-v4wb.S
3
 *
4
 *  Copyright (C) 1997-2002 Russell king
5
 *
6
 * This program is free software; you can redistribute it and/or modify
7
 * it under the terms of the GNU General Public License version 2 as
8
 * published by the Free Software Foundation.
9
 */
10
#include 
11
#include 
12
#include 
13
#include 
14
#include "proc-macros.S"
15
 
16
/*
17
 * The size of one data cache line.
18
 */
19
#define CACHE_DLINESIZE 32
20
 
21
/*
22
 * The total size of the data cache.
23
 */
24
#if defined(CONFIG_CPU_SA110)
25
# define CACHE_DSIZE    16384
26
#elif defined(CONFIG_CPU_SA1100)
27
# define CACHE_DSIZE    8192
28
#else
29
# error Unknown cache size
30
#endif
31
 
32
/*
33
 * This is the size at which it becomes more efficient to
34
 * clean the whole cache, rather than using the individual
35
 * cache line maintainence instructions.
36
 *
37
 *  Size  Clean (ticks) Dirty (ticks)
38
 *   4096   21  20  21    53  55  54
39
 *   8192   40  41  40   106 100 102
40
 *  16384   77  77  76   140 140 138
41
 *  32768  150 149 150   214 216 212 <---
42
 *  65536  296 297 296   351 358 361
43
 * 131072  591 591 591   656 657 651
44
 *  Whole  132 136 132   221 217 207 <---
45
 */
46
#define CACHE_DLIMIT    (CACHE_DSIZE * 4)
47
 
48
        .data
49
flush_base:
50
        .long   FLUSH_BASE
51
        .text
52
 
53
/*
54
 *      flush_user_cache_all()
55
 *
56
 *      Clean and invalidate all cache entries in a particular address
57
 *      space.
58
 */
59
ENTRY(v4wb_flush_user_cache_all)
60
        /* FALLTHROUGH */
61
/*
62
 *      flush_kern_cache_all()
63
 *
64
 *      Clean and invalidate the entire cache.
65
 */
66
ENTRY(v4wb_flush_kern_cache_all)
67
        mov     ip, #0
68
        mcr     p15, 0, ip, c7, c5, 0           @ invalidate I cache
69
__flush_whole_cache:
70
        ldr     r3, =flush_base
71
        ldr     r1, [r3, #0]
72
        eor     r1, r1, #CACHE_DSIZE
73
        str     r1, [r3, #0]
74
        add     r2, r1, #CACHE_DSIZE
75
1:      ldr     r3, [r1], #32
76
        cmp     r1, r2
77
        blo     1b
78
#ifdef FLUSH_BASE_MINICACHE
79
        add     r2, r2, #FLUSH_BASE_MINICACHE - FLUSH_BASE
80
        sub     r1, r2, #512                    @ only 512 bytes
81
1:      ldr     r3, [r1], #32
82
        cmp     r1, r2
83
        blo     1b
84
#endif
85
        mcr     p15, 0, ip, c7, c10, 4          @ drain write buffer
86
        mov     pc, lr
87
 
88
/*
89
 *      flush_user_cache_range(start, end, flags)
90
 *
91
 *      Invalidate a range of cache entries in the specified
92
 *      address space.
93
 *
94
 *      - start - start address (inclusive, page aligned)
95
 *      - end   - end address (exclusive, page aligned)
96
 *      - flags - vma_area_struct flags describing address space
97
 */
98
ENTRY(v4wb_flush_user_cache_range)
99
        mov     ip, #0
100
        sub     r3, r1, r0                      @ calculate total size
101
        tst     r2, #VM_EXEC                    @ executable region?
102
        mcrne   p15, 0, ip, c7, c5, 0           @ invalidate I cache
103
 
104
        cmp     r3, #CACHE_DLIMIT               @ total size >= limit?
105
        bhs     __flush_whole_cache             @ flush whole D cache
106
 
107
1:      mcr     p15, 0, r0, c7, c10, 1          @ clean D entry
108
        mcr     p15, 0, r0, c7, c6, 1           @ invalidate D entry
109
        add     r0, r0, #CACHE_DLINESIZE
110
        cmp     r0, r1
111
        blo     1b
112
        tst     r2, #VM_EXEC
113
        mcrne   p15, 0, ip, c7, c10, 4          @ drain write buffer
114
        mov     pc, lr
115
 
116
/*
117
 *      flush_kern_dcache_page(void *page)
118
 *
119
 *      Ensure no D cache aliasing occurs, either with itself or
120
 *      the I cache
121
 *
122
 *      - addr  - page aligned address
123
 */
124
ENTRY(v4wb_flush_kern_dcache_page)
125
        add     r1, r0, #PAGE_SZ
126
        /* fall through */
127
 
128
/*
129
 *      coherent_kern_range(start, end)
130
 *
131
 *      Ensure coherency between the Icache and the Dcache in the
132
 *      region described by start.  If you have non-snooping
133
 *      Harvard caches, you need to implement this function.
134
 *
135
 *      - start  - virtual start address
136
 *      - end    - virtual end address
137
 */
138
ENTRY(v4wb_coherent_kern_range)
139
        /* fall through */
140
 
141
/*
142
 *      coherent_user_range(start, end)
143
 *
144
 *      Ensure coherency between the Icache and the Dcache in the
145
 *      region described by start.  If you have non-snooping
146
 *      Harvard caches, you need to implement this function.
147
 *
148
 *      - start  - virtual start address
149
 *      - end    - virtual end address
150
 */
151
ENTRY(v4wb_coherent_user_range)
152
        bic     r0, r0, #CACHE_DLINESIZE - 1
153
1:      mcr     p15, 0, r0, c7, c10, 1          @ clean D entry
154
        mcr     p15, 0, r0, c7, c6, 1           @ invalidate D entry
155
        add     r0, r0, #CACHE_DLINESIZE
156
        cmp     r0, r1
157
        blo     1b
158
        mov     ip, #0
159
        mcr     p15, 0, ip, c7, c5, 0           @ invalidate I cache
160
        mcr     p15, 0, ip, c7, c10, 4          @ drain WB
161
        mov     pc, lr
162
 
163
 
164
/*
165
 *      dma_inv_range(start, end)
166
 *
167
 *      Invalidate (discard) the specified virtual address range.
168
 *      May not write back any entries.  If 'start' or 'end'
169
 *      are not cache line aligned, those lines must be written
170
 *      back.
171
 *
172
 *      - start  - virtual start address
173
 *      - end    - virtual end address
174
 */
175
ENTRY(v4wb_dma_inv_range)
176
        tst     r0, #CACHE_DLINESIZE - 1
177
        bic     r0, r0, #CACHE_DLINESIZE - 1
178
        mcrne   p15, 0, r0, c7, c10, 1          @ clean D entry
179
        tst     r1, #CACHE_DLINESIZE - 1
180
        mcrne   p15, 0, r1, c7, c10, 1          @ clean D entry
181
1:      mcr     p15, 0, r0, c7, c6, 1           @ invalidate D entry
182
        add     r0, r0, #CACHE_DLINESIZE
183
        cmp     r0, r1
184
        blo     1b
185
        mcr     p15, 0, r0, c7, c10, 4          @ drain write buffer
186
        mov     pc, lr
187
 
188
/*
189
 *      dma_clean_range(start, end)
190
 *
191
 *      Clean (write back) the specified virtual address range.
192
 *
193
 *      - start  - virtual start address
194
 *      - end    - virtual end address
195
 */
196
ENTRY(v4wb_dma_clean_range)
197
        bic     r0, r0, #CACHE_DLINESIZE - 1
198
1:      mcr     p15, 0, r0, c7, c10, 1          @ clean D entry
199
        add     r0, r0, #CACHE_DLINESIZE
200
        cmp     r0, r1
201
        blo     1b
202
        mcr     p15, 0, r0, c7, c10, 4          @ drain write buffer
203
        mov     pc, lr
204
 
205
/*
206
 *      dma_flush_range(start, end)
207
 *
208
 *      Clean and invalidate the specified virtual address range.
209
 *
210
 *      - start  - virtual start address
211
 *      - end    - virtual end address
212
 *
213
 *      This is actually the same as v4wb_coherent_kern_range()
214
 */
215
        .globl  v4wb_dma_flush_range
216
        .set    v4wb_dma_flush_range, v4wb_coherent_kern_range
217
 
218
        __INITDATA
219
 
220
        .type   v4wb_cache_fns, #object
221
ENTRY(v4wb_cache_fns)
222
        .long   v4wb_flush_kern_cache_all
223
        .long   v4wb_flush_user_cache_all
224
        .long   v4wb_flush_user_cache_range
225
        .long   v4wb_coherent_kern_range
226
        .long   v4wb_coherent_user_range
227
        .long   v4wb_flush_kern_dcache_page
228
        .long   v4wb_dma_inv_range
229
        .long   v4wb_dma_clean_range
230
        .long   v4wb_dma_flush_range
231
        .size   v4wb_cache_fns, . - v4wb_cache_fns

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.