@@ -60,6 +60,7 @@ typedef struct {
/*Misc Config*/
UINT8 EnableSmmu;
UINT8 EnableFdtTable;
+ UINT8 EnableGOP;
/*RAS Config*/
UINT8 EnRasSupport;
UINT8 EnPoison;
@@ -294,6 +294,7 @@ OemConfigUiLibConstructor (
//
Configuration.EnableSmmu = 1;
Configuration.EnableFdtTable = 0;
+ Configuration.EnableGOP = 0;
//
//Set the default value of the Ras option
//
@@ -31,4 +31,11 @@ form formid = MISC_CONFIG_FORM_ID,
option text = STRING_TOKEN(STR_ENABLED), value = 1, flags = 0;
endoneof;
+ oneof varid = OEM_CONFIG_DATA.EnableGOP,
+ prompt = STRING_TOKEN(STR_ENABLE_GOP_FRAME_BUFFER),
+ help = STRING_TOKEN(STR_ENABLE_GOP_FRAME_BUFFER_HELP),
+ option text = STRING_TOKEN(STR_DISABLED), value = 0, flags = DEFAULT;
+ option text = STRING_TOKEN(STR_ENABLED), value = 1, flags = 0;
+ endoneof;
+
endform;
@@ -23,5 +23,5 @@
#string STR_FDT_CONFIG_HELP #language en-US "Enable or Disable Fdt Table."
#string STR_ENABLE_SPCR_TABLE #language en-US "Support SPCR"
#string STR_ENABLE_SPCR_HELP #language en-US "Enable or Disable SPCR Table."
-#string STR_ENABLE_GOP_FRAME_BUFFER #language en-US "Support GOP FB"
-#string STR_ENABLE_GOP_FRAME_BUFFER_HELP #language en-US "Enable or Disable GOP frame buffer."
+#string STR_ENABLE_GOP_FRAME_BUFFER #language en-US "Support GOP FB for SM750"
+#string STR_ENABLE_GOP_FRAME_BUFFER_HELP #language en-US "Enable or Disable GOP frame buffer for SM750."