Home | History | Annotate | Download | only in PlatformSetupDxe
      1 /*++
      2 
      3   Copyright (c) 2004  - 2014, Intel Corporation. All rights reserved.<BR>
      4 
      5   This program and the accompanying materials are licensed and made available under
      7   the terms and conditions of the BSD License that accompanies this distribution.
      9   The full text of the license may be found at
     11   http://opensource.org/licenses/bsd-license.php.
     13 
     15   THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
     17   WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
     19 
     21 
     23 
     24 Module Name:
     25 
     26     Configuration.h
     27 
     28 Abstract:
     29 
     30     Driver configuration include file
     31 
     32 Revision History:
     33   ------------------------------------------------------------------------------
     34   Rev   Date<MM/DD/YYYY>    Name    Description
     35   ------------------------------------------------------------------------------
     36 
     37   ------------------------------------------------------------------------------
     38 --*/
     39 
     40 #ifndef _CONFIGURATION_H
     41 #define _CONFIGURATION_H
     42 
     43 //
     44 // System Setup Page. Do not have to be sequential but have to be unique
     45 //
     46 #define ROOT_FORM_ID                        1
     47 #define ROOT_MAIN_FORM_ID                   2
     48 #define CPU_CONFIGURATION_FORM_ID           3
     49 #define CPU_PWR_CONFIGURATION_FORM_ID       4
     50 #define BOOT_CONFIGURATION_FORM_ID          5
     51 #define IGD_FORM_ID                         6
     52 #define SECURITY_CONFIGURATION_FORM_ID      7
     53 #define SOUTH_CLUSTER_FORM_ID               8
     54 #define DPTF_FORM_ID                        9
     55 #define PLATFORM_INFORMATION_FORM_ID        10
     56 #define DRIVE_CONFIGURATION_ID              11
     57 #define SENSOR_CONFIGURATION_ID             12
     58 #define LPSS_CONFIGURATION_ID               13
     59 #define UNCORE_FORM_ID                      14
     60 #define TPM_FORM_ID                         15
     61 #define THERMAL_FORM_ID                     16
     62 #define PASSWORD_SETTING_ID                 17
     63 #define LAN_OPTIONS_FORM_ID                 18
     64 #define AZALIA_OPTIONS_FORM_ID              19
     65 #define MISC_OPTIONS_FORM_ID                20
     66 #define USB_OPTIONS_FORM_ID                 21
     67 #define PCIE_DEVICE_OPTIONS_FORM_ID         22
     68 #define SYSTEM_COMPONENT_FORM_ID            23
     69 #define DEBUG_CONFIGURATION_FORM_ID         24
     70 #endif // #ifndef _CONFIGURATION_H
     71