aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/biostar
diff options
context:
space:
mode:
authorDamien Zammit <damien@zamaudio.com>2017-10-11 15:03:21 +1100
committerKyösti Mälkki <kyosti.malkki@gmail.com>2017-10-14 08:02:16 +0000
commitfe5030ecebc282b1f6d3811aa111d991b72ce213 (patch)
treeac0b34cd7f103b50d7f74e37e9114e479c7d4df6 /src/mainboard/biostar
parentb93fb1ab16e6def37b09c726747d58f77035209d (diff)
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>
Diffstat (limited to 'src/mainboard/biostar')
-rw-r--r--src/mainboard/biostar/a68n_5200/BiosCallOuts.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mainboard/biostar/a68n_5200/BiosCallOuts.c b/src/mainboard/biostar/a68n_5200/BiosCallOuts.c
index 0ff1e9a700..7698b4bc59 100644
--- a/src/mainboard/biostar/a68n_5200/BiosCallOuts.c
+++ b/src/mainboard/biostar/a68n_5200/BiosCallOuts.c
@@ -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)