arch/x86,lib: make cbmem console work in postcar stage
Implement postcar stage cbmem console support. The postcar stage is more like ramstage in that RAM is already up. Therefore, in order to make the cbmem console reinit flow work one needs the cbmem init hook infrastructure in place and the cbmem recovery called. This call is added to x86/postcar.c to achieve that. Additionally, one needs to provide postcar stage cbmem init hook callbacks for the cbmem console library to use. A few other places need to become postcar stage aware so that the code paths are taken. Lastly, since postcar is backed by ram indicate that to the cbmem backing store. BUG=chrome-os-partner:57513 Change-Id: I51db65d8502c456b08f291fd1b59f6ea72059dfd Signed-off-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: https://review.coreboot.org/16619 Tested-by: build bot (Jenkins) Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
parent
6b0cebccc4
commit
1e9a914207
|
@ -13,6 +13,7 @@
|
|||
* GNU General Public License for more details.
|
||||
*/
|
||||
|
||||
#include <cbmem.h>
|
||||
#include <console/console.h>
|
||||
#include <main_decl.h>
|
||||
#include <program_loading.h>
|
||||
|
@ -22,6 +23,9 @@ void main(void)
|
|||
{
|
||||
console_init();
|
||||
|
||||
/* Recover cbmem so infrastruture using it is functional. */
|
||||
cbmem_initialize();
|
||||
|
||||
/* Display the MTRRs */
|
||||
if (IS_ENABLED(CONFIG_DISPLAY_MTRRS))
|
||||
soc_display_mtrrs();
|
||||
|
|
|
@ -117,17 +117,31 @@ void cbmem_add_records_to_cbtable(struct lb_header *header);
|
|||
#define RAMSTAGE_CBMEM_INIT_HOOK(init_fn_) \
|
||||
static cbmem_init_hook_t init_fn_ ## _ptr_ __attribute__((used, \
|
||||
section(".rodata.cbmem_init_hooks"))) = init_fn_;
|
||||
#define POSTCAR_CBMEM_INIT_HOOK(init_fn_) static cbmem_init_hook_t \
|
||||
init_fn_ ## _unused2_ __attribute__((unused)) = init_fn_;
|
||||
#elif ENV_ROMSTAGE
|
||||
#define ROMSTAGE_CBMEM_INIT_HOOK(init_fn_) \
|
||||
static cbmem_init_hook_t init_fn_ ## _ptr_ __attribute__((used, \
|
||||
section(".rodata.cbmem_init_hooks"))) = init_fn_;
|
||||
#define RAMSTAGE_CBMEM_INIT_HOOK(init_fn_) static cbmem_init_hook_t \
|
||||
init_fn_ ## _unused_ __attribute__((unused)) = init_fn_;
|
||||
#define POSTCAR_CBMEM_INIT_HOOK(init_fn_) static cbmem_init_hook_t \
|
||||
init_fn_ ## _unused2_ __attribute__((unused)) = init_fn_;
|
||||
#elif ENV_POSTCAR
|
||||
#define ROMSTAGE_CBMEM_INIT_HOOK(init_fn_) static cbmem_init_hook_t \
|
||||
init_fn_ ## _unused2_ __attribute__((unused)) = init_fn_;
|
||||
#define RAMSTAGE_CBMEM_INIT_HOOK(init_fn_) static cbmem_init_hook_t \
|
||||
init_fn_ ## _unused_ __attribute__((unused)) = init_fn_;
|
||||
#define POSTCAR_CBMEM_INIT_HOOK(init_fn_) \
|
||||
static cbmem_init_hook_t init_fn_ ## _ptr_ __attribute__((used, \
|
||||
section(".rodata.cbmem_init_hooks"))) = init_fn_;
|
||||
#else
|
||||
#define ROMSTAGE_CBMEM_INIT_HOOK(init_fn_) static cbmem_init_hook_t \
|
||||
init_fn_ ## _unused_ __attribute__((unused)) = init_fn_;
|
||||
#define RAMSTAGE_CBMEM_INIT_HOOK(init_fn_) static cbmem_init_hook_t \
|
||||
init_fn_ ## _unused2_ __attribute__((unused)) = init_fn_;
|
||||
#define POSTCAR_CBMEM_INIT_HOOK(init_fn_) static cbmem_init_hook_t \
|
||||
init_fn_ ## _unused3_ __attribute__((unused)) = init_fn_;
|
||||
#endif /* ENV_RAMSTAGE */
|
||||
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ void cbmemc_init(void);
|
|||
void cbmemc_tx_byte(unsigned char data);
|
||||
|
||||
#define __CBMEM_CONSOLE_ENABLE__ CONFIG_CONSOLE_CBMEM && \
|
||||
(ENV_RAMSTAGE || ENV_VERSTAGE || \
|
||||
(ENV_RAMSTAGE || ENV_VERSTAGE || ENV_POSTCAR || \
|
||||
(IS_ENABLED(CONFIG_EARLY_CBMEM_INIT) && \
|
||||
(ENV_ROMSTAGE || (ENV_BOOTBLOCK && CONFIG_BOOTBLOCK_CONSOLE)))\
|
||||
)
|
||||
|
|
|
@ -142,6 +142,7 @@ ramstage-y += imd_cbmem.c
|
|||
ramstage-y += imd.c
|
||||
|
||||
postcar-y += cbmem_common.c
|
||||
postcar-$(CONFIG_CONSOLE_CBMEM) += cbmem_console.c
|
||||
postcar-y += imd_cbmem.c
|
||||
postcar-y += imd.c
|
||||
|
||||
|
|
|
@ -228,7 +228,7 @@ static void cbmemc_reinit(int is_recovery)
|
|||
|
||||
/* No appending when no preram console available and adding for
|
||||
* the first time. */
|
||||
if (!ENV_RAMSTAGE && _preram_cbmem_console_size == 0)
|
||||
if (!ENV_RAMSTAGE && !ENV_POSTCAR && _preram_cbmem_console_size == 0)
|
||||
flags = CBMEMC_RESET;
|
||||
|
||||
/* Need to reset the newly added cbmem console in romstage. */
|
||||
|
@ -247,6 +247,7 @@ static void cbmemc_reinit(int is_recovery)
|
|||
}
|
||||
ROMSTAGE_CBMEM_INIT_HOOK(cbmemc_reinit)
|
||||
RAMSTAGE_CBMEM_INIT_HOOK(cbmemc_reinit)
|
||||
POSTCAR_CBMEM_INIT_HOOK(cbmemc_reinit)
|
||||
|
||||
#if IS_ENABLED(CONFIG_CONSOLE_CBMEM_DUMP_TO_UART)
|
||||
void cbmem_dump_console(void)
|
||||
|
|
|
@ -38,7 +38,8 @@
|
|||
* burden on board or chipset code to tell us by returning NULL from cbmem_top()
|
||||
* before that point.
|
||||
*/
|
||||
#define CAN_USE_GLOBALS (!IS_ENABLED(CONFIG_ARCH_X86) || ENV_RAMSTAGE)
|
||||
#define CAN_USE_GLOBALS \
|
||||
(!IS_ENABLED(CONFIG_ARCH_X86) || ENV_RAMSTAGE || ENV_POSTCAR)
|
||||
|
||||
static inline struct imd *cbmem_get_imd(void)
|
||||
{
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
*(.text);
|
||||
*(.text.*);
|
||||
|
||||
#if ENV_RAMSTAGE || ENV_ROMSTAGE
|
||||
#if ENV_RAMSTAGE || ENV_ROMSTAGE || ENV_POSTCAR
|
||||
. = ALIGN(ARCH_POINTER_ALIGN_SIZE);
|
||||
_cbmem_init_hooks = .;
|
||||
KEEP(*(.rodata.cbmem_init_hooks));
|
||||
|
|
Loading…
Reference in New Issue