blob: 6a4789d57e6cfa95e638117f3c4addbbd10729c8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fixmap.h: compile-time virtual memory allocation
3 *
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
7 *
8 * Copyright (C) 1998 Ingo Molnar
9 */
10
Ingo Molnar3ec96782008-04-25 18:25:25 +020011#ifndef _ASM_FIXMAP_64_H
12#define _ASM_FIXMAP_64_H
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/kernel.h>
Yinghai Luf34fa822008-07-09 20:16:36 -070015#include <asm/acpi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <asm/apicdef.h>
17#include <asm/page.h>
18#include <asm/vsyscall.h>
Huang, Ying5b836832008-01-30 13:31:19 +010019#include <asm/efi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21/*
22 * Here we define all the compile-time 'special' virtual
23 * addresses. The point is to have a constant address at
24 * compile time, but to set the physical address only
25 * in the boot process.
26 *
Jiri Kosinabdb345a2007-07-21 17:11:21 +020027 * These 'compile-time allocated' memory buffers are
28 * fixed-size 4k pages (or larger if used with an increment
29 * higher than 1). Use set_fixmap(idx,phys) to associate
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 * physical memory with fixmap indices.
31 *
32 * TLB entries of such buffers will not be flushed across
33 * task switches.
34 */
35
36enum fixed_addresses {
37 VSYSCALL_LAST_PAGE,
Joe Perchesdca13fb2008-03-23 01:02:10 -070038 VSYSCALL_FIRST_PAGE = VSYSCALL_LAST_PAGE
39 + ((VSYSCALL_END-VSYSCALL_START) >> PAGE_SHIFT) - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 VSYSCALL_HPET,
Yinghai Lu18a8bd92007-07-15 23:37:59 -070041 FIX_DBGP_BASE,
42 FIX_EARLYCON_MEM_BASE,
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 FIX_HPET_BASE,
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 FIX_APIC_BASE, /* local (CPU) APIC) -- required for SMP or not */
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 FIX_IO_APIC_BASE_0,
Joe Perchesdca13fb2008-03-23 01:02:10 -070046 FIX_IO_APIC_BASE_END = FIX_IO_APIC_BASE_0 + MAX_IO_APICS - 1,
Huang, Ying5b836832008-01-30 13:31:19 +010047 FIX_EFI_IO_MAP_LAST_PAGE,
Joe Perchesdca13fb2008-03-23 01:02:10 -070048 FIX_EFI_IO_MAP_FIRST_PAGE = FIX_EFI_IO_MAP_LAST_PAGE
49 + MAX_EFI_IO_PAGES - 1,
Jeremy Fitzhardinge40801172008-06-25 00:19:17 -040050#ifdef CONFIG_PARAVIRT
51 FIX_PARAVIRT_BOOTMAP,
52#endif
Yinghai Luf34fa822008-07-09 20:16:36 -070053#ifdef CONFIG_ACPI
54 FIX_ACPI_BEGIN,
55 FIX_ACPI_END = FIX_ACPI_BEGIN + FIX_ACPI_PAGES - 1,
56#endif
Bernhard Kaindlf212ec42008-01-30 13:34:11 +010057#ifdef CONFIG_PROVIDE_OHCI1394_DMA_INIT
58 FIX_OHCI1394_BASE,
59#endif
Jeremy Fitzhardinge4583ed52008-06-25 00:19:03 -040060 __end_of_permanent_fixed_addresses,
61 /*
62 * 256 temporary boot-time mappings, used by early_ioremap(),
63 * before ioremap() is functional.
64 *
65 * We round it up to the next 512 pages boundary so that we
66 * can have a single pgd entry and a single pte table:
67 */
68#define NR_FIX_BTMAPS 64
69#define FIX_BTMAPS_NESTING 4
70 FIX_BTMAP_END = __end_of_permanent_fixed_addresses + 512 -
71 (__end_of_permanent_fixed_addresses & 511),
72 FIX_BTMAP_BEGIN = FIX_BTMAP_END + NR_FIX_BTMAPS*FIX_BTMAPS_NESTING - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 __end_of_fixed_addresses
74};
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#define FIXADDR_TOP (VSYSCALL_END-PAGE_SIZE)
77#define FIXADDR_SIZE (__end_of_fixed_addresses << PAGE_SHIFT)
78#define FIXADDR_START (FIXADDR_TOP - FIXADDR_SIZE)
79
80/* Only covers 32bit vsyscalls currently. Need another set for 64bit. */
81#define FIXADDR_USER_START ((unsigned long)VSYSCALL32_VSYSCALL)
82#define FIXADDR_USER_END (FIXADDR_USER_START + PAGE_SIZE)
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#endif