[PATCH v15 07/16] arm64: add image head flag definitions
From: mark.rutland@arm.com (Mark Rutland)
Date: 2018-10-09 15:04:13
Also in:
kexec, lkml
On Tue, Oct 02, 2018 at 04:59:40PM +0900, AKASHI Takahiro wrote:
Hi Mark, On Mon, Oct 01, 2018 at 01:52:26PM +0100, Mark Rutland wrote:quoted
On Fri, Sep 28, 2018 at 03:48:32PM +0900, AKASHI Takahiro wrote:quoted
Those image head's flags will be used later by kexec_file loader. Signed-off-by: AKASHI Takahiro <redacted> Cc: Catalin Marinas <catalin.marinas@arm.com> Cc: Will Deacon <redacted> Acked-by: James Morse <james.morse@arm.com> --- arch/arm64/include/asm/boot.h | 15 +++++++++++++++ arch/arm64/kernel/head.S | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-)diff --git a/arch/arm64/include/asm/boot.h b/arch/arm64/include/asm/boot.h index 355e552a9175..0bab7eed3012 100644 --- a/arch/arm64/include/asm/boot.h +++ b/arch/arm64/include/asm/boot.h@@ -5,6 +5,21 @@ #include <asm/sizes.h> +#define ARM64_MAGIC "ARM\x64" + +#define HEAD_FLAG_BE_SHIFT 0 +#define HEAD_FLAG_PAGE_SIZE_SHIFT 1 +#define HEAD_FLAG_BE_MASK 0x1 +#define HEAD_FLAG_PAGE_SIZE_MASK 0x3 + +#define HEAD_FLAG_BE 1These already exist in some form in arch/arm64/kernel/image.h; can we please factor those out rather than duplicating them?Sure.quoted
I'd be happy if you'd update image.h to use the new HEAD_FLAG_* names, and removed the old definitions.I want to make sure two things; 1. Do you assume all the existing __HEAD_FLAG_xyz's NOT be renamed (say, to HEAD_FLAG_xyz)?
I'm perfectly happy for them to be renamed, I just don't want duplicate definitions. Let's rename them to ARM64_IMAGE_FLAG_<foo>, and place them in a new header, arch/arm64/include/asm/image.h, which arch/arm64/kernel/image.h can include and make use of.
2. Do you mind removing this check in image.h? (we also need to manage 'CONFIG_EFI' part of image.h.)
What exactly do we need from that? AFAICT that's all linker script stuff that shouldn't matter for kexec. Thanks, Mark.