mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: Barebox List <barebox@lists.infradead.org>
Subject: [PATCH 11/16] ARM: mxs: imx23-evk: Switch to multi image support
Date: Wed, 18 Sep 2019 09:54:16 +0200	[thread overview]
Message-ID: <20190918075421.20456-12-s.hauer@pengutronix.de> (raw)
In-Reply-To: <20190918075421.20456-1-s.hauer@pengutronix.de>

Build the i.MX23 EVK as multi image.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
 arch/arm/boards/freescale-mx23-evk/lowlevel.c | 2 +-
 arch/arm/mach-mxs/Kconfig                     | 1 +
 images/Makefile.mxs                           | 4 ++++
 3 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/arch/arm/boards/freescale-mx23-evk/lowlevel.c b/arch/arm/boards/freescale-mx23-evk/lowlevel.c
index 2321a469ab..99e08d88c7 100644
--- a/arch/arm/boards/freescale-mx23-evk/lowlevel.c
+++ b/arch/arm/boards/freescale-mx23-evk/lowlevel.c
@@ -5,7 +5,7 @@
 #include <asm/barebox-arm.h>
 #include <mach/imx23-regs.h>
 
-void __naked barebox_arm_reset_vector(uint32_t r0, uint32_t r1, uint32_t r2)
+ENTRY_FUNCTION(start_imx23_evk, r0, r1, r2)
 {
 	arm_cpu_lowlevel_init();
 	barebox_arm_entry(IMX_MEMORY_BASE, SZ_32M, (void *)MACH_TYPE_MX23EVK);
diff --git a/arch/arm/mach-mxs/Kconfig b/arch/arm/mach-mxs/Kconfig
index 2409c53dd7..fd6b5929a3 100644
--- a/arch/arm/mach-mxs/Kconfig
+++ b/arch/arm/mach-mxs/Kconfig
@@ -34,6 +34,7 @@ choice
 
 config MACH_MX23EVK
 	bool "mx23-evk"
+	select HAVE_PBL_MULTI_IMAGES
 	help
 	  Say Y here if you are using the Freescale i.MX23-EVK board
 
diff --git a/images/Makefile.mxs b/images/Makefile.mxs
index b230c02562..4c69c347fb 100644
--- a/images/Makefile.mxs
+++ b/images/Makefile.mxs
@@ -68,3 +68,7 @@ image-$(CONFIG_MACH_IMX233_OLINUXINO) += barebox-olinuxino-imx23-2nd.img
 pblb-$(CONFIG_MACH_CFA10036) += start_cfa10036
 FILE_barebox-crystalfonts-cfa10036-2nd.img = start_cfa10036.pblb
 image-$(CONFIG_MACH_CFA10036) += barebox-crystalfonts-cfa10036-2nd.img
+
+pblb-$(CONFIG_MACH_MX23EVK) += start_imx23_evk
+FILE_barebox-freescale-mx23-evk-2nd.img = start_imx23_evk.pblb
+image-$(CONFIG_MACH_MX23EVK) += barebox-freescale-mx23-evk-2nd.img
-- 
2.23.0


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

  parent reply	other threads:[~2019-09-18  7:54 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-09-18  7:54 [PATCH 00/16] ARM: mxs: full " Sascha Hauer
2019-09-18  7:54 ` [PATCH 01/16] ARM: start: Allow to pass machine type as boarddata Sascha Hauer
2019-09-18  7:54 ` [PATCH 02/16] ARM: tx28: Pass and check machine type Sascha Hauer
2019-09-18  7:54 ` [PATCH 03/16] ARM: tx28: Make locally used function static Sascha Hauer
2019-09-18  7:54 ` [PATCH 04/16] ARM: duckbill: Check machine type in initcalls Sascha Hauer
2019-09-18  7:54 ` [PATCH 05/16] ARM: Freescale mx28evk: " Sascha Hauer
2019-09-18  7:54 ` [PATCH 06/16] ARM: i.MX23 olinuxino: " Sascha Hauer
2019-09-18  7:54 ` [PATCH 07/16] ARM: Crytalfonts cfa10036: " Sascha Hauer
2019-09-18  7:54 ` [PATCH 08/16] ARM: i.MX23 Chumby: " Sascha Hauer
2019-09-18  7:54 ` [PATCH 09/16] ARM: Freescale i.MX23 evk: " Sascha Hauer
2019-09-18  7:54 ` [PATCH 10/16] ARM: mxs: cfa10036: Switch to multi image support Sascha Hauer
2019-09-18  7:54 ` Sascha Hauer [this message]
2019-09-18  7:54 ` [PATCH 12/16] ARM: mxs: chumby: " Sascha Hauer
2019-09-18  7:54 ` [PATCH 13/16] ARM: mxs: Move HAVE_PBL_MULTI_IMAGES up to ARCH Sascha Hauer
2019-09-18  7:54 ` [PATCH 14/16] ARM: mxs: Allow to compile all boards for a SoC together Sascha Hauer
2019-09-18  7:54 ` [PATCH 15/16] ARM: add common i.MX28 defconfig file Sascha Hauer
2019-09-18  7:54 ` [PATCH 16/16] ARM: add common i.MX23 " Sascha Hauer

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=20190918075421.20456-12-s.hauer@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    /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