diff options
-rw-r--r-- | arch/x86_64/boot/compressed/misc.c | 2 | ||||
-rw-r--r-- | arch/x86_64/kernel/head64.c | 7 | ||||
-rw-r--r-- | include/asm-x86_64/page.h | 1 |
3 files changed, 9 insertions, 1 deletions
diff --git a/arch/x86_64/boot/compressed/misc.c b/arch/x86_64/boot/compressed/misc.c index fee54dbf1749..fed1167159c3 100644 --- a/arch/x86_64/boot/compressed/misc.c +++ b/arch/x86_64/boot/compressed/misc.c | |||
@@ -358,7 +358,7 @@ asmlinkage void decompress_kernel(void *rmode, unsigned long heap, | |||
358 | insize = input_len; | 358 | insize = input_len; |
359 | inptr = 0; | 359 | inptr = 0; |
360 | 360 | ||
361 | if ((ulg)output & 0x1fffffUL) | 361 | if ((ulg)output & (__KERNEL_ALIGN - 1)) |
362 | error("Destination address not 2M aligned"); | 362 | error("Destination address not 2M aligned"); |
363 | if ((ulg)output >= 0xffffffffffUL) | 363 | if ((ulg)output >= 0xffffffffffUL) |
364 | error("Destination address too large"); | 364 | error("Destination address too large"); |
diff --git a/arch/x86_64/kernel/head64.c b/arch/x86_64/kernel/head64.c index 6c34bdd22e26..213d90e04755 100644 --- a/arch/x86_64/kernel/head64.c +++ b/arch/x86_64/kernel/head64.c | |||
@@ -62,6 +62,13 @@ void __init x86_64_start_kernel(char * real_mode_data) | |||
62 | { | 62 | { |
63 | int i; | 63 | int i; |
64 | 64 | ||
65 | /* | ||
66 | * Make sure kernel is aligned to 2MB address. Catching it at compile | ||
67 | * time is better. Change your config file and compile the kernel | ||
68 | * for a 2MB aligned address (CONFIG_PHYSICAL_START) | ||
69 | */ | ||
70 | BUILD_BUG_ON(CONFIG_PHYSICAL_START & (__KERNEL_ALIGN - 1)); | ||
71 | |||
65 | /* clear bss before set_intr_gate with early_idt_handler */ | 72 | /* clear bss before set_intr_gate with early_idt_handler */ |
66 | clear_bss(); | 73 | clear_bss(); |
67 | 74 | ||
diff --git a/include/asm-x86_64/page.h b/include/asm-x86_64/page.h index 40a24d0df090..b17fc16ec2eb 100644 --- a/include/asm-x86_64/page.h +++ b/include/asm-x86_64/page.h | |||
@@ -78,6 +78,7 @@ extern unsigned long phys_base; | |||
78 | #endif /* !__ASSEMBLY__ */ | 78 | #endif /* !__ASSEMBLY__ */ |
79 | 79 | ||
80 | #define __PHYSICAL_START CONFIG_PHYSICAL_START | 80 | #define __PHYSICAL_START CONFIG_PHYSICAL_START |
81 | #define __KERNEL_ALIGN 0x200000 | ||
81 | #define __START_KERNEL (__START_KERNEL_map + __PHYSICAL_START) | 82 | #define __START_KERNEL (__START_KERNEL_map + __PHYSICAL_START) |
82 | #define __START_KERNEL_map 0xffffffff80000000 | 83 | #define __START_KERNEL_map 0xffffffff80000000 |
83 | #define __PAGE_OFFSET 0xffff810000000000 | 84 | #define __PAGE_OFFSET 0xffff810000000000 |