blob: a9ede7bae5203cfe6afb875907d17badc2732d6c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Paul Mundt0dfae7d2009-07-27 21:30:17 +09002 * arch/sh/mm/pg-mmu.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 1999, 2000, 2002 Niibe Yutaka
Paul Mundtdfff0fa2009-07-27 20:53:22 +09005 * Copyright (C) 2002 - 2009 Paul Mundt
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * Released under the terms of the GNU GPL v2.0.
8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/mm.h>
Paul Mundtacca4f42008-11-10 20:00:45 +090010#include <linux/init.h>
Paul Mundt52e27782006-11-21 11:09:41 +090011#include <linux/mutex.h>
Paul Mundte06c4e52007-07-31 13:01:43 +090012#include <linux/fs.h>
Paul Mundt7747b9a2007-11-05 16:12:32 +090013#include <linux/highmem.h>
14#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <asm/mmu_context.h>
16#include <asm/cacheflush.h>
17
Paul Mundtacca4f42008-11-10 20:00:45 +090018#define kmap_get_fixmap_pte(vaddr) \
19 pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr), (vaddr)), (vaddr)), (vaddr))
20
21static pte_t *kmap_coherent_pte;
22
23void __init kmap_coherent_init(void)
24{
Paul Mundt0dfae7d2009-07-27 21:30:17 +090025#if defined(CONFIG_CPU_SH4) || defined(CONFIG_SH7705_CACHE_32KB)
Paul Mundtacca4f42008-11-10 20:00:45 +090026 unsigned long vaddr;
27
28 /* cache the first coherent kmap pte */
29 vaddr = __fix_to_virt(FIX_CMAP_BEGIN);
30 kmap_coherent_pte = kmap_get_fixmap_pte(vaddr);
Paul Mundt0dfae7d2009-07-27 21:30:17 +090031#endif
Paul Mundtacca4f42008-11-10 20:00:45 +090032}
33
Paul Mundt222db3e2009-08-04 15:59:15 +090034static void *kmap_coherent(struct page *page, unsigned long addr)
Paul Mundt8cf1a742007-07-24 13:28:26 +090035{
36 enum fixed_addresses idx;
37 unsigned long vaddr, flags;
38 pte_t pte;
39
Paul Mundt700487c2009-08-04 15:57:44 +090040 BUG_ON(test_bit(PG_dcache_dirty, &page->flags));
41
Paul Mundt8cf1a742007-07-24 13:28:26 +090042 inc_preempt_count();
43
44 idx = (addr & current_cpu_data.dcache.alias_mask) >> PAGE_SHIFT;
45 vaddr = __fix_to_virt(FIX_CMAP_END - idx);
46 pte = mk_pte(page, PAGE_KERNEL);
47
48 local_irq_save(flags);
49 flush_tlb_one(get_asid(), vaddr);
50 local_irq_restore(flags);
51
52 update_mmu_cache(NULL, vaddr, pte);
53
Paul Mundtacca4f42008-11-10 20:00:45 +090054 set_pte(kmap_coherent_pte - (FIX_CMAP_END - idx), pte);
55
Paul Mundt8cf1a742007-07-24 13:28:26 +090056 return (void *)vaddr;
57}
58
Paul Mundtb5eb10a2009-08-04 16:00:36 +090059static inline void kunmap_coherent(void)
Paul Mundt8cf1a742007-07-24 13:28:26 +090060{
61 dec_preempt_count();
62 preempt_check_resched();
63}
64
Paul Mundtba1789e2007-11-05 16:18:16 +090065void copy_to_user_page(struct vm_area_struct *vma, struct page *page,
66 unsigned long vaddr, void *dst, const void *src,
67 unsigned long len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
Paul Mundt0dfae7d2009-07-27 21:30:17 +090069 if (boot_cpu_data.dcache.n_aliases && page_mapped(page) &&
70 !test_bit(PG_dcache_dirty, &page->flags)) {
Paul Mundt2277ab42009-07-22 19:20:49 +090071 void *vto = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK);
72 memcpy(vto, src, len);
Paul Mundtb5eb10a2009-08-04 16:00:36 +090073 kunmap_coherent();
Paul Mundt2277ab42009-07-22 19:20:49 +090074 } else {
75 memcpy(dst, src, len);
Paul Mundt0dfae7d2009-07-27 21:30:17 +090076 if (boot_cpu_data.dcache.n_aliases)
77 set_bit(PG_dcache_dirty, &page->flags);
Paul Mundt2277ab42009-07-22 19:20:49 +090078 }
Paul Mundtba1789e2007-11-05 16:18:16 +090079
80 if (vma->vm_flags & VM_EXEC)
81 flush_cache_page(vma, vaddr, page_to_pfn(page));
82}
83
84void copy_from_user_page(struct vm_area_struct *vma, struct page *page,
85 unsigned long vaddr, void *dst, const void *src,
86 unsigned long len)
87{
Paul Mundt0dfae7d2009-07-27 21:30:17 +090088 if (boot_cpu_data.dcache.n_aliases && page_mapped(page) &&
89 !test_bit(PG_dcache_dirty, &page->flags)) {
Paul Mundt2277ab42009-07-22 19:20:49 +090090 void *vfrom = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK);
91 memcpy(dst, vfrom, len);
Paul Mundtb5eb10a2009-08-04 16:00:36 +090092 kunmap_coherent();
Paul Mundt2277ab42009-07-22 19:20:49 +090093 } else {
94 memcpy(dst, src, len);
Paul Mundt0dfae7d2009-07-27 21:30:17 +090095 if (boot_cpu_data.dcache.n_aliases)
96 set_bit(PG_dcache_dirty, &page->flags);
Paul Mundt2277ab42009-07-22 19:20:49 +090097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
Paul Mundt39e688a2007-03-05 19:46:47 +090099
Paul Mundt7747b9a2007-11-05 16:12:32 +0900100void copy_user_highpage(struct page *to, struct page *from,
101 unsigned long vaddr, struct vm_area_struct *vma)
102{
103 void *vfrom, *vto;
104
Paul Mundt7747b9a2007-11-05 16:12:32 +0900105 vto = kmap_atomic(to, KM_USER1);
Paul Mundt7747b9a2007-11-05 16:12:32 +0900106
Paul Mundt0dfae7d2009-07-27 21:30:17 +0900107 if (boot_cpu_data.dcache.n_aliases && page_mapped(from) &&
108 !test_bit(PG_dcache_dirty, &from->flags)) {
Paul Mundt2277ab42009-07-22 19:20:49 +0900109 vfrom = kmap_coherent(from, vaddr);
110 copy_page(vto, vfrom);
Paul Mundtb5eb10a2009-08-04 16:00:36 +0900111 kunmap_coherent();
Paul Mundt2277ab42009-07-22 19:20:49 +0900112 } else {
113 vfrom = kmap_atomic(from, KM_USER0);
114 copy_page(vto, vfrom);
115 kunmap_atomic(vfrom, KM_USER0);
116 }
117
118 if (pages_do_alias((unsigned long)vto, vaddr & PAGE_MASK))
Paul Mundt7747b9a2007-11-05 16:12:32 +0900119 __flush_wback_region(vto, PAGE_SIZE);
120
121 kunmap_atomic(vto, KM_USER1);
122 /* Make sure this page is cleared on other CPU's too before using it */
123 smp_wmb();
124}
125EXPORT_SYMBOL(copy_user_highpage);
Paul Mundtdfff0fa2009-07-27 20:53:22 +0900126
127void clear_user_highpage(struct page *page, unsigned long vaddr)
128{
129 void *kaddr = kmap_atomic(page, KM_USER0);
130
131 clear_page(kaddr);
132
133 if (pages_do_alias((unsigned long)kaddr, vaddr & PAGE_MASK))
134 __flush_wback_region(kaddr, PAGE_SIZE);
135
136 kunmap_atomic(kaddr, KM_USER0);
137}
138EXPORT_SYMBOL(clear_user_highpage);
Paul Mundt9cef7492009-07-29 00:12:17 +0900139
140void __update_cache(struct vm_area_struct *vma,
141 unsigned long address, pte_t pte)
142{
143 struct page *page;
144 unsigned long pfn = pte_pfn(pte);
145
146 if (!boot_cpu_data.dcache.n_aliases)
147 return;
148
149 page = pfn_to_page(pfn);
150 if (pfn_valid(pfn) && page_mapping(page)) {
151 int dirty = test_and_clear_bit(PG_dcache_dirty, &page->flags);
152 if (dirty) {
153 unsigned long addr = (unsigned long)page_address(page);
154
155 if (pages_do_alias(addr, address & PAGE_MASK))
156 __flush_wback_region((void *)addr, PAGE_SIZE);
157 }
158 }
159}