Files
linux-apfs/arch/x86/include/asm/boot.h
T

41 lines
997 B
C
Raw Normal View History

2008-10-22 22:26:29 -07:00
#ifndef _ASM_X86_BOOT_H
#define _ASM_X86_BOOT_H
2005-04-16 15:20:36 -07:00
2009-01-14 23:37:46 +03:00
#include <asm/pgtable_types.h>
#include <uapi/asm/boot.h>
/* Physical address where kernel should be loaded. */
#define LOAD_PHYSICAL_ADDR ((CONFIG_PHYSICAL_START \
+ (CONFIG_PHYSICAL_ALIGN - 1)) \
& ~(CONFIG_PHYSICAL_ALIGN - 1))
/* Minimum kernel alignment, as a power of two */
#ifdef CONFIG_X86_64
#define MIN_KERNEL_ALIGN_LG2 PMD_SHIFT
#else
2012-05-05 15:05:42 +00:00
#define MIN_KERNEL_ALIGN_LG2 (PAGE_SHIFT + THREAD_SIZE_ORDER)
#endif
#define MIN_KERNEL_ALIGN (_AC(1, UL) << MIN_KERNEL_ALIGN_LG2)
#if (CONFIG_PHYSICAL_ALIGN & (CONFIG_PHYSICAL_ALIGN-1)) || \
2010-04-21 15:23:44 +01:00
(CONFIG_PHYSICAL_ALIGN < MIN_KERNEL_ALIGN)
#error "Invalid value for CONFIG_PHYSICAL_ALIGN"
#endif
2009-01-14 23:37:46 +03:00
#ifdef CONFIG_KERNEL_BZIP2
2009-01-04 22:46:17 +01:00
#define BOOT_HEAP_SIZE 0x400000
2009-01-14 23:37:46 +03:00
#else /* !CONFIG_KERNEL_BZIP2 */
2009-01-04 22:46:17 +01:00
2011-01-12 17:01:24 -08:00
#define BOOT_HEAP_SIZE 0x8000
2009-01-04 22:46:17 +01:00
2009-01-14 23:37:46 +03:00
#endif /* !CONFIG_KERNEL_BZIP2 */
2009-01-04 22:46:17 +01:00
#ifdef CONFIG_X86_64
#define BOOT_STACK_SIZE 0x4000
#else
2008-04-08 12:54:30 +02:00
#define BOOT_STACK_SIZE 0x1000
#endif
2008-10-22 22:26:29 -07:00
#endif /* _ASM_X86_BOOT_H */