copypage-v6.c 3.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12
/*
 *  linux/arch/arm/mm/copypage-v6.c
 *
 *  Copyright (C) 2002 Deep Blue Solutions Ltd, All Rights Reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
#include <linux/init.h>
#include <linux/spinlock.h>
#include <linux/mm.h>
13
#include <linux/highmem.h>
L
Linus Torvalds 已提交
14 15 16 17 18

#include <asm/pgtable.h>
#include <asm/shmparam.h>
#include <asm/tlbflush.h>
#include <asm/cacheflush.h>
19
#include <asm/cachetype.h>
L
Linus Torvalds 已提交
20

21 22
#include "mm.h"

L
Linus Torvalds 已提交
23 24 25 26
#if SHMLBA > 16384
#error FIX ME
#endif

27
static DEFINE_RAW_SPINLOCK(v6_lock);
L
Linus Torvalds 已提交
28 29 30 31 32

/*
 * Copy the user page.  No aliasing to deal with so we can just
 * attack the kernel's existing mapping of these pages.
 */
33
static void v6_copy_user_highpage_nonaliasing(struct page *to,
34
	struct page *from, unsigned long vaddr, struct vm_area_struct *vma)
L
Linus Torvalds 已提交
35
{
36 37 38 39
	void *kto, *kfrom;

	kfrom = kmap_atomic(from, KM_USER0);
	kto = kmap_atomic(to, KM_USER1);
L
Linus Torvalds 已提交
40
	copy_page(kto, kfrom);
41 42
	kunmap_atomic(kto, KM_USER1);
	kunmap_atomic(kfrom, KM_USER0);
L
Linus Torvalds 已提交
43 44 45 46 47 48
}

/*
 * Clear the user page.  No aliasing to deal with so we can just
 * attack the kernel's existing mapping of this page.
 */
49
static void v6_clear_user_highpage_nonaliasing(struct page *page, unsigned long vaddr)
L
Linus Torvalds 已提交
50
{
51
	void *kaddr = kmap_atomic(page, KM_USER0);
L
Linus Torvalds 已提交
52
	clear_page(kaddr);
53
	kunmap_atomic(kaddr, KM_USER0);
L
Linus Torvalds 已提交
54 55 56
}

/*
57 58
 * Discard data in the kernel mapping for the new page.
 * FIXME: needs this MCRR to be supported.
L
Linus Torvalds 已提交
59
 */
60
static void discard_old_kernel_data(void *kto)
L
Linus Torvalds 已提交
61 62 63 64 65 66
{
	__asm__("mcrr	p15, 0, %1, %0, c6	@ 0xec401f06"
	   :
	   : "r" (kto),
	     "r" ((unsigned long)kto + PAGE_SIZE - L1_CACHE_BYTES)
	   : "cc");
67 68 69 70 71 72
}

/*
 * Copy the page, taking account of the cache colour.
 */
static void v6_copy_user_highpage_aliasing(struct page *to,
73
	struct page *from, unsigned long vaddr, struct vm_area_struct *vma)
74 75 76 77
{
	unsigned int offset = CACHE_COLOUR(vaddr);
	unsigned long kfrom, kto;

78
	if (!test_and_set_bit(PG_dcache_clean, &from->flags))
79 80 81 82
		__flush_dcache_page(page_mapping(from), from);

	/* FIXME: not highmem safe */
	discard_old_kernel_data(page_address(to));
L
Linus Torvalds 已提交
83 84 85 86 87

	/*
	 * Now copy the page using the same cache colour as the
	 * pages ultimate destination.
	 */
88
	raw_spin_lock(&v6_lock);
L
Linus Torvalds 已提交
89

90 91
	kfrom = COPYPAGE_V6_FROM + (offset << PAGE_SHIFT);
	kto   = COPYPAGE_V6_TO + (offset << PAGE_SHIFT);
L
Linus Torvalds 已提交
92

93 94
	set_pte_ext(TOP_PTE(kfrom), mk_pte(from, PAGE_KERNEL), 0);
	set_pte_ext(TOP_PTE(kto), mk_pte(to, PAGE_KERNEL), 0);
L
Linus Torvalds 已提交
95

96 97
	flush_tlb_kernel_page(kfrom);
	flush_tlb_kernel_page(kto);
L
Linus Torvalds 已提交
98

99
	copy_page((void *)kto, (void *)kfrom);
L
Linus Torvalds 已提交
100

101
	raw_spin_unlock(&v6_lock);
L
Linus Torvalds 已提交
102 103 104 105 106 107 108
}

/*
 * Clear the user page.  We need to deal with the aliasing issues,
 * so remap the kernel page into the same cache colour as the user
 * page.
 */
109
static void v6_clear_user_highpage_aliasing(struct page *page, unsigned long vaddr)
L
Linus Torvalds 已提交
110
{
111
	unsigned long to = COPYPAGE_V6_TO + (CACHE_COLOUR(vaddr) << PAGE_SHIFT);
L
Linus Torvalds 已提交
112

113 114
	/* FIXME: not highmem safe */
	discard_old_kernel_data(page_address(page));
L
Linus Torvalds 已提交
115 116 117 118 119

	/*
	 * Now clear the page using the same cache colour as
	 * the pages ultimate destination.
	 */
120
	raw_spin_lock(&v6_lock);
L
Linus Torvalds 已提交
121

122
	set_pte_ext(TOP_PTE(to), mk_pte(page, PAGE_KERNEL), 0);
L
Linus Torvalds 已提交
123 124 125
	flush_tlb_kernel_page(to);
	clear_page((void *)to);

126
	raw_spin_unlock(&v6_lock);
L
Linus Torvalds 已提交
127 128 129
}

struct cpu_user_fns v6_user_fns __initdata = {
130
	.cpu_clear_user_highpage = v6_clear_user_highpage_nonaliasing,
131
	.cpu_copy_user_highpage	= v6_copy_user_highpage_nonaliasing,
L
Linus Torvalds 已提交
132 133 134 135 136
};

static int __init v6_userpage_init(void)
{
	if (cache_is_vipt_aliasing()) {
137
		cpu_user.cpu_clear_user_highpage = v6_clear_user_highpage_aliasing;
138
		cpu_user.cpu_copy_user_highpage = v6_copy_user_highpage_aliasing;
L
Linus Torvalds 已提交
139 140 141 142 143
	}

	return 0;
}

144
core_initcall(v6_userpage_init);