blob: 8be740977db8eb3a4d82c8871830556c06850de4 [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
H. Peter Anvin1965aae2008-10-22 22:26:29 -070011#ifndef _ASM_X86_FIXMAP_64_H
12#define _ASM_X86_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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20/*
21 * Here we define all the compile-time 'special' virtual
22 * addresses. The point is to have a constant address at
23 * compile time, but to set the physical address only
24 * in the boot process.
25 *
Jiri Kosinabdb345a2007-07-21 17:11:21 +020026 * These 'compile-time allocated' memory buffers are
27 * fixed-size 4k pages (or larger if used with an increment
28 * higher than 1). Use set_fixmap(idx,phys) to associate
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 * physical memory with fixmap indices.
30 *
31 * TLB entries of such buffers will not be flushed across
32 * task switches.
33 */
34
35enum fixed_addresses {
36 VSYSCALL_LAST_PAGE,
Joe Perchesdca13fb2008-03-23 01:02:10 -070037 VSYSCALL_FIRST_PAGE = VSYSCALL_LAST_PAGE
38 + ((VSYSCALL_END-VSYSCALL_START) >> PAGE_SHIFT) - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 VSYSCALL_HPET,
Yinghai Lu18a8bd92007-07-15 23:37:59 -070040 FIX_DBGP_BASE,
41 FIX_EARLYCON_MEM_BASE,
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 FIX_APIC_BASE, /* local (CPU) APIC) -- required for SMP or not */
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 FIX_IO_APIC_BASE_0,
Joe Perchesdca13fb2008-03-23 01:02:10 -070044 FIX_IO_APIC_BASE_END = FIX_IO_APIC_BASE_0 + MAX_IO_APICS - 1,
Jeremy Fitzhardinge40801172008-06-25 00:19:17 -040045#ifdef CONFIG_PARAVIRT
46 FIX_PARAVIRT_BOOTMAP,
47#endif
Jan Beulich9f8305f2008-08-29 13:14:30 +010048 __end_of_permanent_fixed_addresses,
Yinghai Luf34fa822008-07-09 20:16:36 -070049#ifdef CONFIG_ACPI
50 FIX_ACPI_BEGIN,
51 FIX_ACPI_END = FIX_ACPI_BEGIN + FIX_ACPI_PAGES - 1,
52#endif
Bernhard Kaindlf212ec42008-01-30 13:34:11 +010053#ifdef CONFIG_PROVIDE_OHCI1394_DMA_INIT
54 FIX_OHCI1394_BASE,
55#endif
Jeremy Fitzhardinge4583ed52008-06-25 00:19:03 -040056 /*
57 * 256 temporary boot-time mappings, used by early_ioremap(),
58 * before ioremap() is functional.
59 *
Jan Beulich9f8305f2008-08-29 13:14:30 +010060 * We round it up to the next 256 pages boundary so that we
Jeremy Fitzhardinge4583ed52008-06-25 00:19:03 -040061 * can have a single pgd entry and a single pte table:
62 */
63#define NR_FIX_BTMAPS 64
Yinghai Luc1a2f4b2008-09-14 02:33:12 -070064#define FIX_BTMAPS_SLOTS 4
Jan Beulich9f8305f2008-08-29 13:14:30 +010065 FIX_BTMAP_END = __end_of_permanent_fixed_addresses + 256 -
66 (__end_of_permanent_fixed_addresses & 255),
Yinghai Luc1a2f4b2008-09-14 02:33:12 -070067 FIX_BTMAP_BEGIN = FIX_BTMAP_END + NR_FIX_BTMAPS*FIX_BTMAPS_SLOTS - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 __end_of_fixed_addresses
69};
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#define FIXADDR_TOP (VSYSCALL_END-PAGE_SIZE)
72#define FIXADDR_SIZE (__end_of_fixed_addresses << PAGE_SHIFT)
73#define FIXADDR_START (FIXADDR_TOP - FIXADDR_SIZE)
74
75/* Only covers 32bit vsyscalls currently. Need another set for 64bit. */
76#define FIXADDR_USER_START ((unsigned long)VSYSCALL32_VSYSCALL)
77#define FIXADDR_USER_END (FIXADDR_USER_START + PAGE_SIZE)
78
H. Peter Anvin1965aae2008-10-22 22:26:29 -070079#endif /* _ASM_X86_FIXMAP_64_H */