]> git.proxmox.com Git - mirror_edk2.git/blob - Vlv2DeviceRefCodePkg/ValleyView2Soc/SouthCluster/Include/Protocol/SmbiosSlotPopulation.h
Vlv2DeviceRefCodePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / Vlv2DeviceRefCodePkg / ValleyView2Soc / SouthCluster / Include / Protocol / SmbiosSlotPopulation.h
1 /*++
2
3 Copyright (c) 1999 - 2014, Intel Corporation. All rights reserved
4
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7
8
9 Module Name:
10
11 SmbiosSlotPopulation.h
12
13 Abstract:
14
15 EFI SMBIOS slot structure control code.
16
17 GUID:
18 {EF7BF7D6-F8FF-4a76-8247-C0D0D1CC49C0}
19 0xef7bf7d6, 0xf8ff, 0x4a76, 0x82, 0x47, 0xc0, 0xd0, 0xd1, 0xcc, 0x49, 0xc0
20
21 Revision History
22
23 --*/
24
25 #ifndef _EFI_SMBIOS_SLOT_POPULATION_H_
26 #define _EFI_SMBIOS_SLOT_POPULATION_H_
27
28 //
29 // Slot Population Protocol GUID
30 //
31 #define EFI_SMBIOS_SLOT_POPULATION_GUID \
32 { 0xef7bf7d6, 0xf8ff, 0x4a76, 0x82, 0x47, 0xc0, 0xd0, 0xd1, 0xcc, 0x49, 0xc0 }
33
34 typedef struct {
35 UINT16 SmbiosSlotId; // SMBIOS Slot ID
36 BOOLEAN InUse; // Does the slot have a card in it
37 BOOLEAN Disabled; // Should the slot information be in SMBIOS
38 } EFI_SMBIOS_SLOT_ENTRY;
39
40 typedef struct {
41 UINT32 NumberOfEntries;
42 EFI_SMBIOS_SLOT_ENTRY *SlotEntries;
43 } EFI_SMBIOS_SLOT_POPULATION_INFO;
44
45 extern EFI_GUID gEfiSmbiosSlotPopulationGuid;
46
47 #endif