From: Angelo Dureghello <angelo@sysam.it>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v3 08/11] m68k: enabling long jumps on mcf54x5 SoCs
Date: Sun, 14 Oct 2018 00:34:36 +0200 [thread overview]
Message-ID: <20181013223439.31998-8-angelo@sysam.it> (raw)
In-Reply-To: <20181013223439.31998-1-angelo@sysam.it>
Growing of binary size asks for long assembly jumps.
Signed-off-by: Angelo Dureghello <angelo@sysam.it>
---
Changes for v2:
- new patch
Changes for v3:
- none
---
arch/m68k/cpu/mcf547x_8x/start.S | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/arch/m68k/cpu/mcf547x_8x/start.S b/arch/m68k/cpu/mcf547x_8x/start.S
index 7cb5db7ff0..4dd57bf39c 100644
--- a/arch/m68k/cpu/mcf547x_8x/start.S
+++ b/arch/m68k/cpu/mcf547x_8x/start.S
@@ -131,7 +131,8 @@ _start:
* then (and always) gd struct space will be reserved
*/
move.l %sp, -(%sp)
- bsr board_init_f_alloc_reserve
+ move.l #board_init_f_alloc_reserve, %a1
+ jsr (%a1)
/* update stack and frame-pointers */
move.l %d0, %sp
@@ -139,7 +140,8 @@ _start:
/* initialize reserved area */
move.l %d0, -(%sp)
- bsr board_init_f_init_reserve
+ move.l #board_init_f_init_reserve, %a1
+ jsr (%a1)
/* run low-level CPU init code (from flash) */
jbsr cpu_init_f
--
2.19.1
next prev parent reply other threads:[~2018-10-13 22:34 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-10-13 22:34 [U-Boot] [PATCH v3 01/11] m68k: add basic set of devicetrees Angelo Dureghello
2018-10-13 22:34 ` [U-Boot] [PATCH v3 02/11] drivers: spi: cf_spi: add Kconfig option Angelo Dureghello
2018-10-19 3:26 ` Simon Glass
2018-10-13 22:34 ` [U-Boot] [PATCH v3 03/11] drivers: spi: cf_spi: convert to driver model Angelo Dureghello
2018-10-19 3:26 ` Simon Glass
2018-10-23 11:28 ` Jagan Teki
2018-12-04 21:03 ` Angelo Dureghello
2018-12-10 20:47 ` Angelo Dureghello
2018-10-13 22:34 ` [U-Boot] [PATCH v3 04/11] drivers: serial: mcfuart: add DT support Angelo Dureghello
2018-10-19 3:26 ` Simon Glass
2018-10-13 22:34 ` [U-Boot] [PATCH v3 05/11] drivers: serial: mcfuart: add Kconfig option Angelo Dureghello
2018-10-19 3:26 ` Simon Glass
2018-10-13 22:34 ` [U-Boot] [PATCH v3 06/11] m68k: architecture changes to support fdt Angelo Dureghello
2018-10-19 3:26 ` Simon Glass
2018-10-13 22:34 ` [U-Boot] [PATCH v3 07/11] m68k: add initial dts files for all m68k boards Angelo Dureghello
2018-10-19 3:26 ` Simon Glass
2018-10-13 22:34 ` Angelo Dureghello [this message]
2018-10-19 3:26 ` [U-Boot] [PATCH v3 08/11] m68k: enabling long jumps on mcf54x5 SoCs Simon Glass
2018-10-13 22:34 ` [U-Boot] [PATCH v3 09/11] configs: enable use of DT for all m68k boards Angelo Dureghello
2018-10-19 3:26 ` Simon Glass
2018-10-13 22:34 ` [U-Boot] [PATCH v3 10/11] configs: add DM_SPI config option Angelo Dureghello
2018-10-19 3:27 ` Simon Glass
2018-10-13 22:34 ` [U-Boot] [PATCH v3 11/11] configs: remove CONFIG_SYS_DSPI_XX references Angelo Dureghello
2018-10-19 3:27 ` Simon Glass
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=20181013223439.31998-8-angelo@sysam.it \
--to=angelo@sysam.it \
--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