blob: 38870e0fc182af3347ed90986d9fb3b31578fadb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/sh/mm/pg-sh4.c
3 *
4 * Copyright (C) 1999, 2000, 2002 Niibe Yutaka
Paul Mundt8cf1a742007-07-24 13:28:26 +09005 * Copyright (C) 2002 - 2007 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 Mundt52e27782006-11-21 11:09:41 +090010#include <linux/mutex.h>
Paul Mundte06c4e52007-07-31 13:01:43 +090011#include <linux/fs.h>
Paul Mundt7747b9a2007-11-05 16:12:32 +090012#include <linux/highmem.h>
13#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <asm/mmu_context.h>
15#include <asm/cacheflush.h>
16
Paul Mundt11c19652006-12-25 10:19:56 +090017#define CACHE_ALIAS (current_cpu_data.dcache.alias_mask)
Paul Mundt8b395262006-09-27 14:38:02 +090018
Paul Mundt8cf1a742007-07-24 13:28:26 +090019static inline void *kmap_coherent(struct page *page, unsigned long addr)
20{
21 enum fixed_addresses idx;
22 unsigned long vaddr, flags;
23 pte_t pte;
24
25 inc_preempt_count();
26
27 idx = (addr & current_cpu_data.dcache.alias_mask) >> PAGE_SHIFT;
28 vaddr = __fix_to_virt(FIX_CMAP_END - idx);
29 pte = mk_pte(page, PAGE_KERNEL);
30
31 local_irq_save(flags);
32 flush_tlb_one(get_asid(), vaddr);
33 local_irq_restore(flags);
34
35 update_mmu_cache(NULL, vaddr, pte);
36
37 return (void *)vaddr;
38}
39
40static inline void kunmap_coherent(struct page *page)
41{
42 dec_preempt_count();
43 preempt_check_resched();
44}
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046/*
47 * clear_user_page
48 * @to: P1 address
49 * @address: U0 address to be mapped
50 * @page: page (virt_to_page(to))
51 */
52void clear_user_page(void *to, unsigned long address, struct page *page)
53{
Paul Mundt39e688a2007-03-05 19:46:47 +090054 __set_bit(PG_mapped, &page->flags);
Paul Mundtba1789e2007-11-05 16:18:16 +090055
56 clear_page(to);
57 if ((((address & PAGE_MASK) ^ (unsigned long)to) & CACHE_ALIAS))
58 __flush_wback_region(to, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059}
60
Paul Mundtba1789e2007-11-05 16:18:16 +090061void copy_to_user_page(struct vm_area_struct *vma, struct page *page,
62 unsigned long vaddr, void *dst, const void *src,
63 unsigned long len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
Paul Mundtba1789e2007-11-05 16:18:16 +090065 void *vto;
66
Paul Mundt39e688a2007-03-05 19:46:47 +090067 __set_bit(PG_mapped, &page->flags);
Paul Mundtba1789e2007-11-05 16:18:16 +090068
69 vto = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK);
70 memcpy(vto, src, len);
71 kunmap_coherent(vto);
72
73 if (vma->vm_flags & VM_EXEC)
74 flush_cache_page(vma, vaddr, page_to_pfn(page));
75}
76
77void copy_from_user_page(struct vm_area_struct *vma, struct page *page,
78 unsigned long vaddr, void *dst, const void *src,
79 unsigned long len)
80{
81 void *vfrom;
82
83 __set_bit(PG_mapped, &page->flags);
84
85 vfrom = kmap_coherent(page, vaddr) + (vaddr & ~PAGE_MASK);
86 memcpy(dst, vfrom, len);
87 kunmap_coherent(vfrom);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
Paul Mundt39e688a2007-03-05 19:46:47 +090089
Paul Mundt7747b9a2007-11-05 16:12:32 +090090void copy_user_highpage(struct page *to, struct page *from,
91 unsigned long vaddr, struct vm_area_struct *vma)
92{
93 void *vfrom, *vto;
94
95 __set_bit(PG_mapped, &to->flags);
96
97 vto = kmap_atomic(to, KM_USER1);
98 vfrom = kmap_coherent(from, vaddr);
99 copy_page(vto, vfrom);
100 kunmap_coherent(vfrom);
101
102 if (((vaddr ^ (unsigned long)vto) & CACHE_ALIAS))
103 __flush_wback_region(vto, PAGE_SIZE);
104
105 kunmap_atomic(vto, KM_USER1);
106 /* Make sure this page is cleared on other CPU's too before using it */
107 smp_wmb();
108}
109EXPORT_SYMBOL(copy_user_highpage);
110
Paul Mundt39e688a2007-03-05 19:46:47 +0900111/*
112 * For SH-4, we have our own implementation for ptep_get_and_clear
113 */
Magnus Damm73382f72008-07-05 12:33:30 +0900114pte_t ptep_get_and_clear(struct mm_struct *mm, unsigned long addr, pte_t *ptep)
Paul Mundt39e688a2007-03-05 19:46:47 +0900115{
116 pte_t pte = *ptep;
117
118 pte_clear(mm, addr, ptep);
119 if (!pte_not_present(pte)) {
120 unsigned long pfn = pte_pfn(pte);
121 if (pfn_valid(pfn)) {
122 struct page *page = pfn_to_page(pfn);
123 struct address_space *mapping = page_mapping(page);
124 if (!mapping || !mapping_writably_mapped(mapping))
125 __clear_bit(PG_mapped, &page->flags);
126 }
127 }
128 return pte;
129}