* [PATCH] ARM i.MX6: Fix bootsource detection
@ 2013-06-06 6:32 Philipp Zabel
2013-06-08 13:22 ` Sascha Hauer
0 siblings, 1 reply; 2+ messages in thread
From: Philipp Zabel @ 2013-06-06 6:32 UTC (permalink / raw)
To: barebox
This patch fixes bootsource detection on i.MX6 for serial and i2c boot.
The bootsource_instance is now determined for spi, i2c, and mmc/sd boot.
Signed-off-by: Philipp Zabel <philipp.zabel@gmail.com>
---
arch/arm/mach-imx/boot.c | 26 +++++++++++++++++++-------
1 file changed, 19 insertions(+), 7 deletions(-)
diff --git a/arch/arm/mach-imx/boot.c b/arch/arm/mach-imx/boot.c
index bd0cb84..4d81fd4 100644
--- a/arch/arm/mach-imx/boot.c
+++ b/arch/arm/mach-imx/boot.c
@@ -217,11 +217,13 @@ void imx53_boot_save_loc(void __iomem *src_base)
void imx6_boot_save_loc(void __iomem *src_base)
{
enum bootsource src = BOOTSOURCE_UNKNOWN;
- uint32_t sbmr2 = readl(src_base + IMX6_SRC_SBMR2) >> 24;
- uint32_t cfg1 = readl(src_base + IMX6_SRC_SBMR1) & 0xff;
+ int instance = BOOTSOURCE_INSTANCE_UNKNOWN;
+ uint32_t sbmr1 = readl(src_base + IMX6_SRC_SBMR1);
+ uint32_t sbmr2 = readl(src_base + IMX6_SRC_SBMR2);
uint32_t boot_cfg_4_2_0;
int boot_mode;
+ /* BMOD[1:0] */
boot_mode = (sbmr2 >> 24) & 0x3;
switch (boot_mode) {
@@ -241,32 +243,42 @@ void imx6_boot_save_loc(void __iomem *src_base)
internal_boot:
- switch (cfg1 >> 4) {
+ /* BOOT_CFG1[7:4] */
+ switch ((sbmr1 >> 4) & 0xf) {
case 2:
src = BOOTSOURCE_HD;
break;
case 3:
- boot_cfg_4_2_0 = (cfg1 >> 16) & 0x7;
+ /* BOOT_CFG4[2:0] */
+ boot_cfg_4_2_0 = (sbmr1 >> 24) & 0x7;
- if (boot_cfg_4_2_0 > 4)
+ if (boot_cfg_4_2_0 > 4) {
src = BOOTSOURCE_I2C;
- else
+ instance = boot_cfg_4_2_0 - 5;
+ } else {
src = BOOTSOURCE_SPI;
+ instance = boot_cfg_4_2_0;
+ }
break;
case 4:
case 5:
case 6:
case 7:
src = BOOTSOURCE_MMC;
+
+ /* BOOT_CFG2[4:3] */
+ instance = (sbmr1 >> 11) & 0x3;
break;
default:
break;
}
- if (cfg1 & (1 << 7))
+ /* BOOT_CFG1[7:0] */
+ if (sbmr1 & (1 << 7))
src = BOOTSOURCE_NAND;
bootsource_set(src);
+ bootsource_set_instance(instance);
return;
}
--
1.7.10.4
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] ARM i.MX6: Fix bootsource detection
2013-06-06 6:32 [PATCH] ARM i.MX6: Fix bootsource detection Philipp Zabel
@ 2013-06-08 13:22 ` Sascha Hauer
0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2013-06-08 13:22 UTC (permalink / raw)
To: Philipp Zabel; +Cc: barebox
On Thu, Jun 06, 2013 at 08:32:49AM +0200, Philipp Zabel wrote:
> This patch fixes bootsource detection on i.MX6 for serial and i2c boot.
> The bootsource_instance is now determined for spi, i2c, and mmc/sd boot.
>
> Signed-off-by: Philipp Zabel <philipp.zabel@gmail.com>
Applied, thanks
Sascha
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-06-08 13:22 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-06-06 6:32 [PATCH] ARM i.MX6: Fix bootsource detection Philipp Zabel
2013-06-08 13:22 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox