[U-Boot] Fwd: Re: [PATCH v2 10/22] omap4: utility function to identify the context of hw init

Copying to the list. Accidentally missed it last time.
-------- Original Message -------- Subject: Re: [U-Boot] [PATCH v2 10/22] omap4: utility function to identify the context of hw init Date: Mon, 16 May 2011 20:03:52 +0530 From: Aneesh V aneesh@ti.com To: Wolfgang Denk wd@denx.de
Hi Wolfgang,
On Monday 16 May 2011 01:29 AM, Wolfgang Denk wrote:
Dear Aneesh V,
In message1305472900-4004-11-git-send-email-aneesh@ti.com you wrote:
The basic hardware init of OMAP4(s_init()) can happen in 4 different contexts:
- SPL running from SRAM
- U-Boot running from FLASH
- Non-XIP U-Boot loaded to SDRAM by SPL
- Non-XIP U-Boot loaded to SDRAM by ROM code using the Configuration Header feature
...
- if (uboot_loaded_by_spl())
return OMAP_INIT_CONTEXT_UBOOT_LOADED_BY_SPL;
- else if (running_from_sdram())
return OMAP_INIT_CONTEXT_UBOOT_LOADED_BY_CH;
For reasons of consistency, should this not better be OMAP_INIT_CONTEXT_UBOOT_LOADED_BY_ROM ?
Ok.
return OMAP_INIT_CONTEXT_XIP_UBOOT;
What exactly is OMAP_INIT_CONTEXT_XIP_UBOOT?
Do you mean the situation when booting from NOR flash, before relocation?
Yes, this is for the NOR case.
Eventually the "loaded by" definition is not so good, as it does not really cover the NOR boot case.
Please note that "loaded by" definition is not there for all the options. The definition is the 'context' in which the init code is executing.
+/* HW Init Context */ +#define OMAP_INIT_CONTEXT_SPL 0 +#define OMAP_INIT_CONTEXT_XIP_UBOOT 1 +#define OMAP_INIT_CONTEXT_UBOOT_LOADED_BY_SPL 2 +#define OMAP_INIT_CONTEXT_UBOOT_LOADED_BY_CH 3
Boot from NOR?
Best regards,
Wolfgang Denk
participants (1)
-
Aneesh V