All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/2] Enable EXT support in SPL for all TI armv7 boards
@ 2015-06-16 13:00 Guillaume GARDET
  2015-06-16 13:00 ` [U-Boot] [PATCH 1/2] ti: armv7: enable EXT support in SPL (using ti_armv7_common.h) Guillaume GARDET
  2015-06-16 13:00 ` [U-Boot] [PATCH 2/2] ti: omap4: remove CONFIG_SPL_EXT_SUPPORT from ti_omap4_common.h since it is now in ti_armv7_common.h Guillaume GARDET
  0 siblings, 2 replies; 18+ messages in thread
From: Guillaume GARDET @ 2015-06-16 13:00 UTC (permalink / raw)
  To: u-boot

First patch enables EXT support in SPL for all boards including 'ti_armv7_common.h' file, mostly TI armv7 boards and some OMAP boards from other vendors.
To reduce size of MLO/SPL, in order to fit in SRAM (especially on OMAP3 boards), thumb build is used to build MLO/SPL.
Second patch remove CONFIG_SPL_EXT_SUPPORT from ti_omap4_common.h since it is now in ti_armv7_common.h.

Tested on Pandaboard (rev. A3) and Beagleboard xM (rev. B).
Compilation tested on TI armv7 boards and OMAP boards from other vendors.

Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr>
Cc: Tom Rini <trini@konsulko.com>


---

Guillaume GARDET (2):
  ti: armv7: enable EXT support in SPL
  ti: omap4: remove CONFIG_SPL_EXT_SUPPORT from ti_omap4_common.h since
    it is now in ti_armv7_common.h

 include/configs/ti_armv7_common.h | 5 +++++
 include/configs/ti_omap4_common.h | 3 ---
 2 files changed, 5 insertions(+), 3 deletions(-)

-- 
1.8.4.5

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [U-Boot] [PATCH 1/2] ti: armv7: enable EXT support in SPL (using ti_armv7_common.h)
  2015-06-16 13:00 [U-Boot] [PATCH 0/2] Enable EXT support in SPL for all TI armv7 boards Guillaume GARDET
@ 2015-06-16 13:00 ` Guillaume GARDET
  2015-06-16 15:43   ` Tom Rini
  2015-06-19 20:25   ` [U-Boot] [U-Boot, " Tom Rini
  2015-06-16 13:00 ` [U-Boot] [PATCH 2/2] ti: omap4: remove CONFIG_SPL_EXT_SUPPORT from ti_omap4_common.h since it is now in ti_armv7_common.h Guillaume GARDET
  1 sibling, 2 replies; 18+ messages in thread
From: Guillaume GARDET @ 2015-06-16 13:00 UTC (permalink / raw)
  To: u-boot

Tested on Pandaboard (rev. A3) and Beagleboard xM (rev. B).
Compilation tested on TI armv7 boards and OMAP boards from other vendors.

Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr>
Cc: Tom Rini <trini@konsulko.com>

---
 include/configs/ti_armv7_common.h | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/include/configs/ti_armv7_common.h b/include/configs/ti_armv7_common.h
index 2bd1164..8762930 100644
--- a/include/configs/ti_armv7_common.h
+++ b/include/configs/ti_armv7_common.h
@@ -256,6 +256,11 @@
 #define CONFIG_SPL_LIBDISK_SUPPORT
 #define CONFIG_SPL_MMC_SUPPORT
 #define CONFIG_SPL_FAT_SUPPORT
+#define CONFIG_SPL_EXT_SUPPORT
+#endif
+
+#ifdef CONFIG_SPL_BUILD
+#define CONFIG_SYS_THUMB_BUILD	/* Thumbs mode to save space in SPL */
 #endif
 
 /* General parts of the framework, required. */
-- 
1.8.4.5

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [U-Boot] [PATCH 2/2] ti: omap4: remove CONFIG_SPL_EXT_SUPPORT from ti_omap4_common.h since it is now in ti_armv7_common.h
  2015-06-16 13:00 [U-Boot] [PATCH 0/2] Enable EXT support in SPL for all TI armv7 boards Guillaume GARDET
  2015-06-16 13:00 ` [U-Boot] [PATCH 1/2] ti: armv7: enable EXT support in SPL (using ti_armv7_common.h) Guillaume GARDET
@ 2015-06-16 13:00 ` Guillaume GARDET
  2015-06-16 15:43   ` Tom Rini
  2015-06-19 20:25   ` [U-Boot] [U-Boot, " Tom Rini
  1 sibling, 2 replies; 18+ messages in thread
From: Guillaume GARDET @ 2015-06-16 13:00 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr>
Cc: Tom Rini <trini@konsulko.com>

---
 include/configs/ti_omap4_common.h | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/include/configs/ti_omap4_common.h b/include/configs/ti_omap4_common.h
index 1c93aab..b0f199e 100644
--- a/include/configs/ti_omap4_common.h
+++ b/include/configs/ti_omap4_common.h
@@ -167,9 +167,6 @@
 #define CONFIG_SYS_SPL_ARGS_ADDR	(CONFIG_SYS_SDRAM_BASE + \
 					 (128 << 20))
 
