diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2018-08-11 11:05:07 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-08-13 12:25:24 +0000 |
commit | e7cacb1a840d06836cc3c562f01834fe3c01a38b (patch) | |
tree | 97cac2b4fdfc4b9e76af1b8416383c0cf32bd980 | |
parent | 487f7f24a5c71e29f28b355819b9cab7d5b90a4a (diff) |
mb/intel/dg43gt: Enable the GBE
This was blindly copied from logs created under vendor BIOS in non-descriptor
mode which apparently set LAND in BUC.
Change-Id: I94c917600421ee742ece7f6f71309da80261da28
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/28048
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
-rw-r--r-- | src/mainboard/intel/dg43gt/romstage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/intel/dg43gt/romstage.c b/src/mainboard/intel/dg43gt/romstage.c index d3b2b6aec4..64b462fb8c 100644 --- a/src/mainboard/intel/dg43gt/romstage.c +++ b/src/mainboard/intel/dg43gt/romstage.c @@ -49,7 +49,7 @@ static void mb_gpio_init(void) RCBA8(0x31ff); RCBA32(0x3410) = 0x00060464; - RCBA32(0x3414) = 0x00000020; + RCBA32(RCBA_BUC) &= ~BUC_LAND; RCBA32(0x3418) = 0x01320001; RCBA32(0x341c) = 0xbf7f001f; RCBA32(0x3430) = 0x00000002; |