From: Marek Vasut <marex@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 1/5] ARM: armv7: Make indirect vector addresses globl
Date: Mon, 11 Nov 2013 17:24:09 +0100 [thread overview]
Message-ID: <201311111724.09916.marex@denx.de> (raw)
In-Reply-To: <1384186966-6054-1-git-send-email-marex@denx.de>
Hi
+Cc Sinan
> Make indirect vectors addresses global, so they can be replaced by
> various code that needs to do so. For example the MX6 PCI express
> driver needs to temporarily replace data abort handler when reading
> the config space.
>
> Signed-off-by: Marek Vasut <marex@denx.de>
> Cc: Albert Aribaud <albert.u.boot@aribaud.net>
> Cc: Stefano Babic <sbabic@denx.de>
> ---
> arch/arm/cpu/armv7/start.S | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/arch/arm/cpu/armv7/start.S b/arch/arm/cpu/armv7/start.S
> index 6c9b11a..5aac773 100644
> --- a/arch/arm/cpu/armv7/start.S
> +++ b/arch/arm/cpu/armv7/start.S
> @@ -38,12 +38,19 @@ _irq: .word _irq
> _fiq: .word _fiq
> _pad: .word 0x12345678 /* now 16*4=64 */
> #else
> +.globl _undefined_instruction
> _undefined_instruction: .word undefined_instruction
> +.globl _software_interrupt
> _software_interrupt: .word software_interrupt
> +.globl _prefetch_abort
> _prefetch_abort: .word prefetch_abort
> +.globl _data_abort
> _data_abort: .word data_abort
> +.globl _not_used
> _not_used: .word not_used
> +.globl _irq
> _irq: .word irq
> +.globl _fiq
> _fiq: .word fiq
> _pad: .word 0x12345678 /* now 16*4=64 */
> #endif /* CONFIG_SPL_BUILD */
Best regards,
Marek Vasut
next prev parent reply other threads:[~2013-11-11 16:24 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-11 16:22 [U-Boot] [PATCH 1/5] ARM: armv7: Make indirect vector addresses globl Marek Vasut
2013-11-11 16:22 ` [U-Boot] [PATCH 2/5] ARM: lib: Add cpu_clock_teardown() call Marek Vasut
2013-11-27 8:44 ` Stefano Babic
2013-11-27 8:59 ` Marek Vasut
2013-11-27 9:24 ` Stefano Babic
2013-11-11 16:22 ` [U-Boot] [PATCH 3/5] ARM: mx6: Add PCI express clock configuration Marek Vasut
2013-11-27 8:45 ` Stefano Babic
2013-11-11 16:22 ` [U-Boot] [PATCH 4/5] ARM: mx6: Add PCI express driver Marek Vasut
2013-11-27 8:45 ` Stefano Babic
2013-11-11 16:22 ` [U-Boot] [PATCH 5/5] ARM: mx6: Enable PCIe on Sabrelite Marek Vasut
2013-11-27 8:45 ` Stefano Babic
2013-11-27 8:59 ` Marek Vasut
2013-11-27 14:03 ` Eric Nelson
2013-11-27 15:02 ` Marek Vasut
2013-11-27 16:19 ` Eric Nelson
2013-11-28 8:20 ` Stefano Babic
2013-11-30 0:06 ` Marek Vasut
2013-12-03 1:05 ` Eric Nelson
2013-12-03 8:12 ` Stefano Babic
2013-12-03 9:12 ` Marek Vasut
2013-12-03 10:21 ` Stefano Babic
2013-12-03 12:31 ` Marek Vasut
2013-12-03 9:12 ` Marek Vasut
2013-11-30 0:03 ` Marek Vasut
2013-11-11 16:24 ` Marek Vasut [this message]
2013-11-27 8:44 ` [U-Boot] [PATCH 1/5] ARM: armv7: Make indirect vector addresses globl Stefano Babic
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=201311111724.09916.marex@denx.de \
--to=marex@denx.de \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.