-/* SPL: Allow to use an EXT partition */
-#define CONFIG_SPL_EXT_SUPPORT
-
 #ifdef CONFIG_NAND
 #define CONFIG_SPL_NAND_AM33XX_BCH	/* ELM support */
 #endif
-- 
1.8.4.5

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [U-Boot] [PATCH 1/2] ti: armv7: enable EXT support in SPL (using ti_armv7_common.h)
  2015-06-16 13:00 ` [U-Boot] [PATCH 1/2] ti: armv7: enable EXT support in SPL (using ti_armv7_common.h) Guillaume GARDET
@ 2015-06-16 15:43   ` Tom Rini
  2015-06-19 20:25   ` [U-Boot] [U-Boot, " Tom Rini
  1 sibling, 0 replies; 18+ messages in thread
From: Tom Rini @ 2015-06-16 15:43 UTC (permalink / raw)
  To: u-boot

On Tue, Jun 16, 2015 at 03:00:09PM +0200, Guillaume GARDET wrote:

> Tested on Pandaboard (rev. A3) and Beagleboard xM (rev. B).
> Compilation tested on TI armv7 boards and OMAP boards from other vendors.
> 
> Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr>
> Cc: Tom Rini <trini@konsulko.com>
> 

Reviewed-by: Tom Rini <trini@konsulko.com>

-- 
Tom

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [U-Boot] [PATCH 2/2] ti: omap4: remove CONFIG_SPL_EXT_SUPPORT from ti_omap4_common.h since it is now in ti_armv7_common.h
  2015-06-16 13:00 ` [U-Boot] [PATCH 2/2] ti: omap4: remove CONFIG_SPL_EXT_SUPPORT from ti_omap4_common.h since it is now in ti_armv7_common.h Guillaume GARDET
