Home | History | Annotate | Download | only in Include
      1 /*++
      2 
      3 Copyright (c) 2004 - 2011, Intel Corporation. All rights reserved.<BR>
      4 This program and the accompanying materials
      5 are licensed and made available under the terms and conditions of the BSD License
      6 which accompanies this distribution.  The full text of the license may be found at
      7 http://opensource.org/licenses/bsd-license.php
      8 
      9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
     10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
     11 
     12 Module Name:
     13 
     14   EfiStatusCode.h
     15 
     16 Abstract:
     17 
     18   Status Code Definitions, according to Intel Platform Innovation Framework
     19   for EFI Status Codes Specification
     20   Revision 0.92
     21 
     22   The file is divided into sections for ease of use.
     23 
     24   Section:    Contents:
     25     1           General Status Code Definitions
     26     2           Class definitions
     27     3           Computing Unit Subclasses, Progress and Error Codes
     28     4           Peripheral Subclasses, Progress and Error Codes.
     29     5           IO Bus Subclasses, Progress and Error Codes.
     30     6           Software Subclasses, Progress and Error Codes.
     31     7           Debug Codes
     32 
     33 --*/
     34 
     35 #ifndef _EFI_STATUS_CODE_H_
     36 #define _EFI_STATUS_CODE_H_
     37 
     38 //
     39 // /////////////////////////////////////////////////////////////////////////////
     40 // Section 1
     41 ///////////////////////////////////////////////////////////////////////////////
     42 //
     43 // Status Code Type Definition
     44 //
     45 typedef UINT32  EFI_STATUS_CODE_TYPE;
     46 
     47 //
     48 // A Status Code Type is made up of the code type and severity
     49 // All values masked by EFI_STATUS_CODE_RESERVED_MASK are
     50 // reserved for use by this specification.
     51 //
     52 #define EFI_STATUS_CODE_TYPE_MASK     0x000000FF
     53 #define EFI_STATUS_CODE_SEVERITY_MASK 0xFF000000
     54 #define EFI_STATUS_CODE_RESERVED_MASK 0x00FFFF00
     55 
     56 //
     57 // Definition of code types, all other values masked by
     58 // EFI_STATUS_CODE_TYPE_MASK are reserved for use by
     59 // this specification.
     60 //
     61 #define EFI_PROGRESS_CODE 0x00000001
     62 #define EFI_ERROR_CODE    0x00000002
     63 #define EFI_DEBUG_CODE    0x00000003
     64 
     65 //
     66 // Definitions of severities, all other values masked by
     67 // EFI_STATUS_CODE_SEVERITY_MASK are reserved for use by
     68 // this specification.
     69 //
     70 #define EFI_ERROR_MINOR       0x40000000
     71 #define EFI_ERROR_MAJOR       0x80000000
     72 #define EFI_ERROR_UNRECOVERED 0x90000000
     73 #define EFI_ERROR_UNCONTAINED 0xA0000000
     74 
     75 //
     76 // Status Code Value Definition
     77 //
     78 typedef UINT32  EFI_STATUS_CODE_VALUE;
     79 
     80 //
     81 // A Status Code Value is made up of the class, subclass, and
     82 // an operation.  Classes, subclasses, and operations are defined
     83 // in the following sections.
     84 //
     85 #define EFI_STATUS_CODE_CLASS_MASK      0xFF000000
     86 #define EFI_STATUS_CODE_SUBCLASS_MASK   0x00FF0000
     87 #define EFI_STATUS_CODE_OPERATION_MASK  0x0000FFFF
     88 
     89 typedef struct {
     90   UINT16    HeaderSize;
     91   UINT16    Size;
     92   EFI_GUID  Type;
     93 } EFI_STATUS_CODE_DATA;
     94 
     95 //
     96 // Data Hub Status Code class record definition
     97 //
     98 typedef struct {
     99   EFI_STATUS_CODE_TYPE  CodeType;
    100   EFI_STATUS_CODE_VALUE Value;
    101   UINT32                Instance;
    102   EFI_GUID              CallerId;
    103   EFI_STATUS_CODE_DATA  Data;
    104 } DATA_HUB_STATUS_CODE_DATA_RECORD;
    105 
    106 //
    107 // /////////////////////////////////////////////////////////////////////////////
    108 // Section 2
    109 ///////////////////////////////////////////////////////////////////////////////
    110 //
    111 // Class definitions
    112 // Values of 4-127 are reserved for future use by this
    113 // specification.
    114 // Values in the range 128-255 are reserved for OEM use.
    115 //
    116 #define EFI_COMPUTING_UNIT  0x00000000
    117 #define EFI_PERIPHERAL      0x01000000
    118 #define EFI_IO_BUS          0x02000000
    119 #define EFI_SOFTWARE        0x03000000
    120 
    121 //
    122 // General partitioning scheme for Progress and Error Codes are
    123 // 0x0000-0x0FFF  - Shared by all sub-classes in a given class
    124 // 0x1000-0x7FFF  - Subclass Specific
    125 // 0x8000-0xFFFF  - OEM specific
    126 //
    127 #define EFI_SUBCLASS_SPECIFIC 0x1000
    128 #define EFI_OEM_SPECIFIC      0x8000
    129 
    130 //
    131 // /////////////////////////////////////////////////////////////////////////////
    132 // Section 3
    133 ///////////////////////////////////////////////////////////////////////////////
    134 //
    135 // Computing Unit Subclass definitions.
    136 // Values of 7-127 are reserved for future use by this
    137 // specification.
    138 // Values of 128-255 are reserved for OEM use.
    139 //
    140 #define EFI_COMPUTING_UNIT_UNSPECIFIED        (EFI_COMPUTING_UNIT | 0x00000000)
    141 #define EFI_COMPUTING_UNIT_HOST_PROCESSOR     (EFI_COMPUTING_UNIT | 0x00010000)
    142 #define EFI_COMPUTING_UNIT_FIRMWARE_PROCESSOR (EFI_COMPUTING_UNIT | 0x00020000)
    143 #define EFI_COMPUTING_UNIT_IO_PROCESSOR       (EFI_COMPUTING_UNIT | 0x00030000)
    144 #define EFI_COMPUTING_UNIT_CACHE              (EFI_COMPUTING_UNIT | 0x00040000)
    145 #define EFI_COMPUTING_UNIT_MEMORY             (EFI_COMPUTING_UNIT | 0x00050000)
    146 #define EFI_COMPUTING_UNIT_CHIPSET            (EFI_COMPUTING_UNIT | 0x00060000)
    147 
    148 //
    149 // Computing Unit Class Progress Code definitions.
    150 // These are shared by all subclasses.
    151 //
    152 #define EFI_CU_PC_INIT_BEGIN  0x00000000
    153 #define EFI_CU_PC_INIT_END    0x00000001
    154 
    155 //
    156 // Computing Unit Unspecified Subclass Progress Code definitions.
    157 //
    158 //
    159 // Computing Unit Host Processor Subclass Progress Code definitions.
    160 //
    161 #define EFI_CU_HP_PC_POWER_ON_INIT          (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    162 #define EFI_CU_HP_PC_CACHE_INIT             (EFI_SUBCLASS_SPECIFIC | 0x00000001)
    163 #define EFI_CU_HP_PC_RAM_INIT               (EFI_SUBCLASS_SPECIFIC | 0x00000002)
    164 #define EFI_CU_HP_PC_MEMORY_CONTROLLER_INIT (EFI_SUBCLASS_SPECIFIC | 0x00000003)
    165 #define EFI_CU_HP_PC_IO_INIT                (EFI_SUBCLASS_SPECIFIC | 0x00000004)
    166 #define EFI_CU_HP_PC_BSP_SELECT             (EFI_SUBCLASS_SPECIFIC | 0x00000005)
    167 #define EFI_CU_HP_PC_BSP_RESELECT           (EFI_SUBCLASS_SPECIFIC | 0x00000006)
    168 #define EFI_CU_HP_PC_AP_INIT                (EFI_SUBCLASS_SPECIFIC | 0x00000007)
    169 #define EFI_CU_HP_PC_SMM_INIT               (EFI_SUBCLASS_SPECIFIC | 0x00000008)
    170 
    171 //
    172 // Computing Unit Firmware Processor Subclass Progress Code definitions.
    173 //
    174 //
    175 // Computing Unit IO Processor Subclass Progress Code definitions.
    176 //
    177 //
    178 // Computing Unit Cache Subclass Progress Code definitions.
    179 //
    180 #define EFI_CU_CACHE_PC_PRESENCE_DETECT (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    181 #define EFI_CU_CACHE_PC_CONFIGURATION   (EFI_SUBCLASS_SPECIFIC | 0x00000001)
    182 
    183 //
    184 // Computing Unit Memory Subclass Progress Code definitions.
    185 //
    186 #define EFI_CU_MEMORY_PC_SPD_READ         (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    187 #define EFI_CU_MEMORY_PC_PRESENCE_DETECT  (EFI_SUBCLASS_SPECIFIC | 0x00000001)
    188 #define EFI_CU_MEMORY_PC_TIMING           (EFI_SUBCLASS_SPECIFIC | 0x00000002)
    189 #define EFI_CU_MEMORY_PC_CONFIGURING      (EFI_SUBCLASS_SPECIFIC | 0x00000003)
    190 #define EFI_CU_MEMORY_PC_OPTIMIZING       (EFI_SUBCLASS_SPECIFIC | 0x00000004)
    191 #define EFI_CU_MEMORY_PC_INIT             (EFI_SUBCLASS_SPECIFIC | 0x00000005)
    192 #define EFI_CU_MEMORY_PC_TEST             (EFI_SUBCLASS_SPECIFIC | 0x00000006)
    193 
    194 //
    195 // Computing Unit Chipset Subclass Progress Code definitions.
    196 //
    197 //
    198 // Computing Unit Class Error Code definitions.
    199 // These are shared by all subclasses.
    200 //
    201 #define EFI_CU_EC_NON_SPECIFIC    0x00000000
    202 #define EFI_CU_EC_DISABLED        0x00000001
    203 #define EFI_CU_EC_NOT_SUPPORTED   0x00000002
    204 #define EFI_CU_EC_NOT_DETECTED    0x00000003
    205 #define EFI_CU_EC_NOT_CONFIGURED  0x00000004
    206 
    207 //
    208 // Computing Unit Unspecified Subclass Error Code definitions.
    209 //
    210 //
    211 // Computing Unit Host Processor Subclass Error Code definitions.
    212 //
    213 #define EFI_CU_HP_EC_INVALID_TYPE         (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    214 #define EFI_CU_HP_EC_INVALID_SPEED        (EFI_SUBCLASS_SPECIFIC | 0x00000001)
    215 #define EFI_CU_HP_EC_MISMATCH             (EFI_SUBCLASS_SPECIFIC | 0x00000002)
    216 #define EFI_CU_HP_EC_TIMER_EXPIRED        (EFI_SUBCLASS_SPECIFIC | 0x00000003)
    217 #define EFI_CU_HP_EC_SELF_TEST            (EFI_SUBCLASS_SPECIFIC | 0x00000004)
    218 #define EFI_CU_HP_EC_INTERNAL             (EFI_SUBCLASS_SPECIFIC | 0x00000005)
    219 #define EFI_CU_HP_EC_THERMAL              (EFI_SUBCLASS_SPECIFIC | 0x00000006)
    220 #define EFI_CU_HP_EC_LOW_VOLTAGE          (EFI_SUBCLASS_SPECIFIC | 0x00000007)
    221 #define EFI_CU_HP_EC_HIGH_VOLTAGE         (EFI_SUBCLASS_SPECIFIC | 0x00000008)
    222 #define EFI_CU_HP_EC_CACHE                (EFI_SUBCLASS_SPECIFIC | 0x00000009)
    223 #define EFI_CU_HP_EC_MICROCODE_UPDATE     (EFI_SUBCLASS_SPECIFIC | 0x0000000A)
    224 #define EFI_CU_HP_EC_CORRECTABLE          (EFI_SUBCLASS_SPECIFIC | 0x0000000B)
    225 #define EFI_CU_HP_EC_UNCORRECTABLE        (EFI_SUBCLASS_SPECIFIC | 0x0000000C)
    226 #define EFI_CU_HP_EC_NO_MICROCODE_UPDATE  (EFI_SUBCLASS_SPECIFIC | 0x0000000D)
    227 
    228 //
    229 // Computing Unit Firmware Processor Subclass Error Code definitions.
    230 //
    231 #define EFI_CU_FP_EC_HARD_FAIL  (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    232 #define EFI_CU_FP_EC_SOFT_FAIL  (EFI_SUBCLASS_SPECIFIC | 0x00000001)
    233 #define EFI_CU_FP_EC_COMM_ERROR (EFI_SUBCLASS_SPECIFIC | 0x00000002)
    234 
    235 //
    236 // Computing Unit IO Processor Subclass Error Code definitions.
    237 //
    238 //
    239 // Computing Unit Cache Subclass Error Code definitions.
    240 //
    241 #define EFI_CU_CACHE_EC_INVALID_TYPE  (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    242 #define EFI_CU_CACHE_EC_INVALID_SPEED (EFI_SUBCLASS_SPECIFIC | 0x00000001)
    243 #define EFI_CU_CACHE_EC_INVALID_SIZE  (EFI_SUBCLASS_SPECIFIC | 0x00000002)
    244 #define EFI_CU_CACHE_EC_MISMATCH      (EFI_SUBCLASS_SPECIFIC | 0x00000003)
    245 
    246 //
    247 // Computing Unit Memory Subclass Error Code definitions.
    248 //
    249 #define EFI_CU_MEMORY_EC_INVALID_TYPE   (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    250 #define EFI_CU_MEMORY_EC_INVALID_SPEED  (EFI_SUBCLASS_SPECIFIC | 0x00000001)
    251 #define EFI_CU_MEMORY_EC_CORRECTABLE    (EFI_SUBCLASS_SPECIFIC | 0x00000002)
    252 #define EFI_CU_MEMORY_EC_UNCORRECTABLE  (EFI_SUBCLASS_SPECIFIC | 0x00000003)
    253 #define EFI_CU_MEMORY_EC_SPD_FAIL       (EFI_SUBCLASS_SPECIFIC | 0x00000004)
    254 #define EFI_CU_MEMORY_EC_INVALID_SIZE   (EFI_SUBCLASS_SPECIFIC | 0x00000005)
    255 #define EFI_CU_MEMORY_EC_MISMATCH       (EFI_SUBCLASS_SPECIFIC | 0x00000006)
    256 #define EFI_CU_MEMORY_EC_S3_RESUME_FAIL (EFI_SUBCLASS_SPECIFIC | 0x00000007)
    257 #define EFI_CU_MEMORY_EC_UPDATE_FAIL    (EFI_SUBCLASS_SPECIFIC | 0x00000008)
    258 #define EFI_CU_MEMORY_EC_NONE_DETECTED  (EFI_SUBCLASS_SPECIFIC | 0x00000009)
    259 #define EFI_CU_MEMORY_EC_NONE_USEFUL    (EFI_SUBCLASS_SPECIFIC | 0x0000000A)
    260 
    261 //
    262 // Computing Unit Chipset Subclass Error Code definitions.
    263 //
    264 
    265 ///////////////////////////////////////////////////////////////////////////////
    266 // Section 4
    267 ///////////////////////////////////////////////////////////////////////////////
    268 //
    269 // Peripheral Subclass definitions.
    270 // Values of 13-127 are reserved for future use by this
    271 // specification.
    272 // Values of 128-255 are reserved for OEM use.
    273 //
    274 #define EFI_PERIPHERAL_UNSPECIFIED      (EFI_PERIPHERAL | 0x00000000)
    275 #define EFI_PERIPHERAL_KEYBOARD         (EFI_PERIPHERAL | 0x00010000)
    276 #define EFI_PERIPHERAL_MOUSE            (EFI_PERIPHERAL | 0x00020000)
    277 #define EFI_PERIPHERAL_LOCAL_CONSOLE    (EFI_PERIPHERAL | 0x00030000)
    278 #define EFI_PERIPHERAL_REMOTE_CONSOLE   (EFI_PERIPHERAL | 0x00040000)
    279 #define EFI_PERIPHERAL_SERIAL_PORT      (EFI_PERIPHERAL | 0x00050000)
    280 #define EFI_PERIPHERAL_PARALLEL_PORT    (EFI_PERIPHERAL | 0x00060000)
    281 #define EFI_PERIPHERAL_FIXED_MEDIA      (EFI_PERIPHERAL | 0x00070000)
    282 #define EFI_PERIPHERAL_REMOVABLE_MEDIA  (EFI_PERIPHERAL | 0x00080000)
    283 #define EFI_PERIPHERAL_AUDIO_INPUT      (EFI_PERIPHERAL | 0x00090000)
    284 #define EFI_PERIPHERAL_AUDIO_OUTPUT     (EFI_PERIPHERAL | 0x000A0000)
    285 #define EFI_PERIPHERAL_LCD_DEVICE       (EFI_PERIPHERAL | 0x000B0000)
    286 #define EFI_PERIPHERAL_NETWORK          (EFI_PERIPHERAL | 0x000C0000)
    287 
    288 //
    289 // Peripheral Class Progress Code definitions.
    290 // These are shared by all subclasses.
    291 //
    292 #define EFI_P_PC_INIT             0x00000000
    293 #define EFI_P_PC_RESET            0x00000001
    294 #define EFI_P_PC_DISABLE          0x00000002
    295 #define EFI_P_PC_PRESENCE_DETECT  0x00000003
    296 #define EFI_P_PC_ENABLE           0x00000004
    297 #define EFI_P_PC_RECONFIG         0x00000005
    298 #define EFI_P_PC_DETECTED         0x00000006
    299 
    300 //
    301 // Peripheral Class Unspecified Subclass Progress Code definitions.
    302 //
    303 //
    304 // Peripheral Class Keyboard Subclass Progress Code definitions.
    305 //
    306 #define EFI_P_KEYBOARD_PC_CLEAR_BUFFER  (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    307 #define EFI_P_KEYBOARD_PC_SELF_TEST     (EFI_SUBCLASS_SPECIFIC | 0x00000001)
    308 
    309 //
    310 // Peripheral Class Mouse Subclass Progress Code definitions.
    311 //
    312 #define EFI_P_MOUSE_PC_SELF_TEST  (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    313 
    314 //
    315 // Peripheral Class Local Console Subclass Progress Code definitions.
    316 //
    317 //
    318 // Peripheral Class Remote Console Subclass Progress Code definitions.
    319 //
    320 //
    321 // Peripheral Class Serial Port Subclass Progress Code definitions.
    322 //
    323 #define EFI_P_SERIAL_PORT_PC_CLEAR_BUFFER (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    324 
    325 //
    326 // Peripheral Class Parallel Port Subclass Progress Code definitions.
    327 //
    328 //
    329 // Peripheral Class Fixed Media Subclass Progress Code definitions.
    330 //
    331 //
    332 // Peripheral Class Removable Media Subclass Progress Code definitions.
    333 //
    334 //
    335 // Peripheral Class Audio Input Subclass Progress Code definitions.
    336 //
    337 //
    338 // Peripheral Class Audio Output Subclass Progress Code definitions.
    339 //
    340 //
    341 // Peripheral Class LCD Device Subclass Progress Code definitions.
    342 //
    343 //
    344 // Peripheral Class Network Subclass Progress Code definitions.
    345 //
    346 //
    347 // Peripheral Class Error Code definitions.
    348 // These are shared by all subclasses.
    349 //
    350 #define EFI_P_EC_NON_SPECIFIC       0x00000000
    351 #define EFI_P_EC_DISABLED           0x00000001
    352 #define EFI_P_EC_NOT_SUPPORTED      0x00000002
    353 #define EFI_P_EC_NOT_DETECTED       0x00000003
    354 #define EFI_P_EC_NOT_CONFIGURED     0x00000004
    355 #define EFI_P_EC_INTERFACE_ERROR    0x00000005
    356 #define EFI_P_EC_CONTROLLER_ERROR   0x00000006
    357 #define EFI_P_EC_INPUT_ERROR        0x00000007
    358 #define EFI_P_EC_OUTPUT_ERROR       0x00000008
    359 #define EFI_P_EC_RESOURCE_CONFLICT  0x00000009
    360 
    361 //
    362 // Peripheral Class Unspecified Subclass Error Code definitions.
    363 //
    364 //
    365 // Peripheral Class Keyboard Subclass Error Code definitions.
    366 //
    367 #define EFI_P_KEYBOARD_EC_LOCKED    (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    368 #define EFI_P_KEYBOARD_EC_STUCK_KEY (EFI_SUBCLASS_SPECIFIC | 0x00000001)
    369 
    370 //
    371 // Peripheral Class Mouse Subclass Error Code definitions.
    372 //
    373 #define EFI_P_MOUSE_EC_LOCKED (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    374 
    375 //
    376 // Peripheral Class Local Console Subclass Error Code definitions.
    377 //
    378 //
    379 // Peripheral Class Remote Console Subclass Error Code definitions.
    380 //
    381 //
    382 // Peripheral Class Serial Port Subclass Error Code definitions.
    383 //
    384 //
    385 // Peripheral Class Parallel Port Subclass Error Code definitions.
    386 //
    387 //
    388 // Peripheral Class Fixed Media Subclass Error Code definitions.
    389 //
    390 //
    391 // Peripheral Class Removable Media Subclass Error Code definitions.
    392 //
    393 //
    394 // Peripheral Class Audio Input Subclass Error Code definitions.
    395 //
    396 //
    397 // Peripheral Class Audio Output Subclass Error Code definitions.
    398 //
    399 //
    400 // Peripheral Class LCD Device Subclass Error Code definitions.
    401 //
    402 //
    403 // Peripheral Class Network Subclass Error Code definitions.
    404 //
    405 
    406 ///////////////////////////////////////////////////////////////////////////////
    407 // Section 5
    408 ///////////////////////////////////////////////////////////////////////////////
    409 //
    410 // IO Bus Subclass definitions.
    411 // Values of 13-127 are reserved for future use by this
    412 // specification.
    413 // Values of 128-255 are reserved for OEM use.
    414 //
    415 #define EFI_IO_BUS_UNSPECIFIED  (EFI_IO_BUS | 0x00000000)
    416 #define EFI_IO_BUS_PCI          (EFI_IO_BUS | 0x00010000)
    417 #define EFI_IO_BUS_USB          (EFI_IO_BUS | 0x00020000)
    418 #define EFI_IO_BUS_IBA          (EFI_IO_BUS | 0x00030000)
    419 #define EFI_IO_BUS_AGP          (EFI_IO_BUS | 0x00040000)
    420 #define EFI_IO_BUS_PC_CARD      (EFI_IO_BUS | 0x00050000)
    421 #define EFI_IO_BUS_LPC          (EFI_IO_BUS | 0x00060000)
    422 #define EFI_IO_BUS_SCSI         (EFI_IO_BUS | 0x00070000)
    423 #define EFI_IO_BUS_ATA_ATAPI    (EFI_IO_BUS | 0x00080000)
    424 #define EFI_IO_BUS_FC           (EFI_IO_BUS | 0x00090000)
    425 #define EFI_IO_BUS_IP_NETWORK   (EFI_IO_BUS | 0x000A0000)
    426 #define EFI_IO_BUS_SMBUS        (EFI_IO_BUS | 0x000B0000)
    427 #define EFI_IO_BUS_I2C          (EFI_IO_BUS | 0x000C0000)
    428 
    429 //
    430 // IO Bus Class Progress Code definitions.
    431 // These are shared by all subclasses.
    432 //
    433 #define EFI_IOB_PC_INIT     0x00000000
    434 #define EFI_IOB_PC_RESET    0x00000001
    435 #define EFI_IOB_PC_DISABLE  0x00000002
    436 #define EFI_IOB_PC_DETECT   0x00000003
    437 #define EFI_IOB_PC_ENABLE   0x00000004
    438 #define EFI_IOB_PC_RECONFIG 0x00000005
    439 #define EFI_IOB_PC_HOTPLUG  0x00000006
    440 
    441 //
    442 // IO Bus Class Unspecified Subclass Progress Code definitions.
    443 //
    444 //
    445 // IO Bus Class PCI Subclass Progress Code definitions.
    446 //
    447 #define EFI_IOB_PCI_PC_BUS_ENUM   (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    448 #define EFI_IOB_PCI_PC_RES_ALLOC  (EFI_SUBCLASS_SPECIFIC | 0x00000001)
    449 #define EFI_IOB_PCI_PC_HPC_INIT   (EFI_SUBCLASS_SPECIFIC | 0x00000002)
    450 
    451 //
    452 // IO Bus Class USB Subclass Progress Code definitions.
    453 //
    454 //
    455 // IO Bus Class IBA Subclass Progress Code definitions.
    456 //
    457 //
    458 // IO Bus Class AGP Subclass Progress Code definitions.
    459 //
    460 //
    461 // IO Bus Class PC Card Subclass Progress Code definitions.
    462 //
    463 //
    464 // IO Bus Class LPC Subclass Progress Code definitions.
    465 //
    466 //
    467 // IO Bus Class SCSI Subclass Progress Code definitions.
    468 //
    469 //
    470 // IO Bus Class ATA/ATAPI Subclass Progress Code definitions.
    471 //
    472 #define EFI_IOB_ATA_BUS_SMART_ENABLE          (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    473 #define EFI_IOB_ATA_BUS_SMART_DISABLE         (EFI_SUBCLASS_SPECIFIC | 0x00000001)
    474 #define EFI_IOB_ATA_BUS_SMART_OVERTHRESHOLD   (EFI_SUBCLASS_SPECIFIC | 0x00000002)
    475 #define EFI_IOB_ATA_BUS_SMART_UNDERTHRESHOLD  (EFI_SUBCLASS_SPECIFIC | 0x00000003)
    476 
    477 //
    478 // IO Bus Class FC Subclass Progress Code definitions.
    479 //
    480 //
    481 // IO Bus Class IP Network Subclass Progress Code definitions.
    482 //
    483 //
    484 // IO Bus Class SMBUS Subclass Progress Code definitions.
    485 //
    486 //
    487 // IO Bus Class I2C Subclass Progress Code definitions.
    488 //
    489 //
    490 // IO Bus Class Error Code definitions.
    491 // These are shared by all subclasses.
    492 //
    493 #define EFI_IOB_EC_NON_SPECIFIC       0x00000000
    494 #define EFI_IOB_EC_DISABLED           0x00000001
    495 #define EFI_IOB_EC_NOT_SUPPORTED      0x00000002
    496 #define EFI_IOB_EC_NOT_DETECTED       0x00000003
    497 #define EFI_IOB_EC_NOT_CONFIGURED     0x00000004
    498 #define EFI_IOB_EC_INTERFACE_ERROR    0x00000005
    499 #define EFI_IOB_EC_CONTROLLER_ERROR   0x00000006
    500 #define EFI_IOB_EC_READ_ERROR         0x00000007
    501 #define EFI_IOB_EC_WRITE_ERROR        0x00000008
    502 #define EFI_IOB_EC_RESOURCE_CONFLICT  0x00000009
    503 
    504 //
    505 // IO Bus Class Unspecified Subclass Error Code definitions.
    506 //
    507 //
    508 // IO Bus Class PCI Subclass Error Code definitions.
    509 //
    510 #define EFI_IOB_PCI_EC_PERR (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    511 #define EFI_IOB_PCI_EC_SERR (EFI_SUBCLASS_SPECIFIC | 0x00000001)
    512 
    513 //
    514 // IO Bus Class USB Subclass Error Code definitions.
    515 //
    516 //
    517 // IO Bus Class IBA Subclass Error Code definitions.
    518 //
    519 //
    520 // IO Bus Class AGP Subclass Error Code definitions.
    521 //
    522 //
    523 // IO Bus Class PC Card Subclass Error Code definitions.
    524 //
    525 //
    526 // IO Bus Class LPC Subclass Error Code definitions.
    527 //
    528 //
    529 // IO Bus Class SCSI Subclass Error Code definitions.
    530 //
    531 //
    532 // IO Bus Class ATA/ATAPI Subclass Error Code definitions.
    533 //
    534 #define EFI_IOB_ATA_BUS_SMART_NOTSUPPORTED  (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    535 #define EFI_IOB_ATA_BUS_SMART_DISABLED      (EFI_SUBCLASS_SPECIFIC | 0x00000001)
    536 
    537 //
    538 // IO Bus Class FC Subclass Error Code definitions.
    539 //
    540 //
    541 // IO Bus Class IP Network Subclass Error Code definitions.
    542 //
    543 //
    544 // IO Bus Class SMBUS Subclass Error Code definitions.
    545 //
    546 //
    547 // IO Bus Class I2C Subclass Error Code definitions.
    548 //
    549 
    550 ///////////////////////////////////////////////////////////////////////////////
    551 // Section 6
    552 ///////////////////////////////////////////////////////////////////////////////
    553 //
    554 // Software Subclass definitions.
    555 // Values of 20-127 are reserved for future use by this
    556 // specification.
    557 // Values of 128-255 are reserved for OEM use.
    558 //
    559 #define EFI_SOFTWARE_UNSPECIFIED          (EFI_SOFTWARE | 0x00000000)
    560 #define EFI_SOFTWARE_SEC                  (EFI_SOFTWARE | 0x00010000)
    561 #define EFI_SOFTWARE_PEI_CORE             (EFI_SOFTWARE | 0x00020000)
    562 #define EFI_SOFTWARE_PEI_MODULE           (EFI_SOFTWARE | 0x00030000)
    563 #define EFI_SOFTWARE_DXE_CORE             (EFI_SOFTWARE | 0x00040000)
    564 #define EFI_SOFTWARE_DXE_BS_DRIVER        (EFI_SOFTWARE | 0x00050000)
    565 #define EFI_SOFTWARE_DXE_RT_DRIVER        (EFI_SOFTWARE | 0x00060000)
    566 #define EFI_SOFTWARE_SMM_DRIVER           (EFI_SOFTWARE | 0x00070000)
    567 #define EFI_SOFTWARE_EFI_APPLICATION      (EFI_SOFTWARE | 0x00080000)
    568 #define EFI_SOFTWARE_EFI_OS_LOADER        (EFI_SOFTWARE | 0x00090000)
    569 #define EFI_SOFTWARE_RT                   (EFI_SOFTWARE | 0x000A0000)
    570 #define EFI_SOFTWARE_AL                   (EFI_SOFTWARE | 0x000B0000)
    571 #define EFI_SOFTWARE_EBC_EXCEPTION        (EFI_SOFTWARE | 0x000C0000)
    572 #define EFI_SOFTWARE_IA32_EXCEPTION       (EFI_SOFTWARE | 0x000D0000)
    573 #define EFI_SOFTWARE_IPF_EXCEPTION        (EFI_SOFTWARE | 0x000E0000)
    574 #define EFI_SOFTWARE_PEI_SERVICE          (EFI_SOFTWARE | 0x000F0000)
    575 #define EFI_SOFTWARE_EFI_BOOT_SERVICE     (EFI_SOFTWARE | 0x00100000)
    576 #define EFI_SOFTWARE_EFI_RUNTIME_SERVICE  (EFI_SOFTWARE | 0x00110000)
    577 #define EFI_SOFTWARE_EFI_DXE_SERVICE      (EFI_SOFTWARE | 0x00120000)
    578 #define EFI_SOFTWARE_X64_EXCEPTION        (EFI_SOFTWARE | 0x00130000)
    579 
    580 //
    581 // Software Class Progress Code definitions.
    582 // These are shared by all subclasses.
    583 //
    584 #define EFI_SW_PC_INIT                0x00000000
    585 #define EFI_SW_PC_LOAD                0x00000001
    586 #define EFI_SW_PC_INIT_BEGIN          0x00000002
    587 #define EFI_SW_PC_INIT_END            0x00000003
    588 #define EFI_SW_PC_AUTHENTICATE_BEGIN  0x00000004
    589 #define EFI_SW_PC_AUTHENTICATE_END    0x00000005
    590 #define EFI_SW_PC_INPUT_WAIT          0x00000006
    591 #define EFI_SW_PC_USER_SETUP          0x00000007
    592 
    593 //
    594 // Software Class Unspecified Subclass Progress Code definitions.
    595 //
    596 //
    597 // Software Class SEC Subclass Progress Code definitions.
    598 //
    599 #define EFI_SW_SEC_PC_ENTRY_POINT     (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    600 #define EFI_SW_SEC_PC_HANDOFF_TO_NEXT (EFI_SUBCLASS_SPECIFIC | 0x00000001)
    601 
    602 //
    603 // Software Class PEI Core Subclass Progress Code definitions.
    604 //
    605 #define EFI_SW_PEI_CORE_PC_ENTRY_POINT      (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    606 #define EFI_SW_PEI_CORE_PC_HANDOFF_TO_NEXT  (EFI_SUBCLASS_SPECIFIC | 0x00000001)
    607 #define EFI_SW_PEI_CORE_PC_RETURN_TO_LAST   (EFI_SUBCLASS_SPECIFIC | 0x00000002)
    608 
    609 //
    610 // Software Class PEI Module Subclass Progress Code definitions.
    611 //
    612 #define EFI_SW_PEIM_PC_RECOVERY_BEGIN (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    613 #define EFI_SW_PEIM_PC_CAPSULE_LOAD   (EFI_SUBCLASS_SPECIFIC | 0x00000001)
    614 #define EFI_SW_PEIM_PC_CAPSULE_START  (EFI_SUBCLASS_SPECIFIC | 0x00000002)
    615 #define EFI_SW_PEIM_PC_RECOVERY_USER  (EFI_SUBCLASS_SPECIFIC | 0x00000003)
    616 #define EFI_SW_PEIM_PC_RECOVERY_AUTO  (EFI_SUBCLASS_SPECIFIC | 0x00000004)
    617 
    618 //
    619 // Software Class DXE Core Subclass Progress Code definitions.
    620 //
    621 #define EFI_SW_DXE_CORE_PC_ENTRY_POINT      (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    622 #define EFI_SW_DXE_CORE_PC_HANDOFF_TO_NEXT  (EFI_SUBCLASS_SPECIFIC | 0x00000001)
    623 #define EFI_SW_DXE_CORE_PC_RETURN_TO_LAST   (EFI_SUBCLASS_SPECIFIC | 0x00000002)
    624 #define EFI_SW_DXE_CORE_PC_START_DRIVER     (EFI_SUBCLASS_SPECIFIC | 0x00000003)
    625 
    626 //
    627 // Software Class DXE BS Driver Subclass Progress Code definitions.
    628 //
    629 #define EFI_SW_DXE_BS_PC_LEGACY_OPROM_INIT            (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    630 #define EFI_SW_DXE_BS_PC_READY_TO_BOOT_EVENT          (EFI_SUBCLASS_SPECIFIC | 0x00000001)
    631 #define EFI_SW_DXE_BS_PC_LEGACY_BOOT_EVENT            (EFI_SUBCLASS_SPECIFIC | 0x00000002)
    632 #define EFI_SW_DXE_BS_PC_EXIT_BOOT_SERVICES_EVENT     (EFI_SUBCLASS_SPECIFIC | 0x00000003)
    633 #define EFI_SW_DXE_BS_PC_VIRTUAL_ADDRESS_CHANGE_EVENT (EFI_SUBCLASS_SPECIFIC | 0x00000004)
    634 #define EFI_SW_DXE_BS_PC_BEGIN_CONNECTING_DRIVERS     (EFI_SUBCLASS_SPECIFIC | 0x00000005)
    635 #define EFI_SW_DXE_BS_PC_VERIFYING_PASSWORD           (EFI_SUBCLASS_SPECIFIC | 0x00000006)
    636 
    637 //
    638 // Software Class DXE RT Driver Subclass Progress Code definitions.
    639 //
    640 #define EFI_SW_DXE_RT_PC_S0 (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    641 #define EFI_SW_DXE_RT_PC_S1 (EFI_SUBCLASS_SPECIFIC | 0x00000001)
    642 #define EFI_SW_DXE_RT_PC_S2 (EFI_SUBCLASS_SPECIFIC | 0x00000002)
    643 #define EFI_SW_DXE_RT_PC_S3 (EFI_SUBCLASS_SPECIFIC | 0x00000003)
    644 #define EFI_SW_DXE_RT_PC_S4 (EFI_SUBCLASS_SPECIFIC | 0x00000004)
    645 #define EFI_SW_DXE_RT_PC_S5 (EFI_SUBCLASS_SPECIFIC | 0x00000005)
    646 
    647 //
    648 // Software Class SMM Driver Subclass Progress Code definitions.
    649 //
    650 //
    651 // Software Class EFI Application Subclass Progress Code definitions.
    652 //
    653 //
    654 // Software Class EFI OS Loader Subclass Progress Code definitions.
    655 //
    656 //
    657 // Software Class EFI RT Subclass Progress Code definitions.
    658 //
    659 #define EFI_SW_RT_PC_ENTRY_POINT      (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    660 #define EFI_SW_RT_PC_HANDOFF_TO_NEXT  (EFI_SUBCLASS_SPECIFIC | 0x00000001)
    661 #define EFI_SW_RT_PC_RETURN_TO_LAST   (EFI_SUBCLASS_SPECIFIC | 0x00000002)
    662 
    663 //
    664 // Software Class EFI AL Subclass Progress Code definitions.
    665 //
    666 #define EFI_SW_AL_PC_ENTRY_POINT    (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    667 #define EFI_SW_AL_PC_RETURN_TO_LAST (EFI_SUBCLASS_SPECIFIC | 0x00000001)
    668 
    669 //
    670 // Software Class EBC Exception Subclass Progress Code definitions.
    671 //
    672 //
    673 // Software Class IA32 Exception Subclass Progress Code definitions.
    674 //
    675 //
    676 // Software Class X64 Exception Subclass Progress Code definitions.
    677 //
    678 //
    679 // Software Class IPF Exception Subclass Progress Code definitions.
    680 //
    681 //
    682 // Software Class PEI Services Subclass Progress Code definitions.
    683 //
    684 #define EFI_SW_PS_PC_INSTALL_PPI            (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    685 #define EFI_SW_PS_PC_REINSTALL_PPI          (EFI_SUBCLASS_SPECIFIC | 0x00000001)
    686 #define EFI_SW_PS_PC_LOCATE_PPI             (EFI_SUBCLASS_SPECIFIC | 0x00000002)
    687 #define EFI_SW_PS_PC_NOTIFY_PPI             (EFI_SUBCLASS_SPECIFIC | 0x00000003)
    688 #define EFI_SW_PS_PC_GET_BOOT_MODE          (EFI_SUBCLASS_SPECIFIC | 0x00000004)
    689 #define EFI_SW_PS_PC_SET_BOOT_MODE          (EFI_SUBCLASS_SPECIFIC | 0x00000005)
    690 #define EFI_SW_PS_PC_GET_HOB_LIST           (EFI_SUBCLASS_SPECIFIC | 0x00000006)
    691 #define EFI_SW_PS_PC_CREATE_HOB             (EFI_SUBCLASS_SPECIFIC | 0x00000007)
    692 #define EFI_SW_PS_PC_FFS_FIND_NEXT_VOLUME   (EFI_SUBCLASS_SPECIFIC | 0x00000008)
    693 #define EFI_SW_PS_PC_FFS_FIND_NEXT_FILE     (EFI_SUBCLASS_SPECIFIC | 0x00000009)
    694 #define EFI_SW_PS_PC_FFS_FIND_SECTION_DATA  (EFI_SUBCLASS_SPECIFIC | 0x0000000A)
    695 #define EFI_SW_PS_PC_INSTALL_PEI_MEMORY     (EFI_SUBCLASS_SPECIFIC | 0x0000000B)
    696 #define EFI_SW_PS_PC_ALLOCATE_PAGES         (EFI_SUBCLASS_SPECIFIC | 0x0000000C)
    697 #define EFI_SW_PS_PC_ALLOCATE_POOL          (EFI_SUBCLASS_SPECIFIC | 0x0000000D)
    698 #define EFI_SW_PS_PC_COPY_MEM               (EFI_SUBCLASS_SPECIFIC | 0x0000000E)
    699 #define EFI_SW_PS_PC_SET_MEM                (EFI_SUBCLASS_SPECIFIC | 0x0000000F)
    700 
    701 //
    702 // Software Class EFI Boot Services Subclass Progress Code definitions.
    703 //
    704 #define EFI_SW_BS_PC_RAISE_TPL                      (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    705 #define EFI_SW_BS_PC_RESTORE_TPL                    (EFI_SUBCLASS_SPECIFIC | 0x00000001)
    706 #define EFI_SW_BS_PC_ALLOCATE_PAGES                 (EFI_SUBCLASS_SPECIFIC | 0x00000002)
    707 #define EFI_SW_BS_PC_FREE_PAGES                     (EFI_SUBCLASS_SPECIFIC | 0x00000003)
    708 #define EFI_SW_BS_PC_GET_MEMORY_MAP                 (EFI_SUBCLASS_SPECIFIC | 0x00000004)
    709 #define EFI_SW_BS_PC_ALLOCATE_POOL                  (EFI_SUBCLASS_SPECIFIC | 0x00000005)
    710 #define EFI_SW_BS_PC_FREE_POOL                      (EFI_SUBCLASS_SPECIFIC | 0x00000006)
    711 #define EFI_SW_BS_PC_CREATE_EVENT                   (EFI_SUBCLASS_SPECIFIC | 0x00000007)
    712 #define EFI_SW_BS_PC_SET_TIMER                      (EFI_SUBCLASS_SPECIFIC | 0x00000008)
    713 #define EFI_SW_BS_PC_WAIT_FOR_EVENT                 (EFI_SUBCLASS_SPECIFIC | 0x00000009)
    714 #define EFI_SW_BS_PC_SIGNAL_EVENT                   (EFI_SUBCLASS_SPECIFIC | 0x0000000A)
    715 #define EFI_SW_BS_PC_CLOSE_EVENT                    (EFI_SUBCLASS_SPECIFIC | 0x0000000B)
    716 #define EFI_SW_BS_PC_CHECK_EVENT                    (EFI_SUBCLASS_SPECIFIC | 0x0000000C)
    717 #define EFI_SW_BS_PC_INSTALL_PROTOCOL_INTERFACE     (EFI_SUBCLASS_SPECIFIC | 0x0000000D)
    718 #define EFI_SW_BS_PC_REINSTALL_PROTOCOL_INTERFACE   (EFI_SUBCLASS_SPECIFIC | 0x0000000E)
    719 #define EFI_SW_BS_PC_UNINSTALL_PROTOCOL_INTERFACE   (EFI_SUBCLASS_SPECIFIC | 0x0000000F)
    720 #define EFI_SW_BS_PC_HANDLE_PROTOCOL                (EFI_SUBCLASS_SPECIFIC | 0x00000010)
    721 #define EFI_SW_BS_PC_PC_HANDLE_PROTOCOL             (EFI_SUBCLASS_SPECIFIC | 0x00000011)
    722 #define EFI_SW_BS_PC_REGISTER_PROTOCOL_NOTIFY       (EFI_SUBCLASS_SPECIFIC | 0x00000012)
    723 #define EFI_SW_BS_PC_LOCATE_HANDLE                  (EFI_SUBCLASS_SPECIFIC | 0x00000013)
    724 #define EFI_SW_BS_PC_INSTALL_CONFIGURATION_TABLE    (EFI_SUBCLASS_SPECIFIC | 0x00000014)
    725 #define EFI_SW_BS_PC_LOAD_IMAGE                     (EFI_SUBCLASS_SPECIFIC | 0x00000015)
    726 #define EFI_SW_BS_PC_START_IMAGE                    (EFI_SUBCLASS_SPECIFIC | 0x00000016)
    727 #define EFI_SW_BS_PC_EXIT                           (EFI_SUBCLASS_SPECIFIC | 0x00000017)
    728 #define EFI_SW_BS_PC_UNLOAD_IMAGE                   (EFI_SUBCLASS_SPECIFIC | 0x00000018)
    729 #define EFI_SW_BS_PC_EXIT_BOOT_SERVICES             (EFI_SUBCLASS_SPECIFIC | 0x00000019)
    730 #define EFI_SW_BS_PC_GET_NEXT_MONOTONIC_COUNT       (EFI_SUBCLASS_SPECIFIC | 0x0000001A)
    731 #define EFI_SW_BS_PC_STALL                          (EFI_SUBCLASS_SPECIFIC | 0x0000001B)
    732 #define EFI_SW_BS_PC_SET_WATCHDOG_TIMER             (EFI_SUBCLASS_SPECIFIC | 0x0000001C)
    733 #define EFI_SW_BS_PC_CONNECT_CONTROLLER             (EFI_SUBCLASS_SPECIFIC | 0x0000001D)
    734 #define EFI_SW_BS_PC_DISCONNECT_CONTROLLER          (EFI_SUBCLASS_SPECIFIC | 0x0000001E)
    735 #define EFI_SW_BS_PC_OPEN_PROTOCOL                  (EFI_SUBCLASS_SPECIFIC | 0x0000001F)
    736 #define EFI_SW_BS_PC_CLOSE_PROTOCOL                 (EFI_SUBCLASS_SPECIFIC | 0x00000020)
    737 #define EFI_SW_BS_PC_OPEN_PROTOCOL_INFORMATION      (EFI_SUBCLASS_SPECIFIC | 0x00000021)
    738 #define EFI_SW_BS_PC_PROTOCOLS_PER_HANDLE           (EFI_SUBCLASS_SPECIFIC | 0x00000022)
    739 #define EFI_SW_BS_PC_LOCATE_HANDLE_BUFFER           (EFI_SUBCLASS_SPECIFIC | 0x00000023)
    740 #define EFI_SW_BS_PC_LOCATE_PROTOCOL                (EFI_SUBCLASS_SPECIFIC | 0x00000024)
    741 #define EFI_SW_BS_PC_INSTALL_MULTIPLE_INTERFACES    (EFI_SUBCLASS_SPECIFIC | 0x00000025)
    742 #define EFI_SW_BS_PC_UNINSTALL_MULTIPLE_INTERFACES  (EFI_SUBCLASS_SPECIFIC | 0x00000026)
    743 #define EFI_SW_BS_PC_CALCULATE_CRC_32               (EFI_SUBCLASS_SPECIFIC | 0x00000027)
    744 #define EFI_SW_BS_PC_COPY_MEM                       (EFI_SUBCLASS_SPECIFIC | 0x00000028)
    745 #define EFI_SW_BS_PC_SET_MEM                        (EFI_SUBCLASS_SPECIFIC | 0x00000029)
    746 
    747 //
    748 // Software Class EFI Runtime Services Subclass Progress Code definitions.
    749 //
    750 #define EFI_SW_RS_PC_GET_TIME                       (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    751 #define EFI_SW_RS_PC_SET_TIME                       (EFI_SUBCLASS_SPECIFIC | 0x00000001)
    752 #define EFI_SW_RS_PC_GET_WAKEUP_TIME                (EFI_SUBCLASS_SPECIFIC | 0x00000002)
    753 #define EFI_SW_RS_PC_SET_WAKEUP_TIME                (EFI_SUBCLASS_SPECIFIC | 0x00000003)
    754 #define EFI_SW_RS_PC_SET_VIRTUAL_ADDRESS_MAP        (EFI_SUBCLASS_SPECIFIC | 0x00000004)
    755 #define EFI_SW_RS_PC_CONVERT_POINTER                (EFI_SUBCLASS_SPECIFIC | 0x00000005)
    756 #define EFI_SW_RS_PC_GET_VARIABLE                   (EFI_SUBCLASS_SPECIFIC | 0x00000006)
    757 #define EFI_SW_RS_PC_GET_NEXT_VARIABLE_NAME         (EFI_SUBCLASS_SPECIFIC | 0x00000007)
    758 #define EFI_SW_RS_PC_SET_VARIABLE                   (EFI_SUBCLASS_SPECIFIC | 0x00000008)
    759 #define EFI_SW_RS_PC_GET_NEXT_HIGH_MONOTONIC_COUNT  (EFI_SUBCLASS_SPECIFIC | 0x00000009)
    760 #define EFI_SW_RS_PC_RESET_SYSTEM                   (EFI_SUBCLASS_SPECIFIC | 0x0000000A)
    761 
    762 //
    763 // Software Class EFI DXE Services Subclass Progress Code definitions
    764 //
    765 #define EFI_SW_DS_PC_ADD_MEMORY_SPACE             (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    766 #define EFI_SW_DS_PC_ALLOCATE_MEMORY_SPACE        (EFI_SUBCLASS_SPECIFIC | 0x00000001)
    767 #define EFI_SW_DS_PC_FREE_MEMORY_SPACE            (EFI_SUBCLASS_SPECIFIC | 0x00000002)
    768 #define EFI_SW_DS_PC_REMOVE_MEMORY_SPACE          (EFI_SUBCLASS_SPECIFIC | 0x00000003)
    769 #define EFI_SW_DS_PC_GET_MEMORY_SPACE_DESCRIPTOR  (EFI_SUBCLASS_SPECIFIC | 0x00000004)
    770 #define EFI_SW_DS_PC_SET_MEMORY_SPACE_ATTRIBUTES  (EFI_SUBCLASS_SPECIFIC | 0x00000005)
    771 #define EFI_SW_DS_PC_GET_MEMORY_SPACE_MAP         (EFI_SUBCLASS_SPECIFIC | 0x00000006)
    772 #define EFI_SW_DS_PC_ADD_IO_SPACE                 (EFI_SUBCLASS_SPECIFIC | 0x00000007)
    773 #define EFI_SW_DS_PC_ALLOCATE_IO_SPACE            (EFI_SUBCLASS_SPECIFIC | 0x00000008)
    774 #define EFI_SW_DS_PC_FREE_IO_SPACE                (EFI_SUBCLASS_SPECIFIC | 0x00000009)
    775 #define EFI_SW_DS_PC_REMOVE_IO_SPACE              (EFI_SUBCLASS_SPECIFIC | 0x0000000A)
    776 #define EFI_SW_DS_PC_GET_IO_SPACE_DESCRIPTOR      (EFI_SUBCLASS_SPECIFIC | 0x0000000B)
    777 #define EFI_SW_DS_PC_GET_IO_SPACE_MAP             (EFI_SUBCLASS_SPECIFIC | 0x0000000C)
    778 #define EFI_SW_DS_PC_DISPATCH                     (EFI_SUBCLASS_SPECIFIC | 0x0000000D)
    779 #define EFI_SW_DS_PC_SCHEDULE                     (EFI_SUBCLASS_SPECIFIC | 0x0000000E)
    780 #define EFI_SW_DS_PC_TRUST                        (EFI_SUBCLASS_SPECIFIC | 0x0000000F)
    781 #define EFI_SW_DS_PC_PROCESS_FIRMWARE_VOLUME      (EFI_SUBCLASS_SPECIFIC | 0x00000010)
    782 
    783 //
    784 // Software Class Error Code definitions.
    785 // These are shared by all subclasses.
    786 //
    787 #define EFI_SW_EC_NON_SPECIFIC            0x00000000
    788 #define EFI_SW_EC_LOAD_ERROR              0x00000001
    789 #define EFI_SW_EC_INVALID_PARAMETER       0x00000002
    790 #define EFI_SW_EC_UNSUPPORTED             0x00000003
    791 #define EFI_SW_EC_INVALID_BUFFER          0x00000004
    792 #define EFI_SW_EC_OUT_OF_RESOURCES        0x00000005
    793 #define EFI_SW_EC_ABORTED                 0x00000006
    794 #define EFI_SW_EC_ILLEGAL_SOFTWARE_STATE  0x00000007
    795 #define EFI_SW_EC_ILLEGAL_HARDWARE_STATE  0x00000008
    796 #define EFI_SW_EC_START_ERROR             0x00000009
    797 #define EFI_SW_EC_BAD_DATE_TIME           0x0000000A
    798 #define EFI_SW_EC_CFG_INVALID             0x0000000B
    799 #define EFI_SW_EC_CFG_CLR_REQUEST         0x0000000C
    800 #define EFI_SW_EC_CFG_DEFAULT             0x0000000D
    801 #define EFI_SW_EC_PWD_INVALID             0x0000000E
    802 #define EFI_SW_EC_PWD_CLR_REQUEST         0x0000000F
    803 #define EFI_SW_EC_PWD_CLEARED             0x00000010
    804 #define EFI_SW_EC_EVENT_LOG_FULL          0x00000011
    805 
    806 //
    807 // Software Class Unspecified Subclass Error Code definitions.
    808 //
    809 //
    810 // Software Class SEC Subclass Error Code definitions.
    811 //
    812 //
    813 // Software Class PEI Core Subclass Error Code definitions.
    814 //
    815 #define EFI_SW_PEI_CORE_EC_DXE_CORRUPT  (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    816 
    817 //
    818 // Software Class PEI Module Subclass Error Code definitions.
    819 //
    820 #define EFI_SW_PEIM_EC_NO_RECOVERY_CAPSULE        (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    821 #define EFI_SW_PEIM_EC_INVALID_CAPSULE_DESCRIPTOR (EFI_SUBCLASS_SPECIFIC | 0x00000001)
    822 
    823 //
    824 // Software Class DXE Core Subclass Error Code definitions.
    825 //
    826 #define EFI_SW_CSM_LEGACY_ROM_INIT  (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    827 //
    828 // Software Class DXE Boot Service Driver Subclass Error Code definitions.
    829 //
    830 #define EFI_SW_DXE_BS_EC_LEGACY_OPROM_NO_SPACE  (EFI_SUBCLASS_SPECIFIC | 0x00000000)
    831 
    832 //
    833 // Software Class DXE Runtime Service Driver Subclass Error Code definitions.
    834 //
    835 //
    836 // Software Class SMM Driver Subclass Error Code definitions.
    837 //
    838 //
    839 // Software Class EFI Application Subclass Error Code definitions.
    840 //
    841 //
    842 // Software Class EFI OS Loader Subclass Error Code definitions.
    843 //
    844 //
    845 // Software Class EFI RT Subclass Error Code definitions.
    846 //
    847 //
    848 // Software Class EFI AL Subclass Error Code definitions.
    849 //
    850 //
    851 // Software Class EBC Exception Subclass Error Code definitions.
    852 // These exceptions are derived from the debug protocol definitions in the EFI
    853 // specification.
    854 //
    855 #define EFI_SW_EC_EBC_UNDEFINED             (EFI_SUBCLASS_SPECIFIC | EXCEPT_EBC_UNDEFINED)
    856 #define EFI_SW_EC_EBC_DIVIDE_ERROR          (EFI_SUBCLASS_SPECIFIC | EXCEPT_EBC_DIVIDE_ERROR)
    857 #define EFI_SW_EC_EBC_DEBUG                 (EFI_SUBCLASS_SPECIFIC | EXCEPT_EBC_DEBUG)
    858 #define EFI_SW_EC_EBC_BREAKPOINT            (EFI_SUBCLASS_SPECIFIC | EXCEPT_EBC_BREAKPOINT)
    859 #define EFI_SW_EC_EBC_OVERFLOW              (EFI_SUBCLASS_SPECIFIC | EXCEPT_EBC_OVERFLOW)
    860 #define EFI_SW_EC_EBC_INVALID_OPCODE        (EFI_SUBCLASS_SPECIFIC | EXCEPT_EBC_INVALID_OPCODE)
    861 #define EFI_SW_EC_EBC_STACK_FAULT           (EFI_SUBCLASS_SPECIFIC | EXCEPT_EBC_STACK_FAULT)
    862 #define EFI_SW_EC_EBC_ALIGNMENT_CHECK       (EFI_SUBCLASS_SPECIFIC | EXCEPT_EBC_ALIGNMENT_CHECK)
    863 #define EFI_SW_EC_EBC_INSTRUCTION_ENCODING  (EFI_SUBCLASS_SPECIFIC | EXCEPT_EBC_INSTRUCTION_ENCODING)
    864 #define EFI_SW_EC_EBC_BAD_BREAK             (EFI_SUBCLASS_SPECIFIC | EXCEPT_EBC_BAD_BREAK)
    865 #define EFI_SW_EC_EBC_STEP                  (EFI_SUBCLASS_SPECIFIC | EXCEPT_EBC_STEP)
    866 
    867 //
    868 // Software Class IA32 Exception Subclass Error Code definitions.
    869 // These exceptions are derived from the debug protocol definitions in the EFI
    870 // specification.
    871 //
    872 #define EFI_SW_EC_IA32_DIVIDE_ERROR     (EFI_SUBCLASS_SPECIFIC | EXCEPT_IA32_DIVIDE_ERROR)
    873 #define EFI_SW_EC_IA32_DEBUG            (EFI_SUBCLASS_SPECIFIC | EXCEPT_IA32_DEBUG)
    874 #define EFI_SW_EC_IA32_NMI              (EFI_SUBCLASS_SPECIFIC | EXCEPT_IA32_NMI)
    875 #define EFI_SW_EC_IA32_BREAKPOINT       (EFI_SUBCLASS_SPECIFIC | EXCEPT_IA32_BREAKPOINT)
    876 #define EFI_SW_EC_IA32_OVERFLOW         (EFI_SUBCLASS_SPECIFIC | EXCEPT_IA32_OVERFLOW)
    877 #define EFI_SW_EC_IA32_BOUND            (EFI_SUBCLASS_SPECIFIC | EXCEPT_IA32_BOUND)
    878 #define EFI_SW_EC_IA32_INVALID_OPCODE   (EFI_SUBCLASS_SPECIFIC | EXCEPT_IA32_INVALID_OPCODE)
    879 #define EFI_SW_EC_IA32_DOUBLE_FAULT     (EFI_SUBCLASS_SPECIFIC | EXCEPT_IA32_DOUBLE_FAULT)
    880 #define EFI_SW_EC_IA32_INVALID_TSS      (EFI_SUBCLASS_SPECIFIC | EXCEPT_IA32_INVALID_TSS)
    881 #define EFI_SW_EC_IA32_SEG_NOT_PRESENT  (EFI_SUBCLASS_SPECIFIC | EXCEPT_IA32_SEG_NOT_PRESENT)
    882 #define EFI_SW_EC_IA32_STACK_FAULT      (EFI_SUBCLASS_SPECIFIC | EXCEPT_IA32_STACK_FAULT)
    883 #define EFI_SW_EC_IA32_GP_FAULT         (EFI_SUBCLASS_SPECIFIC | EXCEPT_IA32_GP_FAULT)
    884 #define EFI_SW_EC_IA32_PAGE_FAULT       (EFI_SUBCLASS_SPECIFIC | EXCEPT_IA32_PAGE_FAULT)
    885 #define EFI_SW_EC_IA32_FP_ERROR         (EFI_SUBCLASS_SPECIFIC | EXCEPT_IA32_FP_ERROR)
    886 #define EFI_SW_EC_IA32_ALIGNMENT_CHECK  (EFI_SUBCLASS_SPECIFIC | EXCEPT_IA32_ALIGNMENT_CHECK)
    887 #define EFI_SW_EC_IA32_MACHINE_CHECK    (EFI_SUBCLASS_SPECIFIC | EXCEPT_IA32_MACHINE_CHECK)
    888 #define EFI_SW_EC_IA32_SIMD             (EFI_SUBCLASS_SPECIFIC | EXCEPT_IA32_SIMD)
    889 
    890 //
    891 // Software Class X64 Exception Subclass Error Code definitions.
    892 // These exceptions are derived from the debug protocol definitions in the EFI
    893 // specification.
    894 //
    895 #define EFI_SW_EC_X64_DIVIDE_ERROR      (EFI_SUBCLASS_SPECIFIC | EXCEPT_X64_DIVIDE_ERROR)
    896 #define EFI_SW_EC_X64_DEBUG             (EFI_SUBCLASS_SPECIFIC | EXCEPT_X64_DEBUG)
    897 #define EFI_SW_EC_X64_NMI               (EFI_SUBCLASS_SPECIFIC | EXCEPT_X64_NMI)
    898 #define EFI_SW_EC_X64_BREAKPOINT        (EFI_SUBCLASS_SPECIFIC | EXCEPT_X64_BREAKPOINT)
    899 #define EFI_SW_EC_X64_OVERFLOW          (EFI_SUBCLASS_SPECIFIC | EXCEPT_X64_OVERFLOW)
    900 #define EFI_SW_EC_X64_BOUND             (EFI_SUBCLASS_SPECIFIC | EXCEPT_X64_BOUND)
    901 #define EFI_SW_EC_X64_INVALID_OPCODE    (EFI_SUBCLASS_SPECIFIC | EXCEPT_X64_INVALID_OPCODE)
    902 #define EFI_SW_EC_X64_DOUBLE_FAULT      (EFI_SUBCLASS_SPECIFIC | EXCEPT_X64_DOUBLE_FAULT)
    903 #define EFI_SW_EC_X64_INVALID_TSS       (EFI_SUBCLASS_SPECIFIC | EXCEPT_X64_INVALID_TSS)
    904 #define EFI_SW_EC_X64_SEG_NOT_PRESENT   (EFI_SUBCLASS_SPECIFIC | EXCEPT_X64_SEG_NOT_PRESENT)
    905 #define EFI_SW_EC_X64_STACK_FAULT       (EFI_SUBCLASS_SPECIFIC | EXCEPT_X64_STACK_FAULT)
    906 #define EFI_SW_EC_X64_GP_FAULT          (EFI_SUBCLASS_SPECIFIC | EXCEPT_X64_GP_FAULT)
    907 #define EFI_SW_EC_X64_PAGE_FAULT        (EFI_SUBCLASS_SPECIFIC | EXCEPT_X64_PAGE_FAULT)
    908 #define EFI_SW_EC_X64_FP_ERROR          (EFI_SUBCLASS_SPECIFIC | EXCEPT_X64_FP_ERROR)
    909 #define EFI_SW_EC_X64_ALIGNMENT_CHECK   (EFI_SUBCLASS_SPECIFIC | EXCEPT_X64_ALIGNMENT_CHECK)
    910 #define EFI_SW_EC_X64_MACHINE_CHECK     (EFI_SUBCLASS_SPECIFIC | EXCEPT_X64_MACHINE_CHECK)
    911 #define EFI_SW_EC_X64_SIMD              (EFI_SUBCLASS_SPECIFIC | EXCEPT_X64_SIMD)
    912 
    913 //
    914 // Software Class IPF Exception Subclass Error Code definitions.
    915 // These exceptions are derived from the debug protocol definitions in the EFI
    916 // specification.
    917 //
    918 #define EFI_SW_EC_IPF_ALT_DTLB            (EFI_SUBCLASS_SPECIFIC | EXCEPT_IPF_ALT_DTLB)
    919 #define EFI_SW_EC_IPF_DNESTED_TLB         (EFI_SUBCLASS_SPECIFIC | EXCEPT_IPF_DNESTED_TLB)
    920 #define EFI_SW_EC_IPF_BREAKPOINT          (EFI_SUBCLASS_SPECIFIC | EXCEPT_IPF_BREAKPOINT)
    921 #define EFI_SW_EC_IPF_EXTERNAL_INTERRUPT  (EFI_SUBCLASS_SPECIFIC | EXCEPT_IPF_EXTERNAL_INTERRUPT)
    922 #define EFI_SW_EC_IPF_GEN_EXCEPT          (EFI_SUBCLASS_SPECIFIC | EXCEPT_IPF_GEN_EXCEPT)
    923 #define EFI_SW_EC_IPF_NAT_CONSUMPTION     (EFI_SUBCLASS_SPECIFIC | EXCEPT_IPF_NAT_CONSUMPTION)
    924 #define EFI_SW_EC_IPF_DEBUG_EXCEPT        (EFI_SUBCLASS_SPECIFIC | EXCEPT_IPF_DEBUG_EXCEPT)
    925 #define EFI_SW_EC_IPF_UNALIGNED_ACCESS    (EFI_SUBCLASS_SPECIFIC | EXCEPT_IPF_UNALIGNED_ACCESS)
    926 #define EFI_SW_EC_IPF_FP_FAULT            (EFI_SUBCLASS_SPECIFIC | EXCEPT_IPF_FP_FAULT)
    927 #define EFI_SW_EC_IPF_FP_TRAP             (EFI_SUBCLASS_SPECIFIC | EXCEPT_IPF_FP_TRAP)
    928 #define EFI_SW_EC_IPF_TAKEN_BRANCH        (EFI_SUBCLASS_SPECIFIC | EXCEPT_IPF_TAKEN_BRANCH)
    929 #define EFI_SW_EC_IPF_SINGLE_STEP         (EFI_SUBCLASS_SPECIFIC | EXCEPT_IPF_SINGLE_STEP)
    930 
    931 //
    932 // Software Class PEI Service Subclass Error Code definitions.
    933 //
    934 //
    935 // Software Class EFI Boot Service Subclass Error Code definitions.
    936 //
    937 //
    938 // Software Class EFI Runtime Service Subclass Error Code definitions.
    939 //
    940 //
    941 // Software Class EFI DXE Service Subclass Error Code definitions.
    942 //
    943 
    944 ///////////////////////////////////////////////////////////////////////////////
    945 // Section 7
    946 ///////////////////////////////////////////////////////////////////////////////
    947 //
    948 // Debug Code definitions for all classes and subclass
    949 // Only one debug code is defined at this point and should
    950 // be used for anything that gets sent to debug stream.
    951 //
    952 #define EFI_DC_UNSPECIFIED  0x0
    953 
    954 //
    955 // Progress code for S3 suspend start and S3 suspend end is not defined,
    956 // the following are the implementation specific definition.
    957 //
    958 #ifndef PROGRESS_CODE_S3_SUSPEND_START
    959 #define PROGRESS_CODE_S3_SUSPEND_START   (EFI_SOFTWARE_SMM_DRIVER | (EFI_OEM_SPECIFIC | 0x00000000))
    960 #endif
    961 
    962 #ifndef PROGRESS_CODE_S3_SUSPEND_END
    963 #define PROGRESS_CODE_S3_SUSPEND_END     (EFI_SOFTWARE_SMM_DRIVER | (EFI_OEM_SPECIFIC | 0x00000001))
    964 #endif
    965 
    966 #endif
    967