SystemComponent.vfi 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. // SystemComponent.vfr
  13. //
  14. // Abstract:
  15. //
  16. // Driver Setup formset.
  17. //
  18. // Revision History:
  19. // ------------------------------------------------------------------------------
  20. // Rev Date<MM/DD/YYYY> Name Description
  21. // ------------------------------------------------------------------------------
  22. // --*/
  23. form formid = SYSTEM_COMPONENT_FORM_ID,
  24. title = STRING_TOKEN(STR_SYSTEM_COMPONENT_TITLE);
  25. /*
  26. oneof varid = Setup.CRIDSettings,
  27. prompt = STRING_TOKEN(STR_CRID_PROMPT),
  28. help = STRING_TOKEN(STR_CRID_SETTING_HELP),
  29. option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = MANUFACTURING | DEFAULT | RESET_REQUIRED;
  30. option text = STRING_TOKEN(STR_CRID_0_STRING), value = 1, flags = RESET_REQUIRED;
  31. option text = STRING_TOKEN(STR_CRID_1_STRING), value = 2, flags = RESET_REQUIRED;
  32. option text = STRING_TOKEN(STR_CRID_2_STRING), value = 3, flags = RESET_REQUIRED;
  33. endoneof;
  34. */
  35. subtitle text = STRING_TOKEN(STR_PNP_CONFIGURATION_TITLE);
  36. oneof varid = Setup.PnpSettings,
  37. prompt = STRING_TOKEN(STR_PNP_SETTING_PROMPT),
  38. help = STRING_TOKEN(STR_PNP_SETTING_HELP),
  39. option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = RESET_REQUIRED;
  40. #if (PNP_DEBUG == 1)
  41. option text = STRING_TOKEN(STR_PNP_POWER_STRING), value = 1, flags = RESET_REQUIRED;
  42. option text = STRING_TOKEN(STR_PNP_PERFORMANCE_STRING), value = 2, flags = RESET_REQUIRED;
  43. #endif
  44. option text = STRING_TOKEN(STR_PNP_POWER_PERFORMANCE_STRING), value = 3, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
  45. option text = STRING_TOKEN(STR_PNP_POWER_PERFORMANCE_STRING_A0), value = 4, flags = 0 | RESET_REQUIRED;
  46. option text = STRING_TOKEN(STR_PNP_POWER_PERFORMANCE_STRING_B0), value = 5, flags = 0 | RESET_REQUIRED;
  47. endoneof;
  48. oneof varid = Setup.CfioPnpSettings,
  49. prompt = STRING_TOKEN(STR_CFIO_PNP_SETTING_PROMPT),
  50. help = STRING_TOKEN(STR_CFIO_PNP_SETTING_HELP),
  51. option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = MANUFACTURING | DEFAULT | RESET_REQUIRED;
  52. option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = 0 | RESET_REQUIRED;
  53. endoneof;
  54. oneof varid = Setup.TristateLpc,
  55. prompt = STRING_TOKEN(STR_TRISTATE_LPC_PROMPT),
  56. help = STRING_TOKEN(STR_TRISTATE_LPC_HELP),
  57. option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = MANUFACTURING | DEFAULT | RESET_REQUIRED;
  58. option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = 0 | RESET_REQUIRED;
  59. endoneof;
  60. oneof varid = Setup.PchFSAOn,
  61. prompt = STRING_TOKEN(STR_PCH_FSA_PROMPT),
  62. help = STRING_TOKEN(STR_PCH_FSA_HELP),
  63. option text = STRING_TOKEN(STR_OFF), value = 0, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED;
  64. option text = STRING_TOKEN(STR_ON), value = 1, flags = RESET_REQUIRED;
  65. endoneof;
  66. endform;