]> git.proxmox.com Git - mirror_edk2.git/commit - CorebootModulePkg/Library/CbParseLib/CbParseLib.c
Pkg-Module: CorebootModulePkg
authorMaurice Ma <maurice.ma@intel.com>
Tue, 31 Mar 2015 01:06:23 +0000 (01:06 +0000)
committermauricema <mauricema@Edk2>
Tue, 31 Mar 2015 01:06:23 +0000 (01:06 +0000)
commitfce4ecd92cf137d479c0dc97461bec3512e9c98d
tree58c77cce1adb54af4e94ec196c0db9448a09154b
parent14df6e059c9115108c9fcbbceac2ae4c6fc7ee94
Pkg-Module: CorebootModulePkg

Initial coreboot UEFI payload code check in. It provides UEFI services on top of coreboot that allows UEFI OS boot.
CorebootModulePkg is the source code package of coreboot support modules that will be used to parse the coreboot tables and report memory/io resources.

It supports the following features:
  - Support Unified Extensible Firmware Interface (UEFI) specification 2.4.
  - Support Platform Initialization(PI) specification 1.3.
  - Support execution as a coreboot payload.
  - Support USB 3.0
  - Support SATA/ATA devices.
  - Support EFI aware OS boot.

The following features are not supported currently and have not been validated:
  - GCC Tool Chains
  - SMM Execution Environment
  - Security Boot

It was tested on a Intel Bay Trail CRB platform.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Maurice Ma <maurice.ma@intel.com>
Reviewed-by: Prince Agyeman <prince.agyeman@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17084 6f19259b-4bc3-4df7-8a09-765794883524
22 files changed:
CorebootModulePkg/CbSupportDxe/CbSupportDxe.c [new file with mode: 0644]
CorebootModulePkg/CbSupportDxe/CbSupportDxe.h [new file with mode: 0644]
CorebootModulePkg/CbSupportDxe/CbSupportDxe.inf [new file with mode: 0644]
CorebootModulePkg/CbSupportPei/CbSupportPei.c [new file with mode: 0644]
CorebootModulePkg/CbSupportPei/CbSupportPei.h [new file with mode: 0644]
CorebootModulePkg/CbSupportPei/CbSupportPei.inf [new file with mode: 0644]
CorebootModulePkg/CorebootModulePkg.dec [new file with mode: 0644]
CorebootModulePkg/Include/Coreboot.h [new file with mode: 0644]
CorebootModulePkg/Include/Guid/AcpiBoardInfoGuid.h [new file with mode: 0644]
CorebootModulePkg/Include/Guid/FrameBufferInfoGuid.h [new file with mode: 0644]
CorebootModulePkg/Include/Guid/SystemTableInfoGuid.h [new file with mode: 0644]
CorebootModulePkg/Include/Library/CbParseLib.h [new file with mode: 0644]
CorebootModulePkg/Library/CbParseLib/CbParseLib.c [new file with mode: 0644]
CorebootModulePkg/Library/CbParseLib/CbParseLib.inf [new file with mode: 0644]
CorebootModulePkg/SecCore/FindPeiCore.c [new file with mode: 0644]
CorebootModulePkg/SecCore/Ia32/SecEntry.S [new file with mode: 0644]
CorebootModulePkg/SecCore/Ia32/SecEntry.asm [new file with mode: 0644]
CorebootModulePkg/SecCore/Ia32/Stack.S [new file with mode: 0644]
CorebootModulePkg/SecCore/Ia32/Stack.asm [new file with mode: 0644]
CorebootModulePkg/SecCore/SecCore.inf [new file with mode: 0644]
CorebootModulePkg/SecCore/SecMain.c [new file with mode: 0644]
CorebootModulePkg/SecCore/SecMain.h [new file with mode: 0644]