/* SOC initialization before the console is enabled. */ void car_soc_pre_console_init(void) { /* System Agent Early Initialization */ systemagent_early_init(); if (IS_ENABLED(CONFIG_UART_DEBUG)) pch_uart_init(); }
/* SOC initialization before the console is enabled */ void soc_pre_console_init(struct romstage_params *params) { /* System Agent Early Initialization */ systemagent_early_init(); if (IS_ENABLED(CONFIG_CONSOLE_UART8250MEM_32)) pch_uart_init(); }
void bootblock_soc_early_init(void) { bootblock_systemagent_early_init(); bootblock_pch_early_init(); bootblock_cpu_init(); if (IS_ENABLED(CONFIG_BOOTBLOCK_CONSOLE)) pch_uart_init(); }