From: Russell King - ARM Linux admin <linux@armlinux.org.uk>
To: "Łukasz Stelmach" <l.stelmach@samsung.com>
Cc: Kees Cook <keescook@chromium.org>,
Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>,
Masahiro Yamada <masahiroy@kernel.org>,
Nick Desaulniers <ndesaulniers@google.com>,
linux-kernel@vger.kernel.org,
AKASHI Takahiro <takahiro.akashi@linaro.org>,
Ben Dooks <ben-linux@fluff.org>,
Thomas Gleixner <tglx@linutronix.de>,
Enrico Weigelt <info@metux.net>, Ingo Molnar <mingo@kernel.org>,
linux-arm-kernel@lists.infradead.org,
Marek Szyprowski <m.szyprowski@samsung.com>
Subject: Re: [PATCH 3/5] arm: decompressor: define a new zImage tag
Date: Mon, 1 Jun 2020 15:55:02 +0100 [thread overview]
Message-ID: <20200601145502.GJ1551@shell.armlinux.org.uk> (raw)
In-Reply-To: <20200601142754.26139-4-l.stelmach@samsung.com>
On Mon, Jun 01, 2020 at 04:27:52PM +0200, Łukasz Stelmach wrote:
> Add DCSZ tag which holds dynamic memory (stack, bss, malloc pool)
> requirements of the decompressor code.
Why do we need to know the stack and BSS size, when the userspace
kexec tool doesn't need to know this to perform the same function.
>
> Signed-off-by: Łukasz Stelmach <l.stelmach@samsung.com>
> ---
> arch/arm/boot/compressed/vmlinux.lds.S | 9 ++++++++-
> arch/arm/include/asm/image.h | 13 +++++++++++++
> 2 files changed, 21 insertions(+), 1 deletion(-)
>
> diff --git a/arch/arm/boot/compressed/vmlinux.lds.S b/arch/arm/boot/compressed/vmlinux.lds.S
> index 308e9cd6a897..dcfdb3209c90 100644
> --- a/arch/arm/boot/compressed/vmlinux.lds.S
> +++ b/arch/arm/boot/compressed/vmlinux.lds.S
> @@ -39,6 +39,11 @@ SECTIONS
> LONG(ARM_ZIMAGE_MAGIC3)
> LONG(ZIMAGE_MAGIC(__piggy_size_addr - _start))
> LONG(ZIMAGE_MAGIC(_kernel_bss_size))
> + LONG(ZIMAGE_MAGIC(5))
> + LONG(ARM_ZIMAGE_MAGIC4)
> + LONG(ZIMAGE_MAGIC(_end - __bss_start))
> + LONG(ZIMAGE_MAGIC(_stack_end - _stack_start))
> + LONG(ZIMAGE_MAGIC(_malloc_size))
> LONG(0)
> _table_end = .;
> }
> @@ -108,10 +113,12 @@ SECTIONS
> . = BSS_START;
> __bss_start = .;
> .bss : { *(.bss) }
> + . = ALIGN(8); /* the stack must be 64-bit aligned and adjoin bss */
> _end = .;
>
> - . = ALIGN(8); /* the stack must be 64-bit aligned */
> + _stack_start = .;
> .stack : { *(.stack) }
> + _stack_end = .;
>
> PROVIDE(__pecoff_data_size = ALIGN(512) - ADDR(.data));
> PROVIDE(__pecoff_end = ALIGN(512));
> diff --git a/arch/arm/include/asm/image.h b/arch/arm/include/asm/image.h
> index d5c18a0f6a34..624438740f23 100644
> --- a/arch/arm/include/asm/image.h
> +++ b/arch/arm/include/asm/image.h
> @@ -15,6 +15,7 @@
> #define ARM_ZIMAGE_MAGIC1 ZIMAGE_MAGIC(0x016f2818)
> #define ARM_ZIMAGE_MAGIC2 (0x45454545)
> #define ARM_ZIMAGE_MAGIC3 ZIMAGE_MAGIC(0x5a534c4b)
> +#define ARM_ZIMAGE_MAGIC4 ZIMAGE_MAGIC(0x5a534344)
>
> #ifndef __ASSEMBLY__
>
> @@ -43,6 +44,18 @@ struct arm_zimage_tag {
> } u;
> };
>
> +struct arm_zimage_tag_dc {
> + struct tag_header hdr;
> + union {
> +#define ZIMAGE_TAG_DECOMP_SIZE ARM_ZIMAGE_MAGIC4
> + struct zimage_decomp_size {
> + __le32 bss_size;
> + __le32 stack_size;
> + __le32 malloc_size;
> + } decomp_size;
> + } u;
> +};
> +
> #endif /* __ASSEMBLY__ */
>
> #endif /* __ASM_IMAGE_H */
> --
> 2.26.2
>
>
--
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTC for 0.8m (est. 1762m) line in suburbia: sync at 13.1Mbps down 424kbps up
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2020-06-01 14:55 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <CGME20200601142806eucas1p2680c5625411e7a695d8469760a926520@eucas1p2.samsung.com>
2020-06-01 14:27 ` [PATCH 0/5] kexec_file_load() for arm Łukasz Stelmach
2020-06-01 14:27 ` [PATCH 1/5] arm: decompressor: set malloc pool size for the decompressor Łukasz Stelmach
2020-06-01 14:46 ` Russell King - ARM Linux admin
2020-06-01 14:56 ` Lukasz Stelmach
2020-06-01 15:10 ` Russell King - ARM Linux admin
2020-06-01 16:54 ` Lukasz Stelmach
2020-06-01 14:27 ` [PATCH 2/5] arm: add image header definitions Łukasz Stelmach
2020-06-01 14:27 ` [PATCH 3/5] arm: decompressor: define a new zImage tag Łukasz Stelmach
2020-06-01 14:55 ` Russell King - ARM Linux admin [this message]
2020-06-01 16:19 ` Lukasz Stelmach
2020-06-01 18:25 ` Russell King - ARM Linux admin
2020-06-01 20:27 ` Lukasz Stelmach
2020-06-01 20:41 ` Russell King - ARM Linux admin
2020-06-02 16:17 ` Lukasz Stelmach
2020-06-01 14:27 ` [PATCH 4/5] arm: Add kexec_image_info Łukasz Stelmach
2020-06-01 14:56 ` Russell King - ARM Linux admin
2020-06-01 16:30 ` Lukasz Stelmach
2020-06-01 14:27 ` [PATCH 5/5] arm: kexec_file: load zImage or uImage, initrd and dtb Łukasz Stelmach
2020-06-01 15:07 ` Russell King - ARM Linux admin
2020-06-01 15:14 ` Russell King - ARM Linux admin
2020-06-01 16:46 ` Lukasz Stelmach
2020-06-01 18:48 ` Lukasz Stelmach
2020-06-02 16:17 ` [PATCH v2 0/5] kexec_file_load() for arm Łukasz Stelmach
2020-06-02 16:17 ` [PATCH v2 1/5] arm: decompressor: set malloc pool size for the decompressor Łukasz Stelmach
2020-06-02 16:17 ` [PATCH v2 2/5] arm: add image header definitions Łukasz Stelmach
2020-06-02 16:17 ` [PATCH v2 3/5] arm: decompressor: define a new zImage tag Łukasz Stelmach
2020-06-02 16:17 ` [PATCH v2 4/5] arm: Add kexec_image_info Łukasz Stelmach
2020-06-02 16:17 ` [PATCH v2 5/5] arm: kexec_file: load zImage or uImage, initrd and dtb Łukasz Stelmach
2020-06-11 10:37 ` [PATCH 0/5] kexec_file_load() for arm Dave Young
2020-09-30 18:34 ` [PATCH v3 0/4] " Łukasz Stelmach
2020-09-30 18:34 ` [PATCH v3 1/4] arm: add image header definitions Łukasz Stelmach
2020-09-30 18:34 ` [PATCH v3 2/4] arm: decompressor: define a new zImage tag Łukasz Stelmach
2020-09-30 18:34 ` [PATCH v3 3/4] arm: Add kexec_image_info Łukasz Stelmach
2020-09-30 18:34 ` [PATCH v3 4/4] arm: kexec_file: load zImage or uImage, initrd and dtb Łukasz Stelmach
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200601145502.GJ1551@shell.armlinux.org.uk \
--to=linux@armlinux.org.uk \
--cc=b.zolnierkie@samsung.com \
--cc=ben-linux@fluff.org \
--cc=info@metux.net \
--cc=keescook@chromium.org \
--cc=l.stelmach@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=m.szyprowski@samsung.com \
--cc=masahiroy@kernel.org \
--cc=mingo@kernel.org \
--cc=ndesaulniers@google.com \
--cc=takahiro.akashi@linaro.org \
--cc=tglx@linutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).