]> git.proxmox.com Git - mirror_edk2.git/commit
Pkg-Module: CorebootModulePkg
authorMaurice Ma <maurice.ma@intel.com>
Tue, 31 Mar 2015 01:03:03 +0000 (01:03 +0000)
committermauricema <mauricema@Edk2>
Tue, 31 Mar 2015 01:03:03 +0000 (01:03 +0000)
commit1139bd70965b564dfa4cc832f017edb2f56393dd
tree29636f36beec3885358d05cd123bc19871adef24
parent9c228fb031e8dcf26083be1cb2760fe18e7799b5
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@17082 6f19259b-4bc3-4df7-8a09-765794883524
22 files changed:
CorebootModulePkg/CorebootModulePkg/CbSupportDxe/CbSupportDxe.c [new file with mode: 0644]
CorebootModulePkg/CorebootModulePkg/CbSupportDxe/CbSupportDxe.h [new file with mode: 0644]
CorebootModulePkg/CorebootModulePkg/CbSupportDxe/CbSupportDxe.inf [new file with mode: 0644]
CorebootModulePkg/CorebootModulePkg/CbSupportPei/CbSupportPei.c [new file with mode: 0644]
CorebootModulePkg/CorebootModulePkg/CbSupportPei/CbSupportPei.h [new file with mode: 0644]
CorebootModulePkg/CorebootModulePkg/CbSupportPei/CbSupportPei.inf [new file with mode: 0644]
CorebootModulePkg/CorebootModulePkg/CorebootModulePkg.dec [new file with mode: 0644]
CorebootModulePkg/CorebootModulePkg/Include/Coreboot.h [new file with mode: 0644]
CorebootModulePkg/CorebootModulePkg/Include/Guid/AcpiBoardInfoGuid.h [new file with mode: 0644]
CorebootModulePkg/CorebootModulePkg/Include/Guid/FrameBufferInfoGuid.h [new file with mode: 0644]
CorebootModulePkg/CorebootModulePkg/Include/Guid/SystemTableInfoGuid.h [new file with mode: 0644]
CorebootModulePkg/CorebootModulePkg/Include/Library/CbParseLib.h [new file with mode: 0644]
CorebootModulePkg/CorebootModulePkg/Library/CbParseLib/CbParseLib.c [new file with mode: 0644]
CorebootModulePkg/CorebootModulePkg/Library/CbParseLib/CbParseLib.inf [new file with mode: 0644]
CorebootModulePkg/CorebootModulePkg/SecCore/FindPeiCore.c [new file with mode: 0644]
CorebootModulePkg/CorebootModulePkg/SecCore/Ia32/SecEntry.S [new file with mode: 0644]
CorebootModulePkg/CorebootModulePkg/SecCore/Ia32/SecEntry.asm [new file with mode: 0644]
CorebootModulePkg/CorebootModulePkg/SecCore/Ia32/Stack.S [new file with mode: 0644]
CorebootModulePkg/CorebootModulePkg/SecCore/Ia32/Stack.asm [new file with mode: 0644]
CorebootModulePkg/CorebootModulePkg/SecCore/SecCore.inf [new file with mode: 0644]
CorebootModulePkg/CorebootModulePkg/SecCore/SecMain.c [new file with mode: 0644]
CorebootModulePkg/CorebootModulePkg/SecCore/SecMain.h [new file with mode: 0644]