diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2014-12-16 09:29:56 +0200 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2014-12-20 07:27:15 +0100 |
commit | 296696d69772f57ee70a8f3001aa0dc50e2a2bd3 (patch) | |
tree | 0285882d3f4082f3533ef68c6448f512f667d963 /src/mainboard/gizmosphere | |
parent | 6e74b2cbacac19443c62cffa53ca5636e7ab248b (diff) | |
download | coreboot-296696d69772f57ee70a8f3001aa0dc50e2a2bd3.tar.gz coreboot-296696d69772f57ee70a8f3001aa0dc50e2a2bd3.tar.bz2 coreboot-296696d69772f57ee70a8f3001aa0dc50e2a2bd3.zip |
AGESA fam15tn fam15rl fam16kb: Add OemInitMid()
Change-Id: Icbad42168ec3afb7780c0c2ddc17aa405e08d693
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: http://review.coreboot.org/7825
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins)
Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Diffstat (limited to 'src/mainboard/gizmosphere')
-rw-r--r-- | src/mainboard/gizmosphere/gizmo2/PlatformGnbPcie.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mainboard/gizmosphere/gizmo2/PlatformGnbPcie.c b/src/mainboard/gizmosphere/gizmo2/PlatformGnbPcie.c index f27a1c3e240c..d48475cc63a9 100644 --- a/src/mainboard/gizmosphere/gizmo2/PlatformGnbPcie.c +++ b/src/mainboard/gizmosphere/gizmo2/PlatformGnbPcie.c @@ -143,6 +143,14 @@ static AGESA_STATUS OemInitEarly(AMD_EARLY_PARAMS * InitEarly) return AGESA_SUCCESS; } +static AGESA_STATUS OemInitMid(AMD_MID_PARAMS * InitMid) +{ + /* 0 iGpuVgaAdapter, 1 iGpuVgaNonAdapter; */ + InitMid->GnbMidConfiguration.iGpuVgaMode = 0; + return AGESA_SUCCESS; +} + const struct OEM_HOOK OemCustomize = { .InitEarly = OemInitEarly, + .InitMid = OemInitMid, }; |