Re: [U-Boot] [U-Boot, v2] spl: Change debug to printf for Unsupported boot-device

2015-01-27 Thread Michal Simek
Hi guys,

2014-11-24 23:10 GMT+01:00 Tom Rini tr...@ti.com:

 On Tue, Nov 11, 2014 at 07:03:55PM +0100, Stefan Roese wrote:

  We had the problem on an AM33xx platform, that SPL detected an
  unsupported boot-device. But since this message is a debug message
  it took a bit of time to really know, where the hangup in SPL
  resulted from. So let's change this debug message to a printf
  and also print the detected boot-device that is not supported.
  This makes debugging of such cases much easier.
 
  Signed-off-by: Stefan Roese s...@denx.de
  Cc: Wolfgang Denk w...@denx.de
  Cc: Tom Rini tr...@ti.com
  Acked-by: Heiko Schocher h...@denx.de

 Applied to u-boot/master, thanks!


This patch is causing problem on Microblaze because SPL exceed 4k limit.
It is only one printf which is called in entire SPL that's why this should
be solved a little bit differently.

Thanks,
Michal


-- 
Michal Simek, Ing. (M.Eng), OpenPGP - KeyID: FE3D1F91
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel - Microblaze cpu - http://www.monstr.eu/fdt/
Maintainer of Linux kernel - Xilinx Zynq ARM architecture
Microblaze U-BOOT custodian and responsible for u-boot arm zynq platform
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [U-Boot, v2] spl: Change debug to printf for Unsupported boot-device

2015-01-27 Thread Stefan Roese

Hi Michal,

On 27.01.2015 14:43, Michal Simek wrote:

On Tue, Nov 11, 2014 at 07:03:55PM +0100, Stefan Roese wrote:

 We had the problem on an AM33xx platform, that SPL detected an
 unsupported boot-device. But since this message is a debug message
 it took a bit of time to really know, where the hangup in SPL
 resulted from. So let's change this debug message to a printf
 and also print the detected boot-device that is not supported.
 This makes debugging of such cases much easier.

 Signed-off-by: Stefan Roese s...@denx.de mailto:s...@denx.de
 Cc: Wolfgang Denk w...@denx.de mailto:w...@denx.de
 Cc: Tom Rini tr...@ti.com mailto:tr...@ti.com
  Acked-by: Heiko Schocher h...@denx.de mailto:h...@denx.de

Applied to u-boot/master, thanks!


This patch is causing problem on Microblaze because SPL exceed 4k limit.
It is only one printf which is called in entire SPL that's why this should
be solved a little bit differently.


Ups. Yes, sorry. This one line definitely shouldn't cause all the printf 
stuff to be included. I'll try to address this quickly...


Thanks,
Stefan

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [U-Boot, v2] spl: Change debug to printf for Unsupported boot-device

2015-01-27 Thread Tom Rini
On Tue, Jan 27, 2015 at 02:43:57PM +0100, Michal Simek wrote:
 Hi guys,
 
 2014-11-24 23:10 GMT+01:00 Tom Rini tr...@ti.com:
 
  On Tue, Nov 11, 2014 at 07:03:55PM +0100, Stefan Roese wrote:
 
   We had the problem on an AM33xx platform, that SPL detected an
   unsupported boot-device. But since this message is a debug message
   it took a bit of time to really know, where the hangup in SPL
   resulted from. So let's change this debug message to a printf
   and also print the detected boot-device that is not supported.
   This makes debugging of such cases much easier.
  
   Signed-off-by: Stefan Roese s...@denx.de
   Cc: Wolfgang Denk w...@denx.de
   Cc: Tom Rini tr...@ti.com
   Acked-by: Heiko Schocher h...@denx.de
 
  Applied to u-boot/master, thanks!
 
 
 This patch is causing problem on Microblaze because SPL exceed 4k limit.
 It is only one printf which is called in entire SPL that's why this should
 be solved a little bit differently.

