aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/baytrail/romstage/gfx.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/intel/baytrail/romstage/gfx.c')
-rw-r--r--src/soc/intel/baytrail/romstage/gfx.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/soc/intel/baytrail/romstage/gfx.c b/src/soc/intel/baytrail/romstage/gfx.c
index 3b47ccf954..592d1feaf8 100644
--- a/src/soc/intel/baytrail/romstage/gfx.c
+++ b/src/soc/intel/baytrail/romstage/gfx.c
@@ -37,7 +37,8 @@ void gfx_init(void)
msac = pci_read_config8(gfx_dev, MSAC);
ggc &= ~(GGC_GTT_SIZE_MASK | GGC_GSM_SIZE_MASK);
- ggc |= GGC_GTT_SIZE_2MB | GGC_GSM_SIZE_32MB;
+ /* 32MB GSM is not supported with <C0 stepping. */
+ ggc |= GGC_GTT_SIZE_2MB | GGC_GSM_SIZE_64MB;
/* Enable VGA decoding as well. */
ggc &= ~(GGC_VGA_DISABLE);