1## @file 2# This driver produces an EFI_RNG_PROTOCOL instance for the AMD Seattle CCP 3# 4# Copyright (C) 2016, Linaro Ltd. All rights reserved.<BR> 5# 6# This program and the accompanying materials are licensed and made available 7# under the terms and conditions of the BSD License which accompanies this 8# distribution. The full text of the license may be found at 9# http://opensource.org/licenses/bsd-license.php 10# 11# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT 12# WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 13# 14## 15 16[Defines] 17 INF_VERSION = 0x00010005 18 BASE_NAME = StyxRngDxe 19 FILE_GUID = 58E26F0D-CBAC-4BBA-B70F-18221415665A 20 MODULE_TYPE = DXE_DRIVER 21 VERSION_STRING = 1.0 22 ENTRY_POINT = StyxRngEntryPoint 23 24[Sources] 25 StyxRngDxe.c 26 27[Packages] 28 MdePkg/MdePkg.dec 29 AmdModulePkg/AmdModulePkg.dec 30 31[LibraryClasses] 32 BaseMemoryLib 33 IoLib 34 PcdLib 35 UefiDriverEntryPoint 36 37[Pcd] 38 gAmdModulePkgTokenSpaceGuid.PcdCCPBase 39 40[Protocols] 41 gEfiRngProtocolGuid ## PRODUCES 42 43[Guids] 44 gEfiRngAlgorithmRaw 45 46[Depex] 47 TRUE 48