blob: affb43f2fcc966c94415e8bea80d6d760c468887 [file] [log] [blame]
Aaron Durbin789f2b62015-09-09 17:05:06 -05001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2015 Google Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Aaron Durbin789f2b62015-09-09 17:05:06 -050014 */
15
16#ifndef _FSP1_1_SOC_BINDING_H_
17#define _FSP1_1_SOC_BINDING_H_
18
19/* All the FSP headers need to have UEFI types provided before inclusion. */
20#include <fsp/uefi_binding.h>
21
22/*
23 * Intel's code does not have a handle on changing global packing state.
24 * Therefore, one needs to protect against packing policies that are set
25 * globally for a compliation unit just by including a header file.
26 */
27#pragma pack(push)
28
29/*
Stefan Reinauer7e146542015-11-18 15:26:07 -080030 * This file is found in the soc / chipset directory. It is
Aaron Durbin789f2b62015-09-09 17:05:06 -050031 * a per implementation specific header. i.e. different FSP implementations
32 * for different chipsets.
33 */
34#include <FspUpdVpd.h>
35
36/* Restore original packing policy. */
37#pragma pack(pop)
38
39#endif