mb/google/rauru: Initialize flash controller in bootblock

Initialize SPI NOR Flash Controller (SNFC) in the bootblock.

TEST=read nor flash data successfully.
BUG=b:317009620

Change-Id: I88960ce7a50f67ea6f402884b714cb205836a6d8
Signed-off-by: Noah Shen <noah.shen@mediatek.corp-partner.google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/83924
Reviewed-by: Yidi Lin <yidilin@google.com>
Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Jarried Lin 2024-08-08 17:45:03 +08:00 committed by Felix Held
commit 228088ea52
2 changed files with 6 additions and 1 deletions

View file

@ -27,4 +27,8 @@ config MAINBOARD_DIR
config MAINBOARD_PART_NUMBER
string
default "Rauru" if BOARD_GOOGLE_RAURU
config BOOT_DEVICE_SPI_FLASH_BUS
int
default 8
endif

View file

@ -1,8 +1,9 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#include <bootblock_common.h>
#include <soc/spi.h>
void bootblock_mainboard_init(void)
{
/* TODO: add mainboard init for bootblock */
mtk_snfc_init();
}