DebugConfig.vfi 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. //
  2. //
  3. // Copyright (c) 2004 - 2014, Intel Corporation. All rights reserved.<BR>
  4. //
  5. // SPDX-License-Identifier: BSD-2-Clause-Patent
  6. //
  7. //
  8. //
  9. //
  10. // Module Name:
  11. //
  12. // DebugConfiguration.vfi
  13. //
  14. // Abstract:
  15. //
  16. // Debug Configuration formset.
  17. //
  18. // --*/
  19. form formid = DEBUG_CONFIGURATION_FORM_ID,
  20. title = STRING_TOKEN(STR_DEBUG_CONFIGURATION_TITLE);
  21. subtitle text = STRING_TOKEN(STR_NULL_STRING);
  22. subtitle text = STRING_TOKEN(STR_ACPIMEMDBG_STRING);
  23. //ACPI Memory Debug Switch
  24. oneof varid = Setup.ACPIMemDbg,
  25. prompt = STRING_TOKEN (STR_ACPIMEMDBG_SWTICH),
  26. help = STRING_TOKEN (STR_ACPIMEMDBG_SWTICH_HELP),
  27. option text = STRING_TOKEN (STR_ENABLE), value = 1, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
  28. option text = STRING_TOKEN (STR_DISABLE), value = 0, flags = RESET_REQUIRED;
  29. endoneof;
  30. subtitle text = STRING_TOKEN(STR_NULL_STRING);
  31. oneof varid = Setup.ExISupport,
  32. prompt = STRING_TOKEN(STR_EXISUPPORT_PROMPT),
  33. help = STRING_TOKEN(STR_EXISUPPORT_HELP),
  34. option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = RESET_REQUIRED;
  35. option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = DEFAULT | RESET_REQUIRED;
  36. endoneof;
  37. subtitle text = STRING_TOKEN(STR_WITT_CONFIGURATION_TITLE);
  38. oneof varid = Setup.WittEnable,
  39. prompt = STRING_TOKEN(STR_WITT_PROMPT),
  40. help = STRING_TOKEN(STR_WITT_HELP),
  41. option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = DEFAULT | RESET_REQUIRED;
  42. option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = RESET_REQUIRED;
  43. endoneof;
  44. oneof varid = Setup.UtsEnable,
  45. prompt = STRING_TOKEN(STR_UTS_PROMPT),
  46. help = STRING_TOKEN(STR_UTS_HELP),
  47. option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = DEFAULT | RESET_REQUIRED;
  48. option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = RESET_REQUIRED;
  49. endoneof;
  50. //
  51. //Lakemore Settings
  52. //
  53. subtitle text = STRING_TOKEN(STR_NULL_STRING);
  54. subtitle text = STRING_TOKEN(STR_LM_INFORMATION_TITLE);
  55. grayoutif ideqval Setup.PunitBIOSConfig == 0x1;
  56. oneof varid = Setup.LmMemSize,
  57. prompt = STRING_TOKEN (STR_LM_MEMORY_PROMPT),
  58. help = STRING_TOKEN (STR_LM_MEMORY_HELP),
  59. option text = STRING_TOKEN (STR_LM_MEMORY_16MB), value = 16384, flags = RESET_REQUIRED;
  60. option text = STRING_TOKEN (STR_LM_MEMORY_8MB), value = 8192, flags = RESET_REQUIRED;
  61. option text = STRING_TOKEN (STR_LM_MEMORY_1MB), value = 1024, flags = RESET_REQUIRED;
  62. option text = STRING_TOKEN (STR_LM_MEMORY_128KB), value = 128, flags = RESET_REQUIRED;
  63. option text = STRING_TOKEN (STR_LM_MEMORY_0MB), value = 0, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
  64. endoneof;
  65. endif;
  66. oneof varid = Setup.PunitBIOSConfig,
  67. prompt = STRING_TOKEN (STR_PUINT_BIOS_CONFIG_DISPLAY),
  68. help = STRING_TOKEN (STR_PUINT_BIOS_CONFIG_DISPLAY_HELP),
  69. option text = STRING_TOKEN (STR_PUINT_BIOS_PDM), value = 3, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
  70. option text = STRING_TOKEN (STR_PUINT_BIOS_PERFORMANCE), value = 2, flags = RESET_REQUIRED;
  71. option text = STRING_TOKEN (STR_PUINT_BIOS_POWERSAVE), value = 1, flags = RESET_REQUIRED;
  72. option text = STRING_TOKEN (STR_PUINT_BIOS_RESERVED), value = 0, flags = RESET_REQUIRED;
  73. endoneof;
  74. suppressif NOT ideqval Setup.PunitBIOSConfig == 0x3;
  75. oneof varid = Setup.PDMConfig,
  76. prompt = STRING_TOKEN (STR_PDM_OUTPUT_CONFIG_SWTICH),
  77. help = STRING_TOKEN (STR_PDM_OUTPUT_CONFIG_SWTICH_HELP),
  78. option text = STRING_TOKEN (STR_DISABLE), value = 0, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
  79. option text = STRING_TOKEN (STR_PDM_OUTPUT_MEM), value = 1, flags = RESET_REQUIRED;
  80. option text = STRING_TOKEN (STR_PDM_OUTPUT_IO), value = 2, flags = RESET_REQUIRED;
  81. endoneof;
  82. endif;
  83. subtitle text = STRING_TOKEN(STR_NULL_STRING);
  84. oneof varid = Setup.ENDBG2,
  85. prompt = STRING_TOKEN (STR_ENABLE_DBG2),
  86. help = STRING_TOKEN (STR_ENABLE_DBG2_HELP),
  87. option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = RESET_REQUIRED;
  88. option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = DEFAULT | RESET_REQUIRED;
  89. endoneof;
  90. subtitle text = STRING_TOKEN(STR_NULL_STRING);
  91. subtitle text = STRING_TOKEN(STR_NULL_STRING);
  92. oneof varid = Setup.DisableCodec262,
  93. prompt = STRING_TOKEN(STR_CODEC262_DISABLED_PROMPT),
  94. help = STRING_TOKEN(STR_CODEC262_DISABLED_HELP),
  95. option text = STRING_TOKEN(STR_YES), value = 1, flags = RESET_REQUIRED;
  96. option text = STRING_TOKEN(STR_NO), value = 0, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
  97. endoneof;
  98. endform;