blob: 659981ffae2418304c749cd17cd1bc0b61748517 [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 Mundtba1789e2007-11-05 16:18:16 +090018void copy_to_user_page(struct vm_area_struct *vma, struct page *page,
19 unsigned long vaddr, void *dst, const void *src,
20 unsigned long len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070021{
Paul Mundt0dfae7d2009-07-27 21:30:17 +090022 if (boot_cpu_data.dcache.n_aliases && page_mapped(page) &&
23 !test_bit(PG_dcache_dirty, &page->flags)) {
Paul Mundt2277ab42009-07-22 19:20:49 +090024 void *vto = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK);
25 memcpy(vto, src, len);
Paul Mundtb5eb10a2009-08-04 16:00:36 +090026 kunmap_coherent();
Paul Mundt2277ab42009-07-22 19:20:49 +090027 } else {
28 memcpy(dst, src, len);
Paul Mundt0dfae7d2009-07-27 21:30:17 +090029 if (boot_cpu_data.dcache.n_aliases)
30 set_bit(PG_dcache_dirty, &page->flags);
Paul Mundt2277ab42009-07-22 19:20:49 +090031 }
Paul Mundtba1789e2007-11-05 16:18:16 +090032
33 if (vma->vm_flags & VM_EXEC)
34 flush_cache_page(vma, vaddr, page_to_pfn(page));
35}
36
37void copy_from_user_page(struct vm_area_struct *vma, struct page *page,
38 unsigned long vaddr, void *dst, const void *src,
39 unsigned long len)
40{
Paul Mundt0dfae7d2009-07-27 21:30:17 +090041 if (boot_cpu_data.dcache.n_aliases && page_mapped(page) &&
42 !test_bit(PG_dcache_dirty, &page->flags)) {
Paul Mundt2277ab42009-07-22 19:20:49 +090043 void *vfrom = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK);
44 memcpy(dst, vfrom, len);
Paul Mundtb5eb10a2009-08-04 16:00:36 +090045 kunmap_coherent();
Paul Mundt2277ab42009-07-22 19:20:49 +090046 } else {
47 memcpy(dst, src, len);
Paul Mundt0dfae7d2009-07-27 21:30:17 +090048 if (boot_cpu_data.dcache.n_aliases)
49 set_bit(PG_dcache_dirty, &page->flags);
Paul Mundt2277ab42009-07-22 19:20:49 +090050 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070051}
Paul Mundt39e688a2007-03-05 19:46:47 +090052
Paul Mundt7747b9a2007-11-05 16:12:32 +090053void copy_user_highpage(struct page *to, struct page *from,
54 unsigned long vaddr, struct vm_area_struct *vma)
55{
56 void *vfrom, *vto;
57
Paul Mundt7747b9a2007-11-05 16:12:32 +090058 vto = kmap_atomic(to, KM_USER1);
Paul Mundt7747b9a2007-11-05 16:12:32 +090059
Paul Mundt0dfae7d2009-07-27 21:30:17 +090060 if (boot_cpu_data.dcache.n_aliases && page_mapped(from) &&
61 !test_bit(PG_dcache_dirty, &from->flags)) {
Paul Mundt2277ab42009-07-22 19:20:49 +090062 vfrom = kmap_coherent(from, vaddr);
63 copy_page(vto, vfrom);
Paul Mundtb5eb10a2009-08-04 16:00:36 +090064 kunmap_coherent();
Paul Mundt2277ab42009-07-22 19:20:49 +090065 } else {
66 vfrom = kmap_atomic(from, KM_USER0);
67 copy_page(vto, vfrom);
68 kunmap_atomic(vfrom, KM_USER0);
69 }
70
71 if (pages_do_alias((unsigned long)vto, vaddr & PAGE_MASK))
Paul Mundt7747b9a2007-11-05 16:12:32 +090072 __flush_wback_region(vto, PAGE_SIZE);
73
74 kunmap_atomic(vto, KM_USER1);
75 /* Make sure this page is cleared on other CPU's too before using it */
76 smp_wmb();
77}
78EXPORT_SYMBOL(copy_user_highpage);
Paul Mundtdfff0fa2009-07-27 20:53:22 +090079
80void clear_user_highpage(struct page *page, unsigned long vaddr)
81{
82 void *kaddr = kmap_atomic(page, KM_USER0);
83
84 clear_page(kaddr);
85
86 if (pages_do_alias((unsigned long)kaddr, vaddr & PAGE_MASK))
87 __flush_wback_region(kaddr, PAGE_SIZE);
88
89 kunmap_atomic(kaddr, KM_USER0);
90}
91EXPORT_SYMBOL(clear_user_highpage);
Paul Mundt9cef7492009-07-29 00:12:17 +090092
93void __update_cache(struct vm_area_struct *vma,
94 unsigned long address, pte_t pte)
95{
96 struct page *page;
97 unsigned long pfn = pte_pfn(pte);
98
99 if (!boot_cpu_data.dcache.n_aliases)
100 return;
101
102 page = pfn_to_page(pfn);
103 if (pfn_valid(pfn) && page_mapping(page)) {
104 int dirty = test_and_clear_bit(PG_dcache_dirty, &page->flags);
105 if (dirty) {
106 unsigned long addr = (unsigned long)page_address(page);
107
108 if (pages_do_alias(addr, address & PAGE_MASK))
109 __flush_wback_region((void *)addr, PAGE_SIZE);
110 }
111 }
112}
Paul Mundtc0fe4782009-08-04 16:02:43 +0900113
114void __flush_anon_page(struct page *page, unsigned long vmaddr)
115{
116 unsigned long addr = (unsigned long) page_address(page);
117
118 if (pages_do_alias(addr, vmaddr)) {
119 if (boot_cpu_data.dcache.n_aliases && page_mapped(page) &&
120 !test_bit(PG_dcache_dirty, &page->flags)) {
121 void *kaddr;
122
123 kaddr = kmap_coherent(page, vmaddr);
124 __flush_wback_region((void *)kaddr, PAGE_SIZE);
125 kunmap_coherent();
126 } else
127 __flush_wback_region((void *)addr, PAGE_SIZE);
128 }
129}
Paul Mundtecba1062009-08-15 11:05:42 +0900130
131void __init cpu_cache_init(void)
132{
133 if ((boot_cpu_data.family == CPU_FAMILY_SH4) ||
134 (boot_cpu_data.family == CPU_FAMILY_SH4A) ||
135 (boot_cpu_data.family == CPU_FAMILY_SH4AL_DSP)) {
136 extern void __weak sh4_cache_init(void);
137
138 sh4_cache_init();
139 }
140}