blob: 45aeaaca9052f237322cf91a247a69fdb2d1571e [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
Liu Huaa05e54c2014-04-18 09:43:32 +010021pte_t *fixmap_page_table;
22
23static inline void set_fixmap_pte(int idx, pte_t pte)
24{
25 unsigned long vaddr = __fix_to_virt(idx);
26 set_pte_ext(fixmap_page_table + idx, pte, 0);
27 local_flush_tlb_kernel_page(vaddr);
28}
29
30static inline pte_t get_fixmap_pte(unsigned long vaddr)
31{
32 unsigned long idx = __virt_to_fix(vaddr);
33 return *(fixmap_page_table + idx);
34}
35
Nicolas Pitred73cd422008-09-15 16:44:55 -040036void *kmap(struct page *page)
37{
38 might_sleep();
39 if (!PageHighMem(page))
40 return page_address(page);
41 return kmap_high(page);
42}
43EXPORT_SYMBOL(kmap);
44
45void kunmap(struct page *page)
46{
47 BUG_ON(in_interrupt());
48 if (!PageHighMem(page))
49 return;
50 kunmap_high(page);
51}
52EXPORT_SYMBOL(kunmap);
53
Cong Wanga24401b2011-11-26 10:53:39 +080054void *kmap_atomic(struct page *page)
Nicolas Pitred73cd422008-09-15 16:44:55 -040055{
56 unsigned int idx;
57 unsigned long vaddr;
Nicolas Pitre7929eb92009-09-03 21:45:59 +010058 void *kmap;
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -070059 int type;
Nicolas Pitred73cd422008-09-15 16:44:55 -040060
61 pagefault_disable();
62 if (!PageHighMem(page))
63 return page_address(page);
64
Nicolas Pitre17ebba12010-06-07 21:28:55 +010065#ifdef CONFIG_DEBUG_HIGHMEM
66 /*
67 * There is no cache coherency issue when non VIVT, so force the
68 * dedicated kmap usage for better debugging purposes in that case.
69 */
70 if (!cache_is_vivt())
71 kmap = NULL;
72 else
73#endif
74 kmap = kmap_high_get(page);
Nicolas Pitre7929eb92009-09-03 21:45:59 +010075 if (kmap)
76 return kmap;
77
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -070078 type = kmap_atomic_idx_push();
79
Nicolas Pitred73cd422008-09-15 16:44:55 -040080 idx = type + KM_TYPE_NR * smp_processor_id();
Liu Hua4221e2e2014-04-18 09:27:01 +010081 vaddr = __fix_to_virt(idx);
Nicolas Pitred73cd422008-09-15 16:44:55 -040082#ifdef CONFIG_DEBUG_HIGHMEM
83 /*
84 * With debugging enabled, kunmap_atomic forces that entry to 0.
85 * Make sure it was indeed properly unmapped.
86 */
Liu Huaa05e54c2014-04-18 09:43:32 +010087 BUG_ON(!pte_none(*(fixmap_page_table + idx)));
Nicolas Pitred73cd422008-09-15 16:44:55 -040088#endif
Nicolas Pitred73cd422008-09-15 16:44:55 -040089 /*
90 * When debugging is off, kunmap_atomic leaves the previous mapping
Russell King67ece142011-07-02 15:20:44 +010091 * in place, so the contained TLB flush ensures the TLB is updated
92 * with the new mapping.
Nicolas Pitred73cd422008-09-15 16:44:55 -040093 */
Liu Huaa05e54c2014-04-18 09:43:32 +010094 set_fixmap_pte(idx, mk_pte(page, kmap_prot));
Nicolas Pitred73cd422008-09-15 16:44:55 -040095
96 return (void *)vaddr;
97}
Cong Wanga24401b2011-11-26 10:53:39 +080098EXPORT_SYMBOL(kmap_atomic);
Nicolas Pitred73cd422008-09-15 16:44:55 -040099
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700100void __kunmap_atomic(void *kvaddr)
Nicolas Pitred73cd422008-09-15 16:44:55 -0400101{
102 unsigned long vaddr = (unsigned long) kvaddr & PAGE_MASK;
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700103 int idx, type;
Nicolas Pitred73cd422008-09-15 16:44:55 -0400104
105 if (kvaddr >= (void *)FIXADDR_START) {
Peter Zijlstra20273942010-10-27 15:32:58 -0700106 type = kmap_atomic_idx();
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700107 idx = type + KM_TYPE_NR * smp_processor_id();
108
Nicolas Pitre7e5a69e2010-03-29 21:46:02 +0100109 if (cache_is_vivt())
110 __cpuc_flush_dcache_area((void *)vaddr, PAGE_SIZE);
Nicolas Pitred73cd422008-09-15 16:44:55 -0400111#ifdef CONFIG_DEBUG_HIGHMEM
Liu Hua4221e2e2014-04-18 09:27:01 +0100112 BUG_ON(vaddr != __fix_to_virt(idx));
Liu Huaa05e54c2014-04-18 09:43:32 +0100113 set_fixmap_pte(idx, __pte(0));
Nicolas Pitred73cd422008-09-15 16:44:55 -0400114#else
115 (void) idx; /* to kill a warning */
116#endif
Peter Zijlstra20273942010-10-27 15:32:58 -0700117 kmap_atomic_idx_pop();
Nicolas Pitre7929eb92009-09-03 21:45:59 +0100118 } else if (vaddr >= PKMAP_ADDR(0) && vaddr < PKMAP_ADDR(LAST_PKMAP)) {
119 /* this address was obtained through kmap_high_get() */
120 kunmap_high(pte_page(pkmap_page_table[PKMAP_NR(vaddr)]));
Nicolas Pitred73cd422008-09-15 16:44:55 -0400121 }
122 pagefault_enable();
123}
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700124EXPORT_SYMBOL(__kunmap_atomic);
Nicolas Pitred73cd422008-09-15 16:44:55 -0400125
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700126void *kmap_atomic_pfn(unsigned long pfn)
Nicolas Pitred73cd422008-09-15 16:44:55 -0400127{
Nicolas Pitred73cd422008-09-15 16:44:55 -0400128 unsigned long vaddr;
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700129 int idx, type;
Nicolas Pitred73cd422008-09-15 16:44:55 -0400130
131 pagefault_disable();
132
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700133 type = kmap_atomic_idx_push();
Nicolas Pitred73cd422008-09-15 16:44:55 -0400134 idx = type + KM_TYPE_NR * smp_processor_id();
Liu Hua4221e2e2014-04-18 09:27:01 +0100135 vaddr = __fix_to_virt(idx);
Nicolas Pitred73cd422008-09-15 16:44:55 -0400136#ifdef CONFIG_DEBUG_HIGHMEM
Liu Huaa05e54c2014-04-18 09:43:32 +0100137 BUG_ON(!pte_none(*(fixmap_page_table + idx)));
Nicolas Pitred73cd422008-09-15 16:44:55 -0400138#endif
Liu Huaa05e54c2014-04-18 09:43:32 +0100139 set_fixmap_pte(idx, pfn_pte(pfn, kmap_prot));
Nicolas Pitred73cd422008-09-15 16:44:55 -0400140
141 return (void *)vaddr;
142}
143
144struct page *kmap_atomic_to_page(const void *ptr)
145{
146 unsigned long vaddr = (unsigned long)ptr;
Nicolas Pitred73cd422008-09-15 16:44:55 -0400147
148 if (vaddr < FIXADDR_START)
149 return virt_to_page(ptr);
150
Liu Huaa05e54c2014-04-18 09:43:32 +0100151 return pte_page(get_fixmap_pte(vaddr));
Nicolas Pitred73cd422008-09-15 16:44:55 -0400152}