From: Alexander Shiyan <eagle.alexander923@gmail.com>
To: barebox@lists.infradead.org
Cc: Alexander Shiyan <eagle.alexander923@gmail.com>
Subject: [PATCH 4/4] at91: Use proper values of stashed SAMA5D2/3/4 bootsource
Date: Wed, 5 Mar 2025 09:21:01 +0300 [thread overview]
Message-ID: <20250305062101.25588-4-eagle.alexander923@gmail.com> (raw)
In-Reply-To: <20250305062101.25588-1-eagle.alexander923@gmail.com>
Since the SRAM area varies across different processor variants,
let's make a distinction for stashed bootsource recovery.
Signed-off-by: Alexander Shiyan <eagle.alexander923@gmail.com>
---
arch/arm/mach-at91/sama5_bootsource.c | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/arch/arm/mach-at91/sama5_bootsource.c b/arch/arm/mach-at91/sama5_bootsource.c
index 4ede256e8f..0d91f5fb5a 100644
--- a/arch/arm/mach-at91/sama5_bootsource.c
+++ b/arch/arm/mach-at91/sama5_bootsource.c
@@ -19,11 +19,15 @@
*/
static int sama5_bootsource_init(void)
{
- if (!of_machine_is_compatible("atmel,sama5"))
+ if (of_machine_is_compatible("atmel,sama5d2"))
+ at91_bootsource = __sama5d2_stashed_bootrom_r4;
+ else if (of_machine_is_compatible("atmel,sama5d3"))
+ at91_bootsource = __sama5d3_stashed_bootrom_r4;
+ else if (of_machine_is_compatible("atmel,sama5d4"))
+ at91_bootsource = __sama5d4_stashed_bootrom_r4;
+ else
return 0;
- at91_bootsource = __sama5d2_stashed_bootrom_r4;
-
if (at91_bootsource)
bootsource_set_raw(sama5_bootsource(at91_bootsource),
sama5_bootsource_instance(at91_bootsource));
--
2.39.1
next prev parent reply other threads:[~2025-03-05 6:22 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-05 6:20 [PATCH 1/4] at91:: Remove dead definition of atmel_nand_load_image() Alexander Shiyan
2025-03-05 6:20 ` [PATCH 2/4] at91: Use the ddramc driver for all boards whose architecture uses it Alexander Shiyan
2025-03-07 8:18 ` Sascha Hauer
2025-03-07 8:24 ` Alexander Shiyan
2025-03-05 6:21 ` [PATCH 3/4] at91: ddramc: Trivial code cleanup Alexander Shiyan
2025-03-05 6:21 ` Alexander Shiyan [this message]
2025-03-07 8:20 ` (subset) [PATCH 1/4] at91:: Remove dead definition of atmel_nand_load_image() 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=20250305062101.25588-4-eagle.alexander923@gmail.com \
--to=eagle.alexander923@gmail.com \
--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