]> git.proxmox.com Git - mirror_edk2.git/blame - CorebootModulePkg/Include/Library/CbPlatformSupportLib.h
CorebootModulePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / CorebootModulePkg / Include / Library / CbPlatformSupportLib.h
CommitLineData
2f20bfd9 1/** @file
2 Coreboot Platform Support library. Platform can provide an implementation of this
3 library class to provide hooks that may be required for some type of
4 platform features.
5
6Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
f3342b7a 7SPDX-License-Identifier: BSD-2-Clause-Patent
2f20bfd9 8
9**/
10
11#ifndef __CB_PLATFORM_SUPPORT_LIB__
12#define __CB_PLATFORM_SUPPORT_LIB__
13
14/**
15 Parse platform specific information from coreboot.
16
17 @retval RETURN_SUCCESS The platform specific coreboot support succeeded.
18 @retval RETURN_DEVICE_ERROR The platform specific coreboot support could not be completed.
19
20**/
21EFI_STATUS
22EFIAPI
23CbParsePlatformInfo (
24 VOID
25 );
26
27#endif // __CB_PLATFORM_SUPPORT_LIB__
28