arm64: Factor out common parts of romstage execution flow
The romstage main() entry point on arm64 boards is usually in mainboard code, but there are a handful of lines that are always needed in there and not really mainboard specific (or chipset specific). We keep arguing every once in a while that this isn't ideal, so rather than arguing any longer let's just fix it. This patch moves the main() function into arch code with callbacks that the platform can hook into. (This approach can probably be expanded onto other architectures, so when that happens this file should move into src/lib.) Tested on Cheza and Kevin. I think the approach is straight-forward enough that we can take this without testing every board. (Note that in a few cases, this delays some platform-specific calls until after console_init() and exception_init()... since these functions don't really take that long, especially if there is no serial console configured, I don't expect this to cause any issues.) Change-Id: I7503acafebabed00dfeedb00b1354a26c536f0fe Signed-off-by: Julius Werner <jwerner@chromium.org> Reviewed-on: https://review.coreboot.org/28199 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
2d22cda32c
commit
5d6593a43c
|
@ -107,6 +107,7 @@ romstage-$(CONFIG_ARM64_USE_ARCH_TIMER) += arch_timer.c
|
|||
romstage-y += memset.S
|
||||
romstage-y += memcpy.S
|
||||
romstage-y += memmove.S
|
||||
romstage-y += romstage.c
|
||||
romstage-y += transition.c transition_asm.S
|
||||
|
||||
rmodules_arm64-y += memset.S
|
||||
|
|
|
@ -21,4 +21,11 @@
|
|||
|
||||
void stage_entry(void);
|
||||
|
||||
/* This function is the romstage platform entry point, and should contain all
|
||||
chipset and mainboard setup until DRAM is initialized and accessible. */
|
||||
void platform_romstage_main(void);
|
||||
/* This is an optional hook to run further chipset or mainboard code after DRAM
|
||||
and associated support frameworks (like CBMEM) have been initialized. */
|
||||
void platform_romstage_postram(void);
|
||||
|
||||
#endif
|
||||
|
|
|
@ -0,0 +1,39 @@
|
|||
/*
|
||||
* This file is part of the coreboot project.
|
||||
*
|
||||
* Copyright 2018 Google Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License as
|
||||
* published by the Free Software Foundation; version 2 of
|
||||
* the License.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*/
|
||||
|
||||
#include <arch/exception.h>
|
||||
#include <arch/stages.h>
|
||||
#include <cbmem.h>
|
||||
#include <console/console.h>
|
||||
#include <program_loading.h>
|
||||
#include <timestamp.h>
|
||||
|
||||
__weak void platform_romstage_main(void) { /* no-op, for bring-up */ }
|
||||
__weak void platform_romstage_postram(void) { /* no-op */ }
|
||||
|
||||
void main(void)
|
||||
{
|
||||
timestamp_add_now(TS_START_ROMSTAGE);
|
||||
|
||||
console_init();
|
||||
exception_init();
|
||||
|
||||
platform_romstage_main();
|
||||
cbmem_initialize_empty();
|
||||
platform_romstage_postram();
|
||||
|
||||
run_ramstage();
|
||||
}
|
|
@ -14,34 +14,24 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include <arch/exception.h>
|
||||
#include <cbmem.h>
|
||||
#include <romstage_handoff.h>
|
||||
#include <arch/stages.h>
|
||||
#include <soc/sdram.h>
|
||||
#include <soc/timer.h>
|
||||
#include <soc/mmu.h>
|
||||
#include <stdlib.h>
|
||||
#include <console/console.h>
|
||||
#include <program_loading.h>
|
||||
#include <libbdk-hal/bdk-config.h>
|
||||
#include <string.h>
|
||||
|
||||
extern const struct bdk_devicetree_key_value devtree[];
|
||||
|
||||
void main(void)
|
||||
void platform_romstage_main(void)
|
||||
{
|
||||
watchdog_poke(0);
|
||||
|
||||
console_init();
|
||||
exception_init();
|
||||
|
||||
bdk_config_set_fdt(devtree);
|
||||
|
||||
sdram_init();
|
||||
soc_mmu_init();
|
||||
|
||||
watchdog_poke(0);
|
||||
|
||||
cbmem_initialize_empty();
|
||||
run_ramstage();
|
||||
}
|
||||
|
|
|
@ -13,17 +13,8 @@
|
|||
* GNU General Public License for more details.
|
||||
*/
|
||||
|
||||
#include <arch/exception.h>
|
||||
#include <cbmem.h>
|
||||
#include <halt.h>
|
||||
#include <program_loading.h>
|
||||
#include <console/console.h>
|
||||
#include <timestamp.h>
|
||||
#include <arch/stages.h>
|
||||
|
||||
void main(void)
|
||||
void platform_romstage_main(void)
|
||||
{
|
||||
console_init();
|
||||
exception_init();
|
||||
cbmem_initialize_empty();
|
||||
run_ramstage();
|
||||
}
|
||||
|
|
|
@ -14,24 +14,14 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include <arch/cache.h>
|
||||
#include <arch/cpu.h>
|
||||
#include <arch/exception.h>
|
||||
#include <arch/mmu.h>
|
||||
#include <cbfs.h>
|
||||
#include <cbmem.h>
|
||||
#include <gpio.h>
|
||||
#include <console/console.h>
|
||||
#include <arch/stages.h>
|
||||
#include <delay.h>
|
||||
#include <program_loading.h>
|
||||
#include <romstage_handoff.h>
|
||||
#include <soc/addressmap.h>
|
||||
#include <soc/mmu_operations.h>
|
||||
#include <soc/tsadc.h>
|
||||
#include <soc/sdram.h>
|
||||
#include <symbols.h>
|
||||
#include <soc/usb.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "board.h"
|
||||
#include "pwm_regulator.h"
|
||||
|
@ -70,11 +60,9 @@ static void prepare_usb(void)
|
|||
reset_usb_otg1();
|
||||
}
|
||||
|
||||
void main(void)
|
||||
void platform_romstage_main(void)
|
||||
{
|
||||
console_init();
|
||||
tsadc_init(TSHUT_POL_HIGH);
|
||||
exception_init();
|
||||
|
||||
/* Init DVS to conservative values. */
|
||||
init_dvs_outputs();
|
||||
|
@ -87,6 +75,4 @@ void main(void)
|
|||
mmu_config_range((void *)0, (uintptr_t)sdram_size_mb() * MiB,
|
||||
CACHED_MEM);
|
||||
mmu_config_range(_dma_coherent, _dma_coherent_size, UNCACHED_MEM);
|
||||
cbmem_initialize_empty();
|
||||
run_ramstage();
|
||||
}
|
||||
|
|
|
@ -13,21 +13,10 @@
|
|||
* GNU General Public License for more details.
|
||||
*/
|
||||
|
||||
#include <arch/exception.h>
|
||||
#include <console/console.h>
|
||||
#include <program_loading.h>
|
||||
#include <arch/stages.h>
|
||||
#include <soc/mmu_operations.h>
|
||||
#include <timestamp.h>
|
||||
|
||||
void main(void)
|
||||
void platform_romstage_main(void)
|
||||
{
|
||||
timestamp_add_now(TS_START_ROMSTAGE);
|
||||
|
||||
/* Init UART baudrate when PLL on. */
|
||||
console_init();
|
||||
exception_init();
|
||||
|
||||
mtk_mmu_after_dram();
|
||||
|
||||
run_ramstage();
|
||||
}
|
||||
|
|
|
@ -12,39 +12,21 @@
|
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*/
|
||||
#include <arch/cache.h>
|
||||
#include <arch/cpu.h>
|
||||
#include <arch/exception.h>
|
||||
#include <arch/io.h>
|
||||
#include <arch/mmu.h>
|
||||
#include <boardid.h>
|
||||
#include <cbfs.h>
|
||||
#include <cbmem.h>
|
||||
#include <console/console.h>
|
||||
#include <delay.h>
|
||||
#include <program_loading.h>
|
||||
#include <romstage_handoff.h>
|
||||
#include <symbols.h>
|
||||
#include <timer.h>
|
||||
#include <timestamp.h>
|
||||
|
||||
#include <arch/stages.h>
|
||||
#include <boardid.h>
|
||||
#include <soc/emi.h>
|
||||
#include <soc/mmu_operations.h>
|
||||
#include <soc/mt6391.h>
|
||||
#include <soc/pll.h>
|
||||
#include <soc/rtc.h>
|
||||
#include <timer.h>
|
||||
|
||||
void main(void)
|
||||
void platform_romstage_main(void)
|
||||
{
|
||||
int stabilize_usec;
|
||||
struct stopwatch sw;
|
||||
|
||||
timestamp_add_now(TS_START_ROMSTAGE);
|
||||
|
||||
/* init uart baudrate when pll on */
|
||||
console_init();
|
||||
exception_init();
|
||||
|
||||
rtc_boot();
|
||||
|
||||
/* Raise CPU voltage to allow higher frequency */
|
||||
|
@ -64,9 +46,4 @@ void main(void)
|
|||
mt_pll_raise_ca53_freq(1700 * MHz);
|
||||
|
||||
mtk_mmu_after_dram();
|
||||
|
||||
/* should be called after memory init */
|
||||
cbmem_initialize_empty();
|
||||
|
||||
run_ramstage();
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ verstage-y += ../common/timer.c
|
|||
verstage-$(CONFIG_DRIVERS_UART) += ../common/uart.c
|
||||
verstage-y += ../common/wdt.c
|
||||
|
||||
romstage-y += emi.c
|
||||
romstage-y += ../common/cbmem.c emi.c
|
||||
romstage-y += ../common/gpio.c gpio.c
|
||||
romstage-y += ../common/mmu_operations.c mmu_operations.c
|
||||
romstage-$(CONFIG_SPI_FLASH) += ../common/spi.c spi.c
|
||||
|
|
Loading…
Reference in New Issue