coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
soc_binding.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef _FSP1_1_SOC_BINDING_H_
4 #define _FSP1_1_SOC_BINDING_H_
5 
6 /* All the FSP headers need to have UEFI types provided before inclusion. */
7 #include <fsp/uefi_binding.h>
8 
9 /*
10  * Intel's code does not have a handle on changing global packing state.
11  * Therefore, one needs to protect against packing policies that are set
12  * globally for a compilation unit just by including a header file.
13  */
14 #pragma pack(push)
15 
16 /*
17  * This file is found in the soc / chipset directory. It is
18  * a per implementation specific header. i.e. different FSP implementations
19  * for different chipsets.
20  */
21 #include <FspUpdVpd.h>
22 
23 /* Restore original packing policy. */
24 #pragma pack(pop)
25 
26 #endif