biostar/a68n_5200: Fix hang with board due to SPI

SPI mode needs to be set early to normal and Quad I/O disabled
on this board for some reason

Change-Id: I4dbc52010eebf492087d0b1c155a24a307bcc8b0
Signed-off-by: Damien Zammit <damien@zamaudio.com>
Reviewed-on: https://review.coreboot.org/21945
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
This commit is contained in:
Damien Zammit 2017-10-11 15:03:21 +11:00 committed by Kyösti Mälkki
parent b93fb1ab16
commit fe5030eceb
1 changed files with 2 additions and 0 deletions

View File

@ -170,6 +170,8 @@ static void oem_fan_control(FCH_DATA_BLOCK *FchParams)
void board_FCH_InitReset(struct sysinfo *cb_NA, FCH_RESET_DATA_BLOCK *FchParams_reset)
{
FchParams_reset->Mode = FCH_SPI_MODE_NORMAL;
FchParams_reset->QeEnabled = FALSE;
}
void board_FCH_InitEnv(struct sysinfo *cb_NA, FCH_DATA_BLOCK *FchParams_env)