blob: 833139620431282abb7fd3e1fba3e84922c67cc6 [file] [log] [blame]
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001/*
2 * This file contains the routines setting up the linux page tables.
3 * -- paulus
4 *
5 * Derived from arch/ppc/mm/init.c:
6 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
7 *
8 * Modifications by Paul Mackerras (PowerMac) (paulus@cs.anu.edu.au)
9 * and Cort Dougan (PReP) (cort@cs.nmt.edu)
10 * Copyright (C) 1996 Paul Mackerras
Paul Mackerras14cf11a2005-09-26 16:04:21 +100011 *
12 * Derived from "arch/i386/mm/init.c"
13 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version
18 * 2 of the License, or (at your option) any later version.
19 *
20 */
21
Paul Mackerras14cf11a2005-09-26 16:04:21 +100022#include <linux/kernel.h>
23#include <linux/module.h>
24#include <linux/types.h>
25#include <linux/mm.h>
26#include <linux/vmalloc.h>
27#include <linux/init.h>
28#include <linux/highmem.h>
Yinghai Lu95f72d12010-07-12 14:36:09 +100029#include <linux/memblock.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100031
32#include <asm/pgtable.h>
33#include <asm/pgalloc.h>
Kumar Gala2c419bd2008-04-23 23:05:20 +100034#include <asm/fixmap.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100035#include <asm/io.h>
David Howellsae3a1972012-03-28 18:30:02 +010036#include <asm/setup.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100037
38#include "mmu_decl.h"
39
40unsigned long ioremap_base;
41unsigned long ioremap_bot;
Olaf Hering920573b2006-03-14 21:21:11 +010042EXPORT_SYMBOL(ioremap_bot); /* aka VMALLOC_END */
Paul Mackerras14cf11a2005-09-26 16:04:21 +100043
Michael Ellermanc3993f12014-07-10 12:29:22 +100044#ifdef CONFIG_6xx
Paul Mackerras14cf11a2005-09-26 16:04:21 +100045#define HAVE_BATS 1
46#endif
47
48#if defined(CONFIG_FSL_BOOKE)
49#define HAVE_TLBCAM 1
50#endif
51
52extern char etext[], _stext[];
53
Paul Mackerras14cf11a2005-09-26 16:04:21 +100054#ifdef HAVE_BATS
Becky Bruce7c5c4322008-06-14 09:41:42 +100055extern phys_addr_t v_mapped_by_bats(unsigned long va);
56extern unsigned long p_mapped_by_bats(phys_addr_t pa);
57void setbat(int index, unsigned long virt, phys_addr_t phys,
Paul Mackerras14cf11a2005-09-26 16:04:21 +100058 unsigned int size, int flags);
59
60#else /* !HAVE_BATS */
61#define v_mapped_by_bats(x) (0UL)
62#define p_mapped_by_bats(x) (0UL)
63#endif /* HAVE_BATS */
64
65#ifdef HAVE_TLBCAM
Kumar Gala6c24b172009-02-09 21:08:07 -060066extern phys_addr_t v_mapped_by_tlbcam(unsigned long va);
67extern unsigned long p_mapped_by_tlbcam(phys_addr_t pa);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100068#else /* !HAVE_TLBCAM */
69#define v_mapped_by_tlbcam(x) (0UL)
70#define p_mapped_by_tlbcam(x) (0UL)
71#endif /* HAVE_TLBCAM */
72
Ilya Yanokca9153a2008-12-11 04:55:41 +030073#define PGDIR_ORDER (32 + PGD_T_LOG2 - PGDIR_SHIFT)
Paul Mackerras14cf11a2005-09-26 16:04:21 +100074
75pgd_t *pgd_alloc(struct mm_struct *mm)
76{
77 pgd_t *ret;
78
Ilya Yanokca9153a2008-12-11 04:55:41 +030079 /* pgdir take page or two with 4K pages and a page fraction otherwise */
80#ifndef CONFIG_PPC_4K_PAGES
Jesper Juhlae9fd312010-11-08 13:07:57 +000081 ret = kzalloc(1 << PGDIR_ORDER, GFP_KERNEL);
Ilya Yanokca9153a2008-12-11 04:55:41 +030082#else
83 ret = (pgd_t *)__get_free_pages(GFP_KERNEL|__GFP_ZERO,
84 PGDIR_ORDER - PAGE_SHIFT);
85#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +100086 return ret;
87}
88
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -080089void pgd_free(struct mm_struct *mm, pgd_t *pgd)
Paul Mackerras14cf11a2005-09-26 16:04:21 +100090{
Ilya Yanokca9153a2008-12-11 04:55:41 +030091#ifndef CONFIG_PPC_4K_PAGES
92 kfree((void *)pgd);
93#else
94 free_pages((unsigned long)pgd, PGDIR_ORDER - PAGE_SHIFT);
95#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +100096}
97
Kumar Galaf1aed922007-05-23 07:49:37 -050098__init_refok pte_t *pte_alloc_one_kernel(struct mm_struct *mm, unsigned long address)
Paul Mackerras14cf11a2005-09-26 16:04:21 +100099{
100 pte_t *pte;
101 extern int mem_init_done;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000102
103 if (mem_init_done) {
104 pte = (pte_t *)__get_free_page(GFP_KERNEL|__GFP_REPEAT|__GFP_ZERO);
105 } else {
Anton Blanchard10239732014-09-17 22:15:33 +1000106 pte = __va(memblock_alloc(PAGE_SIZE, PAGE_SIZE));
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000107 if (pte)
108 clear_page(pte);
109 }
110 return pte;
111}
112
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800113pgtable_t pte_alloc_one(struct mm_struct *mm, unsigned long address)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000114{
115 struct page *ptepage;
116
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800117 gfp_t flags = GFP_KERNEL | __GFP_REPEAT | __GFP_ZERO;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000118
119 ptepage = alloc_pages(flags, 0);
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800120 if (!ptepage)
121 return NULL;
Kirill A. Shutemov4f8049432013-11-14 14:31:38 -0800122 if (!pgtable_page_ctor(ptepage)) {
123 __free_page(ptepage);
124 return NULL;
125 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000126 return ptepage;
127}
128
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000129void __iomem *
130ioremap(phys_addr_t addr, unsigned long size)
131{
Benjamin Herrenschmidt1cdab552009-02-22 16:19:14 +0000132 return __ioremap_caller(addr, size, _PAGE_NO_CACHE | _PAGE_GUARDED,
133 __builtin_return_address(0));
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000134}
Olaf Hering920573b2006-03-14 21:21:11 +0100135EXPORT_SYMBOL(ioremap);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000136
137void __iomem *
Anton Blanchardbe135f42011-05-08 21:41:59 +0000138ioremap_wc(phys_addr_t addr, unsigned long size)
139{
140 return __ioremap_caller(addr, size, _PAGE_NO_CACHE,
141 __builtin_return_address(0));
142}
143EXPORT_SYMBOL(ioremap_wc);
144
145void __iomem *
Anton Blanchard40f1ce72011-05-08 21:43:47 +0000146ioremap_prot(phys_addr_t addr, unsigned long size, unsigned long flags)
Benjamin Herrenschmidt68a64352006-11-13 09:27:39 +1100147{
Benjamin Herrenschmidta1f242f2008-07-23 21:27:08 -0700148 /* writeable implies dirty for kernel addresses */
LEROY Christophea7b9f672015-01-19 17:04:38 +0100149 if ((flags & (_PAGE_RW | _PAGE_RO)) != _PAGE_RO)
Benjamin Herrenschmidta1f242f2008-07-23 21:27:08 -0700150 flags |= _PAGE_DIRTY | _PAGE_HWWRITE;
151
152 /* we don't want to let _PAGE_USER and _PAGE_EXEC leak out */
Benjamin Herrenschmidtea3cc332009-08-18 19:00:34 +0000153 flags &= ~(_PAGE_USER | _PAGE_EXEC);
Benjamin Herrenschmidta1f242f2008-07-23 21:27:08 -0700154
Benjamin Herrenschmidt55052ee2010-04-07 14:39:36 +1000155#ifdef _PAGE_BAP_SR
156 /* _PAGE_USER contains _PAGE_BAP_SR on BookE using the new PTE format
157 * which means that we just cleared supervisor access... oops ;-) This
158 * restores it
159 */
160 flags |= _PAGE_BAP_SR;
161#endif
162
Benjamin Herrenschmidt1cdab552009-02-22 16:19:14 +0000163 return __ioremap_caller(addr, size, flags, __builtin_return_address(0));
Benjamin Herrenschmidt68a64352006-11-13 09:27:39 +1100164}
Anton Blanchard40f1ce72011-05-08 21:43:47 +0000165EXPORT_SYMBOL(ioremap_prot);
Benjamin Herrenschmidt68a64352006-11-13 09:27:39 +1100166
167void __iomem *
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000168__ioremap(phys_addr_t addr, unsigned long size, unsigned long flags)
169{
Benjamin Herrenschmidt1cdab552009-02-22 16:19:14 +0000170 return __ioremap_caller(addr, size, flags, __builtin_return_address(0));
171}
172
173void __iomem *
174__ioremap_caller(phys_addr_t addr, unsigned long size, unsigned long flags,
175 void *caller)
176{
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000177 unsigned long v, i;
178 phys_addr_t p;
179 int err;
180
Benjamin Herrenschmidta1f242f2008-07-23 21:27:08 -0700181 /* Make sure we have the base flags */
182 if ((flags & _PAGE_PRESENT) == 0)
Benjamin Herrenschmidt8d1cf342009-03-19 19:34:08 +0000183 flags |= PAGE_KERNEL;
Benjamin Herrenschmidta1f242f2008-07-23 21:27:08 -0700184
185 /* Non-cacheable page cannot be coherent */
186 if (flags & _PAGE_NO_CACHE)
187 flags &= ~_PAGE_COHERENT;
188
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000189 /*
190 * Choose an address to map it to.
191 * Once the vmalloc system is running, we use it.
192 * Before then, we use space going down from ioremap_base
193 * (ioremap_bot records where we're up to).
194 */
195 p = addr & PAGE_MASK;
196 size = PAGE_ALIGN(addr + size) - p;
197
198 /*
199 * If the address lies within the first 16 MB, assume it's in ISA
200 * memory space
201 */
202 if (p < 16*1024*1024)
203 p += _ISA_MEM_BASE;
204
Anton Vorontsov01695a92008-12-17 10:09:10 +0000205#ifndef CONFIG_CRASH_DUMP
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000206 /*
207 * Don't allow anybody to remap normal RAM that we're using.
208 * mem_init() sets high_memory so only do the check after that.
209 */
Albert Herranzc5df7f72009-12-12 06:31:54 +0000210 if (mem_init_done && (p < virt_to_phys(high_memory)) &&
Yinghai Lu95f72d12010-07-12 14:36:09 +1000211 !(__allow_ioremap_reserved && memblock_is_region_reserved(p, size))) {
Joe Perchesa2234b42012-02-28 08:49:34 +0000212 printk("__ioremap(): phys addr 0x%llx is RAM lr %pf\n",
David Gibson37f01d62007-04-24 15:05:18 +1000213 (unsigned long long)p, __builtin_return_address(0));
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000214 return NULL;
215 }
Anton Vorontsov01695a92008-12-17 10:09:10 +0000216#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000217
218 if (size == 0)
219 return NULL;
220
221 /*
222 * Is it already mapped? Perhaps overlapped by a previous
223 * BAT mapping. If the whole area is mapped then we're done,
224 * otherwise remap it since we want to keep the virt addrs for
225 * each request contiguous.
226 *
227 * We make the assumption here that if the bottom and top
228 * of the range we want are mapped then it's mapped to the
229 * same virt address (and this is contiguous).
230 * -- Cort
231 */
232 if ((v = p_mapped_by_bats(p)) /*&& p_mapped_by_bats(p+size-1)*/ )
233 goto out;
234
235 if ((v = p_mapped_by_tlbcam(p)))
236 goto out;
237
238 if (mem_init_done) {
239 struct vm_struct *area;
Benjamin Herrenschmidt1cdab552009-02-22 16:19:14 +0000240 area = get_vm_area_caller(size, VM_IOREMAP, caller);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000241 if (area == 0)
242 return NULL;
Michael Ellerman7a9d1252010-11-28 18:26:36 +0000243 area->phys_addr = p;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000244 v = (unsigned long) area->addr;
245 } else {
246 v = (ioremap_bot -= size);
247 }
248
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000249 /*
250 * Should check if it is a candidate for a BAT mapping
251 */
252
253 err = 0;
254 for (i = 0; i < size && err == 0; i += PAGE_SIZE)
255 err = map_page(v+i, p+i, flags);
256 if (err) {
257 if (mem_init_done)
258 vunmap((void *)v);
259 return NULL;
260 }
261
262out:
263 return (void __iomem *) (v + ((unsigned long)addr & ~PAGE_MASK));
264}
Olaf Hering920573b2006-03-14 21:21:11 +0100265EXPORT_SYMBOL(__ioremap);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000266
267void iounmap(volatile void __iomem *addr)
268{
269 /*
270 * If mapped by BATs then there is nothing to do.
271 * Calling vfree() generates a benign warning.
272 */
273 if (v_mapped_by_bats((unsigned long)addr)) return;
274
275 if (addr > high_memory && (unsigned long) addr < ioremap_bot)
276 vunmap((void *) (PAGE_MASK & (unsigned long)addr));
277}
Olaf Hering920573b2006-03-14 21:21:11 +0100278EXPORT_SYMBOL(iounmap);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000279
Benjamin Herrenschmidt68a64352006-11-13 09:27:39 +1100280int map_page(unsigned long va, phys_addr_t pa, int flags)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000281{
282 pmd_t *pd;
283 pte_t *pg;
284 int err = -ENOMEM;
285
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000286 /* Use upper 10 bits of VA to index the first level map */
David Gibsond1953c82007-05-08 12:46:49 +1000287 pd = pmd_offset(pud_offset(pgd_offset_k(va), va), va);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000288 /* Use middle 10 bits of VA to index the second-level map */
Paul Mackerrase2f2e582005-10-31 14:40:03 +1100289 pg = pte_alloc_kernel(pd, va);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000290 if (pg != 0) {
291 err = 0;
Benjamin Herrenschmidt3be4e692007-04-12 15:30:21 +1000292 /* The PTE should never be already set nor present in the
293 * hash table
294 */
Anton Vorontsov7021d862008-12-29 06:40:35 +0000295 BUG_ON((pte_val(*pg) & (_PAGE_PRESENT | _PAGE_HASHPTE)) &&
296 flags);
Benjamin Herrenschmidt3be4e692007-04-12 15:30:21 +1000297 set_pte_at(&init_mm, va, pg, pfn_pte(pa >> PAGE_SHIFT,
298 __pgprot(flags)));
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000299 }
Scott Wood47ce8af2013-10-11 19:22:37 -0500300 smp_wmb();
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000301 return err;
302}
303
304/*
Albert Herranzde324002009-12-12 06:31:53 +0000305 * Map in a chunk of physical memory starting at start.
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000306 */
Albert Herranzde324002009-12-12 06:31:53 +0000307void __init __mapin_ram_chunk(unsigned long offset, unsigned long top)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000308{
Kumar Gala99c62dd72008-04-16 05:52:21 +1000309 unsigned long v, s, f;
310 phys_addr_t p;
Benjamin Herrenschmidtee4f2ea2007-04-12 15:30:22 +1000311 int ktext;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000312
Albert Herranzde324002009-12-12 06:31:53 +0000313 s = offset;
Dale Farnsworthccdcef72008-12-17 10:09:13 +0000314 v = PAGE_OFFSET + s;
Kumar Gala99c62dd72008-04-16 05:52:21 +1000315 p = memstart_addr + s;
Albert Herranzde324002009-12-12 06:31:53 +0000316 for (; s < top; s += PAGE_SIZE) {
Benjamin Herrenschmidtee4f2ea2007-04-12 15:30:22 +1000317 ktext = ((char *) v >= _stext && (char *) v < etext);
Benjamin Herrenschmidt8d1cf342009-03-19 19:34:08 +0000318 f = ktext ? PAGE_KERNEL_TEXT : PAGE_KERNEL;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000319 map_page(v, p, f);
Benjamin Herrenschmidtee4f2ea2007-04-12 15:30:22 +1000320#ifdef CONFIG_PPC_STD_MMU_32
321 if (ktext)
322 hash_preload(&init_mm, v, 0, 0x300);
323#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000324 v += PAGE_SIZE;
325 p += PAGE_SIZE;
326 }
327}
328
Albert Herranzde324002009-12-12 06:31:53 +0000329void __init mapin_ram(void)
330{
331 unsigned long s, top;
332
333#ifndef CONFIG_WII
334 top = total_lowmem;
335 s = mmu_mapin_ram(top);
336 __mapin_ram_chunk(s, top);
337#else
338 if (!wii_hole_size) {
339 s = mmu_mapin_ram(total_lowmem);
340 __mapin_ram_chunk(s, total_lowmem);
341 } else {
342 top = wii_hole_start;
343 s = mmu_mapin_ram(top);
344 __mapin_ram_chunk(s, top);
345
Yinghai Lu95f72d12010-07-12 14:36:09 +1000346 top = memblock_end_of_DRAM();
Albert Herranzde324002009-12-12 06:31:53 +0000347 s = wii_mmu_mapin_mem2(top);
348 __mapin_ram_chunk(s, top);
349 }
350#endif
351}
352
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000353/* Scan the real Linux page tables and return a PTE pointer for
354 * a virtual address in a context.
355 * Returns true (1) if PTE was found, zero otherwise. The pointer to
356 * the PTE pointer is unmodified if PTE is not found.
357 */
358int
Eugene Suroveginbab70a42006-03-28 10:13:12 -0800359get_pteptr(struct mm_struct *mm, unsigned long addr, pte_t **ptep, pmd_t **pmdp)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000360{
361 pgd_t *pgd;
David Gibsond1953c82007-05-08 12:46:49 +1000362 pud_t *pud;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000363 pmd_t *pmd;
364 pte_t *pte;
365 int retval = 0;
366
367 pgd = pgd_offset(mm, addr & PAGE_MASK);
368 if (pgd) {
David Gibsond1953c82007-05-08 12:46:49 +1000369 pud = pud_offset(pgd, addr & PAGE_MASK);
370 if (pud && pud_present(*pud)) {
371 pmd = pmd_offset(pud, addr & PAGE_MASK);
372 if (pmd_present(*pmd)) {
373 pte = pte_offset_map(pmd, addr & PAGE_MASK);
374 if (pte) {
375 retval = 1;
376 *ptep = pte;
377 if (pmdp)
378 *pmdp = pmd;
379 /* XXX caller needs to do pte_unmap, yuck */
380 }
381 }
382 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000383 }
384 return(retval);
385}
386
Benjamin Herrenschmidt88df6e92007-04-12 15:30:22 +1000387#ifdef CONFIG_DEBUG_PAGEALLOC
388
389static int __change_page_attr(struct page *page, pgprot_t prot)
390{
391 pte_t *kpte;
392 pmd_t *kpmd;
393 unsigned long address;
394
395 BUG_ON(PageHighMem(page));
396 address = (unsigned long)page_address(page);
397
398 if (v_mapped_by_bats(address) || v_mapped_by_tlbcam(address))
399 return 0;
400 if (!get_pteptr(&init_mm, address, &kpte, &kpmd))
401 return -EINVAL;
Benjamin Herrenschmidt50891452009-12-08 21:08:44 +0000402 __set_pte_at(&init_mm, address, kpte, mk_pte(page, prot), 0);
Benjamin Herrenschmidt88df6e92007-04-12 15:30:22 +1000403 wmb();
Benjamin Herrenschmidtf63837f2008-12-14 19:44:51 +0000404 flush_tlb_page(NULL, address);
Benjamin Herrenschmidt88df6e92007-04-12 15:30:22 +1000405 pte_unmap(kpte);
406
407 return 0;
408}
409
410/*
411 * Change the page attributes of an page in the linear mapping.
412 *
413 * THIS CONFLICTS WITH BAT MAPPINGS, DEBUG USE ONLY
414 */
415static int change_page_attr(struct page *page, int numpages, pgprot_t prot)
416{
417 int i, err = 0;
418 unsigned long flags;
419
420 local_irq_save(flags);
421 for (i = 0; i < numpages; i++, page++) {
422 err = __change_page_attr(page, prot);
423 if (err)
424 break;
425 }
426 local_irq_restore(flags);
427 return err;
428}
429
430
Joonsoo Kim031bc572014-12-12 16:55:52 -0800431void __kernel_map_pages(struct page *page, int numpages, int enable)
Benjamin Herrenschmidt88df6e92007-04-12 15:30:22 +1000432{
433 if (PageHighMem(page))
434 return;
435
436 change_page_attr(page, numpages, enable ? PAGE_KERNEL : __pgprot(0));
437}
438#endif /* CONFIG_DEBUG_PAGEALLOC */
Kumar Gala2c419bd2008-04-23 23:05:20 +1000439
440static int fixmaps;
Kumar Gala2c419bd2008-04-23 23:05:20 +1000441
442void __set_fixmap (enum fixed_addresses idx, phys_addr_t phys, pgprot_t flags)
443{
444 unsigned long address = __fix_to_virt(idx);
445
446 if (idx >= __end_of_fixed_addresses) {
447 BUG();
448 return;
449 }
450
David Gibson46a74172008-05-19 16:16:00 +1000451 map_page(address, phys, pgprot_val(flags));
Kumar Gala2c419bd2008-04-23 23:05:20 +1000452 fixmaps++;
453}
454
455void __this_fixmap_does_not_exist(void)
456{
457 WARN_ON(1);
458}