1 #ifndef _PARISC_CACHEFLUSH_H
2 #define _PARISC_CACHEFLUSH_H
4 #include <linux/config.h>
6 #include <asm/cache.h> /* for flush_user_dcache_range_asm() proto */
8 /* The usual comment is "Caches aren't brain-dead on the <architecture>".
9 * Unfortunately, that doesn't apply to PA-RISC. */
11 /* Cache flush operations */
14 #define flush_cache_mm(mm) flush_cache_all()
16 #define flush_cache_mm(mm) flush_cache_all_local()
19 #define flush_kernel_dcache_range(start,size) \
20 flush_kernel_dcache_range_asm((start), (start)+(size));
22 extern void flush_cache_all_local(void);
24 static inline void cacheflush_h_tmp_function(void *dummy
)
26 flush_cache_all_local();
29 static inline void flush_cache_all(void)
31 on_each_cpu(cacheflush_h_tmp_function
, NULL
, 1, 1);
34 #define flush_cache_vmap(start, end) flush_cache_all()
35 #define flush_cache_vunmap(start, end) flush_cache_all()
37 extern int parisc_cache_flush_threshold
;
38 void parisc_setup_cache_timing(void);
41 flush_user_dcache_range(unsigned long start
, unsigned long end
)
43 if ((end
- start
) < parisc_cache_flush_threshold
)
44 flush_user_dcache_range_asm(start
,end
);
50 flush_user_icache_range(unsigned long start
, unsigned long end
)
52 if ((end
- start
) < parisc_cache_flush_threshold
)
53 flush_user_icache_range_asm(start
,end
);
55 flush_instruction_cache();
58 extern void flush_dcache_page(struct page
*page
);
60 #define flush_dcache_mmap_lock(mapping) \
61 write_lock_irq(&(mapping)->tree_lock)
62 #define flush_dcache_mmap_unlock(mapping) \
63 write_unlock_irq(&(mapping)->tree_lock)
65 #define flush_icache_page(vma,page) do { flush_kernel_dcache_page(page_address(page)); flush_kernel_icache_page(page_address(page)); } while (0)
67 #define flush_icache_range(s,e) do { flush_kernel_dcache_range_asm(s,e); flush_kernel_icache_range_asm(s,e); } while (0)
69 #define copy_to_user_page(vma, page, vaddr, dst, src, len) \
71 flush_cache_page(vma, vaddr, page_to_pfn(page)); \
72 memcpy(dst, src, len); \
73 flush_kernel_dcache_range_asm((unsigned long)dst, (unsigned long)dst + len); \
76 #define copy_from_user_page(vma, page, vaddr, dst, src, len) \
78 flush_cache_page(vma, vaddr, page_to_pfn(page)); \
79 memcpy(dst, src, len); \
82 static inline void flush_cache_range(struct vm_area_struct
*vma
,
83 unsigned long start
, unsigned long end
)
87 if (!vma
->vm_mm
->context
) {
93 if (vma
->vm_mm
->context
== sr3
) {
94 flush_user_dcache_range(start
,end
);
95 flush_user_icache_range(start
,end
);
101 /* Simple function to work out if we have an existing address translation
102 * for a user space vma. */
103 static inline pte_t
*__translation_exists(struct mm_struct
*mm
,
106 pgd_t
*pgd
= pgd_offset(mm
, addr
);
113 pmd
= pmd_offset(pgd
, addr
);
114 if(pmd_none(*pmd
) || pmd_bad(*pmd
))
117 pte
= pte_offset_map(pmd
, addr
);
119 /* The PA flush mappings show up as pte_none, but they're
120 * valid none the less */
121 if(pte_none(*pte
) && ((pte_val(*pte
) & _PAGE_FLUSH
) == 0))
125 #define translation_exists(vma, addr) __translation_exists((vma)->vm_mm, addr)
128 /* Private function to flush a page from the cache of a non-current
129 * process. cr25 contains the Page Directory of the current user
130 * process; we're going to hijack both it and the user space %sr3 to
131 * temporarily make the non-current process current. We have to do
132 * this because cache flushing may cause a non-access tlb miss which
133 * the handlers have to fill in from the pgd of the non-current
136 flush_user_cache_page_non_current(struct vm_area_struct
*vma
,
137 unsigned long vmaddr
)
139 /* save the current process space and pgd */
140 unsigned long space
= mfsp(3), pgd
= mfctl(25);
142 /* we don't mind taking interrups since they may not
143 * do anything with user space, but we can't
144 * be preempted here */
147 /* make us current */
148 mtctl(__pa(vma
->vm_mm
->pgd
), 25);
149 mtsp(vma
->vm_mm
->context
, 3);
151 flush_user_dcache_page(vmaddr
);
152 if(vma
->vm_flags
& VM_EXEC
)
153 flush_user_icache_page(vmaddr
);
155 /* put the old current process back */
162 __flush_cache_page(struct vm_area_struct
*vma
, unsigned long vmaddr
)
164 if (likely(vma
->vm_mm
->context
== mfsp(3))) {
165 flush_user_dcache_page(vmaddr
);
166 if (vma
->vm_flags
& VM_EXEC
)
167 flush_user_icache_page(vmaddr
);
169 flush_user_cache_page_non_current(vma
, vmaddr
);
174 flush_cache_page(struct vm_area_struct
*vma
, unsigned long vmaddr
, unsigned long pfn
)
176 BUG_ON(!vma
->vm_mm
->context
);
178 if(likely(translation_exists(vma
, vmaddr
)))
179 __flush_cache_page(vma
, vmaddr
);