public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Tom Rini <trini@konsulko.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 2/2] armv8: make SPL exception vectors optional
Date: Wed, 25 Jul 2018 11:23:58 -0400	[thread overview]
Message-ID: <20180725152358.GU11755@bill-the-cat> (raw)
In-Reply-To: <20180724235701.29811-3-andre.przywara@arm.com>

On Wed, Jul 25, 2018 at 12:57:01AM +0100, Andre Przywara wrote:

> Even though the exception vector table is a fundamental part of the ARM
> architecture, U-Boot mostly does not make real use of it, except when
> crash dumping. But having it in takes up quite some space, partly due to
> the architectural alignment requirement of 2KB. Since we don't take special
> care of that, the compiler adds a more or less random amount of padding
> space, which increases the image size quite a bit, especially for the SPL.
> 
> On a typical Allwinner build this is around 1.5KB of padding, plus 1KB
> for the vector table (mostly padding space again), then some extra code
> to do the actual handling. This amounts to almost 10% of the maximum image
> size, which is quite a lot for a pure debugging feature.
> 
> Add a Kconfig symbol to allow the exception vector table to be left out
> of the build for the SPL.
> For now this is "default y" for everyone, but specific defconfigs,
> platforms or .config files can opt out here at will, to mitigate the code
> size pressure we see for some SPLs.
> 
> Signed-off-by: Andre Przywara <andre.przywara@arm.com>
> ---
>  arch/arm/cpu/armv8/Kconfig  | 11 +++++++++++
>  arch/arm/cpu/armv8/Makefile |  4 ++++
>  arch/arm/cpu/armv8/start.S  | 19 +++++++++++++++----
>  3 files changed, 30 insertions(+), 4 deletions(-)
> 
> diff --git a/arch/arm/cpu/armv8/Kconfig b/arch/arm/cpu/armv8/Kconfig
> index 22d2f29548..bd1e759c37 100644
> --- a/arch/arm/cpu/armv8/Kconfig
> +++ b/arch/arm/cpu/armv8/Kconfig
> @@ -1,5 +1,16 @@
>  if ARM64
>  
> +config ARMV8_SPL_EXCEPTION_VECTORS
> +	bool "Install crash dump exception vectors"
> +	depends on SPL
> +	default y
> +	help
> +	  The default exception vector table is only used for the crash
> +	  dump, but still takes quite a lot of space in the image size.
> +
> +	  Say N here if you are running out of code space in the image
> +	  and want to save some space at the cost of less debugging info.
> +
>  config ARMV8_MULTIENTRY
>          bool "Enable multiple CPUs to enter into U-Boot"
>  
> diff --git a/arch/arm/cpu/armv8/Makefile b/arch/arm/cpu/armv8/Makefile
> index d1d4ffecfd..52c8daa049 100644
> --- a/arch/arm/cpu/armv8/Makefile
> +++ b/arch/arm/cpu/armv8/Makefile
> @@ -10,7 +10,11 @@ ifndef CONFIG_$(SPL_TPL_)TIMER
>  obj-$(CONFIG_SYS_ARCH_TIMER) += generic_timer.o
>  endif
>  obj-y	+= cache_v8.o
> +ifdef CONFIG_SPL_BUILD
> +obj-$(CONFIG_ARMV8_SPL_EXCEPTION_VECTORS) += exceptions.o
> +else
>  obj-y	+= exceptions.o
> +endif

I _think_ we can make the code parts of this read better (and make use
of CONFIG_IS_ENABLED() if we add CONFIG_ARMV8_EXCEPTION_VECTORS and
don't allow it to be unselected (ie no text on the bool line).

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20180725/5f40ed5e/attachment.sig>

  reply	other threads:[~2018-07-25 15:23 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-24 23:56 [U-Boot] [PATCH 0/2] armv8: reduce exception handling code size Andre Przywara
2018-07-24 23:57 ` [U-Boot] [PATCH 1/2] armv8: Reduce exception handling code Andre Przywara
2018-08-04 23:40   ` [U-Boot] [U-Boot,1/2] " Tom Rini
2018-07-24 23:57 ` [U-Boot] [PATCH 2/2] armv8: make SPL exception vectors optional Andre Przywara
2018-07-25 15:23   ` Tom Rini [this message]
2018-08-04 23:40   ` [U-Boot] [U-Boot, " Tom Rini

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=20180725152358.GU11755@bill-the-cat \
    --to=trini@konsulko.com \
    --cc=u-boot@lists.denx.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