@ 2015-06-16 15:43   ` Tom Rini
  2015-06-19 20:25   ` [U-Boot] [U-Boot, " Tom Rini
  1 sibling, 0 replies; 18+ messages in thread
From: Tom Rini @ 2015-06-16 15:43 UTC (permalink / raw)
  To: u-boot

On Tue, Jun 16, 2015 at 03:00:10PM +0200, Guillaume GARDET wrote:

> Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr>
> Cc: Tom Rini <trini@konsulko.com>
> 

Reviewed-by: Tom Rini <trini@konsulko.com>

-- 
Tom

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [U-Boot] [U-Boot, 1/2] ti: armv7: enable EXT support in SPL (using ti_armv7_common.h)
  2015-06-16 13:00 ` [U-Boot] [PATCH 1/2] ti: armv7: enable EXT support in SPL (using ti_armv7_common.h) Guillaume GARDET
  2015-06-16 15:43   ` Tom Rini
@ 2015-06-19 20:25   ` Tom Rini
  2015-07-24  1:25     ` Ash Charles
  1 sibling, 1 reply; 18+ messages in thread
From: Tom Rini @ 2015-06-19 20:25 UTC (permalink / raw)
  To: u-boot

On Tue, Jun 16, 2015 at 03:00:09PM +0200, Guillaume GARDET wrote:

> Tested on Pandaboard (rev. A3) and Beagleboard xM (rev. B).
> Compilation tested on TI armv7 boards and OMAP boards from other vendors.
> 
> Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr>
> Cc: Tom Rini <trini@konsulko.com>
> Reviewed-by: Tom Rini <trini@konsulko.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150619/3e7a0995/attachment.sig>

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [U-Boot] [U-Boot, 2/2] ti: omap4: remove CONFIG_SPL_EXT_SUPPORT from ti_omap4_common.h since it is now in ti_armv7_common.h
  2015-06-16 13:00 ` [U-Boot] [PATCH 2/2] ti: omap4: remove CONFIG_SPL_EXT_SUPPORT from ti_omap4_common.h since it is now in ti_armv7_common.h Guillaume GARDET
  2015-06-16 15:43   ` Tom Rini
@ 2015-06-19 20:25   ` Tom Rini
  1 sibling, 0 replies; 18+ messages in thread
From: Tom Rini @ 2015-06-19 20:25 UTC (permalink / raw)
  To: u-boot

On Tue, Jun 16, 2015 at 03:00:10PM +0200, Guillaume GARDET wrote:

> Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr>
> Cc: Tom Rini <trini@konsulko.com>
> Reviewed-by: Tom Rini <trini@konsulko.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150619/8ea03643/attachment.sig>

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [U-Boot] [U-Boot, 1/2] ti: armv7: enable EXT support in SPL (using ti_armv7_common.h)
  2015-06-19 20:25   ` [U-Boot] [U-Boot, " Tom Rini
@ 2015-07-24  1:25     ` Ash Charles
  2015-07-24 14:04       ` Tom Rini
  0 siblings, 1 reply; 18+ messages in thread
From: Ash Charles @ 2015-07-24  1:25 UTC (permalink / raw)
  To: u-boot

Hi,

In testing v2015.07 with OMAP35xx (Overo) boards (ES3.1), I see boot
failure which I bisected down to this patch.  Reverting just this
patch from v2015.07 allows the same boards to boot into SPL without
issue.  My OMAP37xx-based Overos seem unaffected.  My guess is
enabling CONFIG_SYS_THUMB_BUILD for SPL is causing some problems for
OMAP35xx processors.  I wanted to check if this sounded familiar to
anyone or if another platform ( anyone have an original Beagle with
which to test?) also showed the same problem.

I tried two different compilers, gcc 4.9.2 and 4.7.4, with no apparent
difference but the problem could certainly be any of board, cpu rev.,
cpu, or compiler-specific.

Thanks,
--Ash

On Fri, Jun 19, 2015 at 1:25 PM, Tom Rini <trini@konsulko.com> wrote:
> On Tue, Jun 16, 2015 at 03:00:09PM +0200, Guillaume GARDET wrote:
>
>> Tested on Pandaboard (rev. A3) and Beagleboard xM (rev. B).
>> Compilation tested on TI armv7 boards and OMAP boards from other vendors.
>>
>> Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr>
>> Cc: Tom Rini <trini@konsulko.com>
>> Reviewed-by: Tom Rini <trini@konsulko.com>
>
> Applied to u-boot/master, thanks!
>
> --
> Tom
>
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
>

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [U-Boot] [U-Boot, 1/2] ti: armv7: enable EXT support in SPL (using ti_armv7_common.h)
  2015-07-24  1:25     ` Ash Charles
@ 2015-07-24 14:04       ` Tom Rini
  2015-07-24 15:22         ` Ash Charles
  0 siblings, 1 reply; 18+ messages in thread
From: Tom Rini @ 2015-07-24 14:04 UTC (permalink / raw)
  To: u-boot

On Thu, Jul 23, 2015 at 06:25:54PM -0700, Ash Charles wrote:

> Hi,
> 
> In testing v2015.07 with OMAP35xx (Overo) boards (ES3.1), I see boot
> failure which I bisected down to this patch.  Reverting just this
> patch from v2015.07 allows the same boards to boot into SPL without
> issue.  My OMAP37xx-based Overos seem unaffected.  My guess is
> enabling CONFIG_SYS_THUMB_BUILD for SPL is causing some problems for
> OMAP35xx processors.  I wanted to check if this sounded familiar to
> anyone or if another platform ( anyone have an original Beagle with
> which to test?) also showed the same problem.
> 
> I tried two different compilers, gcc 4.9.2 and 4.7.4, with no apparent
> difference but the problem could certainly be any of board, cpu rev.,
> cpu, or compiler-specific.

Can you give us more details on the exact nature of the failure? Thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150724/6672c9b3/attachment.sig>

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [U-Boot] [U-Boot, 1/2] ti: armv7: enable EXT support in SPL (using ti_armv7_common.h)
  2015-07-24 14:04       ` Tom Rini
@ 2015-07-24 15:22         ` Ash Charles
  2015-07-27 16:39           ` Guillaume Gardet
  2015-07-28 10:46           ` Guillaume Gardet
  0 siblings, 2 replies; 18+ messages in thread
From: Ash Charles @ 2015-07-24 15:22 UTC (permalink / raw)
  To: u-boot

On Fri, Jul 24, 2015 at 7:04 AM, Tom Rini <trini@konsulko.com> wrote:
> Can you give us more details on the exact nature of the failure? Thanks!
Oh sorry--that wasn't clear!  The boards appear to get stuck in SPL
before anything can be printed to the console.  Basically, I power on,
see gunk from the boot rom on the console port, and then...nothing.
Happy to test further if there is a way to narrow down what precisely
is failing.

--Ash

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [U-Boot] [U-Boot, 1/2] ti: armv7: enable EXT support in SPL (using ti_armv7_common.h)
  2015-07-24 15:22         ` Ash Charles
@ 2015-07-27 16:39           ` Guillaume Gardet
  2015-07-28  0:23             ` Ash Charles
  2015-07-28 10:46           ` Guillaume Gardet
  1 sibling, 1 reply; 18+ messages in thread
From: Guillaume Gardet @ 2015-07-27 16:39 UTC (permalink / raw)
  To: u-boot

Hi,

Le 24/07/2015 17:22, Ash Charles a ?crit :
> On Fri, Jul 24, 2015 at 7:04 AM, Tom Rini <trini@konsulko.com> wrote:
>> Can you give us more details on the exact nature of the failure? Thanks!
> Oh sorry--that wasn't clear!  The boards appear to get stuck in SPL
> before anything can be printed to the console.  Basically, I power on,
> see gunk from the boot rom on the console port, and then...nothing.

gunk? I think ROM should display nothing if MLO/SPL is found and if nothing is found, you get a '60' for UART boot.

> Happy to test further if there is a way to narrow down what precisely
> is failing.

I have no original beagle, only a xM version with DM3730 which seems to be unaffacted.

But, in Overo config, There are those lines :
     #undef CONFIG_SPL_MAX_SIZE
     #define CONFIG_SPL_MAX_SIZE    (64*1024)
     #undef CONFIG_SPL_TEXT_BASE
     #define CONFIG_SPL_TEXT_BASE    0x40200000

Which bump SPL size from 54*1024 to 64*1024 and moves SPL text base from 0x40200800 to 0x40200000.
Any reason for that? What happens if you use original values?

What is the size of your MLO?


Guillaume

>
> --Ash
>

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [U-Boot] [U-Boot, 1/2] ti: armv7: enable EXT support in SPL (using ti_armv7_common.h)
  2015-07-27 16:39           ` Guillaume Gardet
@ 2015-07-28  0:23             ` Ash Charles
  2015-07-28 10:30               ` Guillaume Gardet
  0 siblings, 1 reply; 18+ messages in thread
From: Ash Charles @ 2015-07-28  0:23 UTC (permalink / raw)
  To: u-boot

On Mon, Jul 27, 2015 at 9:39 AM, Guillaume Gardet
<guillaume.gardet@free.fr> wrote:
> Which bump SPL size from 54*1024 to 64*1024 and moves SPL text base from
> 0x40200800 to 0x40200000.
> Any reason for that? What happens if you use original values?
>
> What is the size of your MLO?
Hi Guillaume,

I changed the lines to get a little more space [1] for BCH support but
I see the same behaviour even if I revert these lines.  Regardless, my
MLO is 50kB with thumb enabled (wow...that's notably smaller).
I tried the files you linked (thanks!) but, regrettably, these fail in
the same way my Overo OMAP35xx boards and where the AM/DM37xx Overos
boot fine (as beagles).

[1] https://www.mail-archive.com/u-boot at lists.denx.de/msg163947.html

--Ash

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [U-Boot] [U-Boot, 1/2] ti: armv7: enable EXT support in SPL (using ti_armv7_common.h)
  2015-07-28  0:23             ` Ash Charles
@ 2015-07-28 10:30               ` Guillaume Gardet
  0 siblings, 0 replies; 18+ messages in thread
From: Guillaume Gardet @ 2015-07-28 10:30 UTC (permalink / raw)
  To: u-boot



Le 28/07/2015 02:23, Ash Charles a ?crit :
> On Mon, Jul 27, 2015 at 9:39 AM, Guillaume Gardet
> <guillaume.gardet@free.fr> wrote:
>> Which bump SPL size from 54*1024 to 64*1024 and moves SPL text base from
>> 0x40200800 to 0x40200000.
>> Any reason for that? What happens if you use original values?
>>
>> What is the size of your MLO?
> Hi Guillaume,
>
> I changed the lines to get a little more space [1] for BCH support but
> I see the same behaviour even if I revert these lines.  Regardless, my
> MLO is 50kB with thumb enabled (wow...that's notably smaller).
> I tried the files you linked (thanks!) but, regrettably, these fail in
> the same way my Overo OMAP35xx boards and where the AM/DM37xx Overos
> boot fine (as beagles).

Maybe there is an ARM errata for OMAP35xx related to thumb?

I found a barebox patch related to thumb and OMAP3:
http://lists.infradead.org/pipermail/barebox/2012-January/005799.html
Maybe it would be useful for u-boot too?

Tom, any opinion?


Guillaume

>
> [1] https://www.mail-archive.com/u-boot at lists.denx.de/msg163947.html
>
> --Ash
>

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [U-Boot] [U-Boot, 1/2] ti: armv7: enable EXT support in SPL (using ti_armv7_common.h)
  2015-07-24 15:22         ` Ash Charles
  2015-07-27 16:39           ` Guillaume Gardet
@ 2015-07-28 10:46           ` Guillaume Gardet
  2015-07-28 17:19             ` Ash Charles
  1 sibling, 1 reply; 18+ messages in thread
From: Guillaume Gardet @ 2015-07-28 10:46 UTC (permalink / raw)
  To: u-boot



Le 24/07/2015 17:22, Ash Charles a ?crit :
> On Fri, Jul 24, 2015 at 7:04 AM, Tom Rini <trini@konsulko.com> wrote:
>> Can you give us more details on the exact nature of the failure? Thanks!
> Oh sorry--that wasn't clear!  The boards appear to get stuck in SPL
> before anything can be printed to the console.  Basically, I power on,
> see gunk from the boot rom on the console port, and then...nothing.
> Happy to test further if there is a way to narrow down what precisely
> is failing.

In files ./arch/arm/cpu/armv7/omap3/{board.c, sys_info.c} there are some ASM instructions lines, including MCR and MRC instructions which are ARM only (no thumb).
This may be the problem?


Guillaume


>
> --Ash
>

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [U-Boot] [U-Boot, 1/2] ti: armv7: enable EXT support in SPL (using ti_armv7_common.h)
  2015-07-28 10:46           ` Guillaume Gardet
@ 2015-07-28 17:19             ` Ash Charles
  2015-07-30 19:58               ` Ash Charles
  0 siblings, 1 reply; 18+ messages in thread
From: Ash Charles @ 2015-07-28 17:19 UTC (permalink / raw)
  To: u-boot

On Tue, Jul 28, 2015 at 3:46 AM, Guillaume Gardet
<guillaume.gardet@free.fr> wrote:
> n files ./arch/arm/cpu/armv7/omap3/{board.c, sys_info.c} there are some ASM
> instructions lines, including MCR and MRC instructions which are ARM only
> (no thumb).
> This may be the problem?
I tested this by faking out this assemble code with no change in
behaviour.  In particular:
* commented out the body of the secureworld_exit (not relevant)
* hardcoded the cpuid for get_cpu_id
* pretended to be in SRAM for get_base

I agree it seems a bit odd to have assembly inlined without explicitly
switching between ARM and thumb mode but my knowledge of interworking
is pretty limited.  FWIW, an objdump --special-syms just shows ARM
mode as far as I can see.

I suspect testing u-boot v2015.07 on another OMAP35xx platform besides
Overo will be most useful to confirm the scope of the problem.  Anyone
have a board and willing to test? I'm happy to send binaries :).

--Ash

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [U-Boot] [U-Boot, 1/2] ti: armv7: enable EXT support in SPL (using ti_armv7_common.h)
  2015-07-28 17:19             ` Ash Charles
@ 2015-07-30 19:58               ` Ash Charles
  2015-08-28 18:50                 ` Ash Charles
  0 siblings, 1 reply; 18+ messages in thread
From: Ash Charles @ 2015-07-30 19:58 UTC (permalink / raw)
  To: u-boot

On Tue, Jul 28, 2015 at 10:19 AM, Ash Charles <ashcharles@gmail.com> wrote:
> I suspect testing u-boot v2015.07 on another OMAP35xx platform besides
> Overo will be most useful to confirm the scope of the problem.  Anyone
> have a board and willing to test? I'm happy to send binaries :).
Hi,

FWIW, I just tried this with the latest code on the master branch and
I see the same issue where my OMAP35xx boards fail to start in
on SPL and the AM/DM37xx boards work just fine.

--Ash

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [U-Boot] [U-Boot, 1/2] ti: armv7: enable EXT support in SPL (using ti_armv7_common.h)
  2015-07-30 19:58               ` Ash Charles
@ 2015-08-28 18:50                 ` Ash Charles
  2015-08-29 17:44                   ` Tom Rini
  0 siblings, 1 reply; 18+ messages in thread
From: Ash Charles @ 2015-08-28 18:50 UTC (permalink / raw)
  To: u-boot

Hi,

Kevin Hilman kindly tested on an original Beagle board (i.e.
"OMAP3530-GP ES3.0") and sees the same failure.

I'd say THUMB mode in SPL isn't working for OMAP35xx-based systems.
Any suggestions on how to debug/resolve this issue short of simply
reverting?

--Ash

On Thu, Jul 30, 2015 at 12:58 PM, Ash Charles <ashcharles@gmail.com> wrote:
> On Tue, Jul 28, 2015 at 10:19 AM, Ash Charles <ashcharles@gmail.com> wrote:
>> I suspect testing u-boot v2015.07 on another OMAP35xx platform besides
>> Overo will be most useful to confirm the scope of the problem.  Anyone
>> have a board and willing to test? I'm happy to send binaries :).
> Hi,
>
> FWIW, I just tried this with the latest code on the master branch and
> I see the same issue where my OMAP35xx boards fail to start in
> on SPL and the AM/DM37xx boards work just fine.
>
> --Ash

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [U-Boot] [U-Boot, 1/2] ti: armv7: enable EXT support in SPL (using ti_armv7_common.h)
  2015-08-28 18:50                 ` Ash Charles
@ 2015-08-29 17:44                   ` Tom Rini
  0 siblings, 0 replies; 18+ messages in thread
From: Tom Rini @ 2015-08-29 17:44 UTC (permalink / raw)
  To: u-boot

On Fri, Aug 28, 2015 at 11:50:46AM -0700, Ash Charles wrote:
> Hi,
> 
> Kevin Hilman kindly tested on an original Beagle board (i.e.
> "OMAP3530-GP ES3.0") and sees the same failure.
> 
> I'd say THUMB mode in SPL isn't working for OMAP35xx-based systems.
> Any suggestions on how to debug/resolve this issue short of simply
> reverting?

I _suspect_ some THUMB related errata on really early cores like this
and that we will just need to revert this change, at least for boards
where we may run into it.  If we can't find and fix the errata in
question.

> 
> --Ash
> 
> On Thu, Jul 30, 2015 at 12:58 PM, Ash Charles <ashcharles@gmail.com> wrote:
> > On Tue, Jul 28, 2015 at 10:19 AM, Ash Charles <ashcharles@gmail.com> wrote:
> >> I suspect testing u-boot v2015.07 on another OMAP35xx platform besides
> >> Overo will be most useful to confirm the scope of the problem.  Anyone
> >> have a board and willing to test? I'm happy to send binaries :).
> > Hi,
> >
> > FWIW, I just tried this with the latest code on the master branch and
> > I see the same issue where my OMAP35xx boards fail to start in
> > on SPL and the AM/DM37xx boards work just fine.
> >
> > --Ash
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150829/35242197/attachment.sig>

^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2015-08-29 17:44 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-16 13:00 [U-Boot] [PATCH 0/2] Enable EXT support in SPL for all TI armv7 boards Guillaume GARDET
2015-06-16 13:00 ` [U-Boot] [PATCH 1/2] ti: armv7: enable EXT support in SPL (using ti_armv7_common.h) Guillaume GARDET
2015-06-16 15:43   ` Tom Rini
2015-06-19 20:25   ` [U-Boot] [U-Boot, " Tom Rini
2015-07-24  1:25     ` Ash Charles
2015-07-24 14:04       ` Tom Rini
2015-07-24 15:22         ` Ash Charles
2015-07-27 16:39           ` Guillaume Gardet
2015-07-28  0:23             ` Ash Charles
2015-07-28 10:30               ` Guillaume Gardet
2015-07-28 10:46           ` Guillaume Gardet
2015-07-28 17:19             ` Ash Charles
2015-07-30 19:58               ` Ash Charles
2015-08-28 18:50                 ` Ash Charles
2015-08-29 17:44                   ` Tom Rini
2015-06-16 13:00 ` [U-Boot] [PATCH 2/2] ti: omap4: remove CONFIG_SPL_EXT_SUPPORT from ti_omap4_common.h since it is now in ti_armv7_common.h Guillaume GARDET
2015-06-16 15:43   ` Tom Rini
2015-06-19 20:25   ` [U-Boot] [U-Boot, " Tom Rini

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.