blob: 21b9e1bf9b7714106b13ea7a3f3606875fb25ae3 [file] [log] [blame]
Nicolas Pitred73cd422008-09-15 16:44:55 -04001/*
2 * arch/arm/mm/highmem.c -- ARM highmem support
3 *
4 * Author: Nicolas Pitre
5 * Created: september 8, 2008
6 * Copyright: Marvell Semiconductors Inc.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#include <linux/module.h>
14#include <linux/highmem.h>
15#include <linux/interrupt.h>
16#include <asm/fixmap.h>
17#include <asm/cacheflush.h>
18#include <asm/tlbflush.h>
19#include "mm.h"
20
21void *kmap(struct page *page)
22{
23 might_sleep();
24 if (!PageHighMem(page))
25 return page_address(page);
26 return kmap_high(page);
27}
28EXPORT_SYMBOL(kmap);
29
30void kunmap(struct page *page)
31{
32 BUG_ON(in_interrupt());
33 if (!PageHighMem(page))
34 return;
35 kunmap_high(page);
36}
37EXPORT_SYMBOL(kunmap);
38
Cong Wanga24401b2011-11-26 10:53:39 +080039void *kmap_atomic(struct page *page)
Nicolas Pitred73cd422008-09-15 16:44:55 -040040{
41 unsigned int idx;
42 unsigned long vaddr;
Nicolas Pitre7929eb92009-09-03 21:45:59 +010043 void *kmap;
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -070044 int type;
Nicolas Pitred73cd422008-09-15 16:44:55 -040045
46 pagefault_disable();
47 if (!PageHighMem(page))
48 return page_address(page);
49
Nicolas Pitre17ebba12010-06-07 21:28:55 +010050#ifdef CONFIG_DEBUG_HIGHMEM
51 /*
52 * There is no cache coherency issue when non VIVT, so force the
53 * dedicated kmap usage for better debugging purposes in that case.
54 */
55 if (!cache_is_vivt())
56 kmap = NULL;
57 else
58#endif
59 kmap = kmap_high_get(page);
Nicolas Pitre7929eb92009-09-03 21:45:59 +010060 if (kmap)
61 return kmap;
62
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -070063 type = kmap_atomic_idx_push();
64
Nicolas Pitred73cd422008-09-15 16:44:55 -040065 idx = type + KM_TYPE_NR * smp_processor_id();
66 vaddr = __fix_to_virt(FIX_KMAP_BEGIN + idx);
67#ifdef CONFIG_DEBUG_HIGHMEM
68 /*
69 * With debugging enabled, kunmap_atomic forces that entry to 0.
70 * Make sure it was indeed properly unmapped.
71 */
Russell King0d31fe42011-07-04 11:22:27 +010072 BUG_ON(!pte_none(get_top_pte(vaddr)));
Nicolas Pitred73cd422008-09-15 16:44:55 -040073#endif
Nicolas Pitred73cd422008-09-15 16:44:55 -040074 /*
75 * When debugging is off, kunmap_atomic leaves the previous mapping
Russell King67ece142011-07-02 15:20:44 +010076 * in place, so the contained TLB flush ensures the TLB is updated
77 * with the new mapping.
Nicolas Pitred73cd422008-09-15 16:44:55 -040078 */
Russell King67ece142011-07-02 15:20:44 +010079 set_top_pte(vaddr, mk_pte(page, kmap_prot));
Nicolas Pitred73cd422008-09-15 16:44:55 -040080
81 return (void *)vaddr;
82}
Cong Wanga24401b2011-11-26 10:53:39 +080083EXPORT_SYMBOL(kmap_atomic);
Nicolas Pitred73cd422008-09-15 16:44:55 -040084
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -070085void __kunmap_atomic(void *kvaddr)
Nicolas Pitred73cd422008-09-15 16:44:55 -040086{
87 unsigned long vaddr = (unsigned long) kvaddr & PAGE_MASK;
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -070088 int idx, type;
Nicolas Pitred73cd422008-09-15 16:44:55 -040089
90 if (kvaddr >= (void *)FIXADDR_START) {
Peter Zijlstra20273942010-10-27 15:32:58 -070091 type = kmap_atomic_idx();
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -070092 idx = type + KM_TYPE_NR * smp_processor_id();
93
Nicolas Pitre7e5a69e2010-03-29 21:46:02 +010094 if (cache_is_vivt())
95 __cpuc_flush_dcache_area((void *)vaddr, PAGE_SIZE);
Nicolas Pitred73cd422008-09-15 16:44:55 -040096#ifdef CONFIG_DEBUG_HIGHMEM
97 BUG_ON(vaddr != __fix_to_virt(FIX_KMAP_BEGIN + idx));
Russell King67ece142011-07-02 15:20:44 +010098 set_top_pte(vaddr, __pte(0));
Nicolas Pitred73cd422008-09-15 16:44:55 -040099#else
100 (void) idx; /* to kill a warning */
101#endif
Peter Zijlstra20273942010-10-27 15:32:58 -0700102 kmap_atomic_idx_pop();
Nicolas Pitre7929eb92009-09-03 21:45:59 +0100103 } else if (vaddr >= PKMAP_ADDR(0) && vaddr < PKMAP_ADDR(LAST_PKMAP)) {
104 /* this address was obtained through kmap_high_get() */
105 kunmap_high(pte_page(pkmap_page_table[PKMAP_NR(vaddr)]));
Nicolas Pitred73cd422008-09-15 16:44:55 -0400106 }
107 pagefault_enable();
108}
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700109EXPORT_SYMBOL(__kunmap_atomic);
Nicolas Pitred73cd422008-09-15 16:44:55 -0400110
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700111void *kmap_atomic_pfn(unsigned long pfn)
Nicolas Pitred73cd422008-09-15 16:44:55 -0400112{
Nicolas Pitred73cd422008-09-15 16:44:55 -0400113 unsigned long vaddr;
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700114 int idx, type;
Nicolas Pitred73cd422008-09-15 16:44:55 -0400115
116 pagefault_disable();
117
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700118 type = kmap_atomic_idx_push();
Nicolas Pitred73cd422008-09-15 16:44:55 -0400119 idx = type + KM_TYPE_NR * smp_processor_id();
120 vaddr = __fix_to_virt(FIX_KMAP_BEGIN + idx);
121#ifdef CONFIG_DEBUG_HIGHMEM
Russell King0d31fe42011-07-04 11:22:27 +0100122 BUG_ON(!pte_none(get_top_pte(vaddr)));
Nicolas Pitred73cd422008-09-15 16:44:55 -0400123#endif
Russell King67ece142011-07-02 15:20:44 +0100124 set_top_pte(vaddr, pfn_pte(pfn, kmap_prot));
Nicolas Pitred73cd422008-09-15 16:44:55 -0400125
126 return (void *)vaddr;
127}
128
129struct page *kmap_atomic_to_page(const void *ptr)
130{
131 unsigned long vaddr = (unsigned long)ptr;
Nicolas Pitred73cd422008-09-15 16:44:55 -0400132
133 if (vaddr < FIXADDR_START)
134 return virt_to_page(ptr);
135
Russell King0d31fe42011-07-04 11:22:27 +0100136 return pte_page(get_top_pte(vaddr));
Nicolas Pitred73cd422008-09-15 16:44:55 -0400137}