OK, but for clarity you need and are using both
CONFIG_SPL_SERIAL_SUPPORT and CONFIG_SPL_LIBCOMMON_SUPPORT because
you're using puts but not printf, yes?

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [U-Boot, v2] spl: Change debug to printf for Unsupported boot-device

2015-01-27 Thread Stefan Roese

On 27.01.2015 15:22, Tom Rini wrote:

We had the problem on an AM33xx platform, that SPL detected an
unsupported boot-device. But since this message is a debug message
it took a bit of time to really know, where the hangup in SPL
resulted from. So let's change this debug message to a printf
and also print the detected boot-device that is not supported.
This makes debugging of such cases much easier.

Signed-off-by: Stefan Roese s...@denx.de
Cc: Wolfgang Denk w...@denx.de
Cc: Tom Rini tr...@ti.com
Acked-by: Heiko Schocher h...@denx.de


Applied to u-boot/master, thanks!



This patch is causing problem on Microblaze because SPL exceed 4k limit.
It is only one printf which is called in entire SPL that's why this should
be solved a little bit differently.


OK, but for clarity you need and are using both
CONFIG_SPL_SERIAL_SUPPORT and CONFIG_SPL_LIBCOMMON_SUPPORT because
you're using puts but not printf, yes?


Right. If this is the case (only puts usage on Microblaze), then its 
perhaps best that I change this line to puts as well. Okay?


Thanks,
Stefan

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [U-Boot, v2] spl: Change debug to printf for Unsupported boot-device

2015-01-27 Thread Michal Simek
2015-01-27 15:38 GMT+01:00 Stefan Roese s...@denx.de:

 On 27.01.2015 15:22, Tom Rini wrote:

 We had the problem on an AM33xx platform, that SPL detected an
 unsupported boot-device. But since this message is a debug message
 it took a bit of time to really know, where the hangup in SPL
 resulted from. So let's change this debug message to a printf
 and also print the detected boot-device that is not supported.
 This makes debugging of such cases much easier.

 Signed-off-by: Stefan Roese s...@denx.de
 Cc: Wolfgang Denk w...@denx.de
 Cc: Tom Rini tr...@ti.com
 Acked-by: Heiko Schocher h...@denx.de


 Applied to u-boot/master, thanks!


  This patch is causing problem on Microblaze because SPL exceed 4k
 limit.
 It is only one printf which is called in entire SPL that's why this
 should
 be solved a little bit differently.


 OK, but for clarity you need and are using both
 CONFIG_SPL_SERIAL_SUPPORT and CONFIG_SPL_LIBCOMMON_SUPPORT because
 you're using puts but not printf, yes?


 Right. If this is the case (only puts usage on Microblaze), then its
 perhaps best that I change this line to puts as well. Okay?


Changing this to puts is definitely fine. Microblaze is using just puts.

Thanks,
Michal



-- 
Michal Simek, Ing. (M.Eng), OpenPGP - KeyID: FE3D1F91
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel - Microblaze cpu - http://www.monstr.eu/fdt/
Maintainer of Linux kernel - Xilinx Zynq ARM architecture
Microblaze U-BOOT custodian and responsible for u-boot arm zynq platform
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [U-Boot, v2] spl: Change debug to printf for Unsupported boot-device

2014-11-24 Thread Tom Rini
On Tue, Nov 11, 2014 at 07:03:55PM +0100, Stefan Roese wrote:

 We had the problem on an AM33xx platform, that SPL detected an
 unsupported boot-device. But since this message is a debug message
 it took a bit of time to really know, where the hangup in SPL
 resulted from. So let's change this debug message to a printf
 and also print the detected boot-device that is not supported.
 This makes debugging of such cases much easier.
 
 Signed-off-by: Stefan Roese s...@denx.de
 Cc: Wolfgang Denk w...@denx.de
 Cc: Tom Rini tr...@ti.com
 Acked-by: Heiko Schocher h...@denx.de

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot