This reverts commit 9d6fd2c3e9
("Merge remote-tracking branch
'msm-4.4/tmp-510d0a3f' into msm-4.4"), because it breaks the
dump parsing tools due to kernel can be loaded anywhere in the memory
now and not fixed at linear mapping.
Change-Id: Id416f0a249d803442847d09ac47781147b0d0ee6
Signed-off-by: Trilok Soni <tsoni@codeaurora.org>
14 lines
214 B
C
14 lines
214 B
C
|
|
#ifndef __ASM_BOOT_H
|
|
#define __ASM_BOOT_H
|
|
|
|
#include <asm/sizes.h>
|
|
|
|
/*
|
|
* arm64 requires the DTB to be 8 byte aligned and
|
|
* not exceed 2MB in size.
|
|
*/
|
|
#define MIN_FDT_ALIGN 8
|
|
#define MAX_FDT_SIZE SZ_2M
|
|
|
|
#endif
|