blob: 684a73f4324f4ad203c71ef4eb09b5045ab60516 [file] [log] [blame]
Kumar Gala33d71d22007-08-20 08:50:28 -05001/*
2 * highmem.h: virtual kernel memory mappings for high memory
3 *
4 * PowerPC version, stolen from the i386 version.
5 *
6 * Used in CONFIG_HIGHMEM systems for memory pages which
7 * are not addressable by direct kernel virtual addresses.
8 *
9 * Copyright (C) 1999 Gerhard Wichert, Siemens AG
10 * Gerhard.Wichert@pdb.siemens.de
11 *
12 *
13 * Redesigned the x86 32-bit VM architecture to deal with
14 * up to 16 Terrabyte physical memory. With current x86 CPUs
15 * we now support up to 64 Gigabytes physical RAM.
16 *
17 * Copyright (C) 1999 Ingo Molnar <mingo@redhat.com>
18 */
19
20#ifndef _ASM_HIGHMEM_H
21#define _ASM_HIGHMEM_H
22
23#ifdef __KERNEL__
24
25#include <linux/init.h>
26#include <linux/interrupt.h>
Akinobu Mita7ca43e72009-03-31 15:23:25 -070027#include <linux/highmem.h>
Kumar Gala33d71d22007-08-20 08:50:28 -050028#include <asm/kmap_types.h>
29#include <asm/tlbflush.h>
30#include <asm/page.h>
Kumar Gala2c419bd2008-04-23 23:05:20 +100031#include <asm/fixmap.h>
Kumar Gala33d71d22007-08-20 08:50:28 -050032
33extern pte_t *kmap_pte;
34extern pgprot_t kmap_prot;
35extern pte_t *pkmap_page_table;
36
37/*
38 * Right now we initialize only a single pte table. It can be extended
39 * easily, subsequent pte tables have to be allocated in one physical
40 * chunk of RAM.
41 */
Ilya Yanokca9153a2008-12-11 04:55:41 +030042/*
Yuri Tikhonove1240122009-01-29 01:40:44 +000043 * We use one full pte table with 4K pages. And with 16K/64K/256K pages pte
44 * table covers enough memory (32MB/512MB/2GB resp.), so that both FIXMAP
45 * and PKMAP can be placed in a single pte table. We use 512 pages for PKMAP
46 * in case of 16K/64K/256K page sizes.
Ilya Yanokca9153a2008-12-11 04:55:41 +030047 */
48#ifdef CONFIG_PPC_4K_PAGES
49#define PKMAP_ORDER PTE_SHIFT
50#else
Yuri Tikhonove1240122009-01-29 01:40:44 +000051#define PKMAP_ORDER 9
Ilya Yanokca9153a2008-12-11 04:55:41 +030052#endif
53#define LAST_PKMAP (1 << PKMAP_ORDER)
54#ifndef CONFIG_PPC_4K_PAGES
55#define PKMAP_BASE (FIXADDR_START - PAGE_SIZE*(LAST_PKMAP + 1))
56#else
Kumar Gala2c419bd2008-04-23 23:05:20 +100057#define PKMAP_BASE ((FIXADDR_START - PAGE_SIZE*(LAST_PKMAP + 1)) & PMD_MASK)
Ilya Yanokca9153a2008-12-11 04:55:41 +030058#endif
59#define LAST_PKMAP_MASK (LAST_PKMAP-1)
Kumar Gala33d71d22007-08-20 08:50:28 -050060#define PKMAP_NR(virt) ((virt-PKMAP_BASE) >> PAGE_SHIFT)
61#define PKMAP_ADDR(nr) (PKMAP_BASE + ((nr) << PAGE_SHIFT))
62
Kumar Gala33d71d22007-08-20 08:50:28 -050063extern void *kmap_high(struct page *page);
64extern void kunmap_high(struct page *page);
65
66static inline void *kmap(struct page *page)
67{
68 might_sleep();
69 if (!PageHighMem(page))
70 return page_address(page);
71 return kmap_high(page);
72}
73
74static inline void kunmap(struct page *page)
75{
76 BUG_ON(in_interrupt());
77 if (!PageHighMem(page))
78 return;
79 kunmap_high(page);
80}
81
82/*
83 * The use of kmap_atomic/kunmap_atomic is discouraged - kmap/kunmap
84 * gives a more generic (and caching) interface. But kmap_atomic can
85 * be used in IRQ contexts, so in some (very limited) cases we need
86 * it.
87 */
Kumar Gala2c419bd2008-04-23 23:05:20 +100088static inline void *kmap_atomic_prot(struct page *page, enum km_type type, pgprot_t prot)
Kumar Gala33d71d22007-08-20 08:50:28 -050089{
90 unsigned int idx;
91 unsigned long vaddr;
92
93 /* even !CONFIG_PREEMPT needs this, for in_atomic in do_page_fault */
94 pagefault_disable();
95 if (!PageHighMem(page))
96 return page_address(page);
97
Akinobu Mita7ca43e72009-03-31 15:23:25 -070098 debug_kmap_atomic(type);
Kumar Gala33d71d22007-08-20 08:50:28 -050099 idx = type + KM_TYPE_NR*smp_processor_id();
Kumar Gala2c419bd2008-04-23 23:05:20 +1000100 vaddr = __fix_to_virt(FIX_KMAP_BEGIN + idx);
101#ifdef CONFIG_DEBUG_HIGHMEM
102 BUG_ON(!pte_none(*(kmap_pte-idx)));
Kumar Gala33d71d22007-08-20 08:50:28 -0500103#endif
Benjamin Herrenschmidt8d30c142009-02-10 16:02:37 +0000104 __set_pte_at(&init_mm, vaddr, kmap_pte-idx, mk_pte(page, prot), 1);
Benjamin Herrenschmidtf048aac2008-12-18 19:13:38 +0000105 local_flush_tlb_page(NULL, vaddr);
Kumar Gala33d71d22007-08-20 08:50:28 -0500106
107 return (void*) vaddr;
108}
109
Kumar Gala2c419bd2008-04-23 23:05:20 +1000110static inline void *kmap_atomic(struct page *page, enum km_type type)
111{
112 return kmap_atomic_prot(page, type, kmap_prot);
113}
114
Kumar Gala33d71d22007-08-20 08:50:28 -0500115static inline void kunmap_atomic(void *kvaddr, enum km_type type)
116{
Kumar Gala2c419bd2008-04-23 23:05:20 +1000117#ifdef CONFIG_DEBUG_HIGHMEM
Kumar Gala33d71d22007-08-20 08:50:28 -0500118 unsigned long vaddr = (unsigned long) kvaddr & PAGE_MASK;
Kumar Gala2c419bd2008-04-23 23:05:20 +1000119 enum fixed_addresses idx = type + KM_TYPE_NR*smp_processor_id();
Kumar Gala33d71d22007-08-20 08:50:28 -0500120
Kumar Gala2c419bd2008-04-23 23:05:20 +1000121 if (vaddr < __fix_to_virt(FIX_KMAP_END)) {
Kumar Gala33d71d22007-08-20 08:50:28 -0500122 pagefault_enable();
123 return;
124 }
125
Kumar Gala2c419bd2008-04-23 23:05:20 +1000126 BUG_ON(vaddr != __fix_to_virt(FIX_KMAP_BEGIN + idx));
Kumar Gala33d71d22007-08-20 08:50:28 -0500127
128 /*
129 * force other mappings to Oops if they'll try to access
130 * this pte without first remap it
131 */
Kumar Gala2c419bd2008-04-23 23:05:20 +1000132 pte_clear(&init_mm, vaddr, kmap_pte-idx);
Benjamin Herrenschmidtf048aac2008-12-18 19:13:38 +0000133 local_flush_tlb_page(NULL, vaddr);
Kumar Gala33d71d22007-08-20 08:50:28 -0500134#endif
135 pagefault_enable();
136}
137
138static inline struct page *kmap_atomic_to_page(void *ptr)
139{
140 unsigned long idx, vaddr = (unsigned long) ptr;
Kumar Gala2c419bd2008-04-23 23:05:20 +1000141 pte_t *pte;
Kumar Gala33d71d22007-08-20 08:50:28 -0500142
Kumar Gala2c419bd2008-04-23 23:05:20 +1000143 if (vaddr < FIXADDR_START)
Kumar Gala33d71d22007-08-20 08:50:28 -0500144 return virt_to_page(ptr);
145
Kumar Gala2c419bd2008-04-23 23:05:20 +1000146 idx = virt_to_fix(vaddr);
147 pte = kmap_pte - (idx - FIX_KMAP_BEGIN);
148 return pte_page(*pte);
Kumar Gala33d71d22007-08-20 08:50:28 -0500149}
150
151#define flush_cache_kmaps() flush_cache_all()
152
153#endif /* __KERNEL__ */
154
155#endif /* _ASM_HIGHMEM_H */