From: Tom Rini <trini@ti.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2 15/18] ARM: SPL: Convert davinci to CONFIG_SPL_FRAMEWORK
Date: Wed, 22 Aug 2012 10:46:19 -0700 [thread overview]
Message-ID: <20120822174619.GC29180@bill-the-cat> (raw)
In-Reply-To: <CABkLObrz82GSpKO8yc7kUrTUNCwz0wPZ1nAeQytd876zWF_JFQ@mail.gmail.com>
On Wed, Aug 22, 2012 at 12:04:27PM +0200, Christian Riesch wrote:
> Hi Tom,
>
> On Mon, Aug 20, 2012 at 6:45 PM, Tom Rini <trini@ti.com> wrote:
> > - Convert the non-relocation part of board_init_f to spl_board_init,
> > turn on CONFIG_SPL_BOARD_INIT in the configs.
> > - Remove duplicated code.
> > - Add spl_boot_device() that returns the statically chosen boot device.
>
> I tested the patchset on the LogicPD AM1808 experimenter's kit:
>
> make da850evm
> and flashing to SPI flash with
> mono sfh_OMAP-L138.exe -targetType AM1808 -p /dev/ttyUSB0 -flash_noubl
> u-boot.ais
Confirmed, and I'll update the README to say that is how you can write
the u-boot.ais in recovery mode.
> The board boots up fine, but after pressing the reset button or
> issuing the u-boot "reset" command, it is dead. Only power-cycling
> helps. Before enabling the SPL framework in this patch reset works
> fine. Any ideas?
OK, I don't like the SPL malloc fix from before and I think it just
masked, partially, a real problem. The SPI code did not change in the
framework. And the very basic framework does not require malloc. I'm
going to poke around and see what I can see, but more eyes would be
welcome.
--
Tom
next prev parent reply other threads:[~2012-08-22 17:46 UTC|newest]
Thread overview: 42+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-08-20 16:45 [U-Boot] [PATCH v2 0/18] ARM: SPL: Make more generic, merge DaVinci and OMAP Tom Rini
2012-08-20 16:45 ` [U-Boot] [PATCH v2 01/18] Makefile: Move SPL files to clobber, remove from clean Tom Rini
2012-08-20 16:45 ` [U-Boot] [PATCH v2 02/18] spl_mmc: Make FAT checks / calls guarded with CONFIG_SPL_FAT_SUPPORT Tom Rini
2012-08-20 16:45 ` [U-Boot] [PATCH v2 03/18] omap-common: SPL: Add CONFIG_SPL_DISPLAY_PRINT / spl_display_print() Tom Rini
2012-08-20 16:45 ` [U-Boot] [PATCH v2 04/18] omap-common: Fix typo in save_boot_params() in lowlevel_init.S Tom Rini
2012-08-20 16:45 ` [U-Boot] [PATCH v2 05/18] ARM: SPL: Rename omap_boot_device to spl_boot_device Tom Rini
2012-08-20 16:45 ` [U-Boot] [PATCH v2 06/18] ARM: SPL: Rename omap_boot_mode to spl_boot_mode() Tom Rini
2012-08-20 16:45 ` [U-Boot] [PATCH v2 07/18] ARM: SPL: Remove NAND_MODE_HW_ECC from spl_nand.c Tom Rini
2012-08-20 16:45 ` [U-Boot] [PATCH v2 08/18] ARM: SPL: Only call mem_malloc_init if configured Tom Rini
2012-08-20 16:45 ` [U-Boot] [PATCH v2 09/18] ARM: SPL: Add <asm/spl.h> and <asm/arch/spl.h> Tom Rini
2012-08-20 16:45 ` [U-Boot] [PATCH v2 10/18] ARM: SPL: Make spl_mmc.c more generic Tom Rini
2012-08-20 16:45 ` [U-Boot] [PATCH v2 11/18] ARM: SPL: Clean up spl.c / spl_nand.c slightly Tom Rini
2012-08-20 16:45 ` [U-Boot] [PATCH v2 12/18] ARM: SPL: Start hooking in the current SPI SPL support Tom Rini
2012-08-20 16:45 ` [U-Boot] [PATCH v2 13/18] ARM: SPL: Move gpmc_init() to spl_board_init() Tom Rini
2012-08-20 16:45 ` [U-Boot] [PATCH v2 14/18] SPL: Move the omap SPL framework to common/spl Tom Rini
2012-08-20 16:45 ` [U-Boot] [PATCH v2 15/18] ARM: SPL: Convert davinci to CONFIG_SPL_FRAMEWORK Tom Rini
2012-08-22 10:04 ` Christian Riesch
2012-08-22 10:13 ` Prabhakar Lad
2012-08-22 17:46 ` Tom Rini [this message]
2012-08-22 19:19 ` Tom Rini
2012-08-22 23:14 ` Tom Rini
2012-08-20 16:45 ` [U-Boot] [PATCH v2 16/18] da850_am18xxevm: Add README.da850_am18xxevm Tom Rini
2012-08-21 5:09 ` Prabhakar Lad
2012-08-21 15:34 ` Tom Rini
2012-08-22 4:46 ` Prabhakar Lad
2012-08-22 6:28 ` Tom Rini
2012-08-22 8:13 ` Christian Riesch
2012-08-22 9:07 ` Prabhakar Lad
2012-08-22 9:17 ` Christian Riesch
2012-08-22 10:05 ` Prabhakar Lad
2012-08-22 15:09 ` Christian Riesch
2012-08-23 4:51 ` Prabhakar Lad
2012-08-22 17:44 ` Tom Rini
2012-08-22 17:37 ` Tom Rini
2012-08-20 16:45 ` [U-Boot] [PATCH v2 17/18] SPL: Enhance drivers/mtd/nand/nand_spl_load.c Tom Rini
2012-08-24 21:09 ` Scott Wood
2012-08-24 21:10 ` Scott Wood
2012-08-24 21:17 ` Tom Rini
2012-08-24 21:20 ` Tom Rini
2012-08-24 21:30 ` Scott Wood
2012-08-24 22:56 ` Tom Rini
2012-08-20 16:45 ` [U-Boot] [PATCH v2 18/18] SPL: Enhance spi_spl_load to match the other load functions Tom Rini
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=20120822174619.GC29180@bill-the-cat \
--to=trini@ti.com \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox