1#/** @file 2# 3# Interrupt DXE driver 4# 5# Copyright (c) 2008 - 2010, Apple Inc. All rights reserved.<BR> 6# This program and the accompanying materials 7# are licensed and made available under the terms and conditions of the BSD License 8# which accompanies this 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, 12# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 13# 14#**/ 15 16[Defines] 17 INF_VERSION = 0x00010005 18 BASE_NAME = Omap35xxBoardInterruptDxe 19 FILE_GUID = 23eed05d-1b93-4a1a-8e1b-931d69e37952 20 MODULE_TYPE = DXE_DRIVER 21 VERSION_STRING = 1.0 22 23 ENTRY_POINT = InterruptDxeInitialize 24 25 26[Sources.common] 27 HardwareInterrupt.c 28 29 30[Packages] 31 ArmPkg/ArmPkg.dec 32 Omap35xxPkg/Omap35xxPkg.dec 33 MdePkg/MdePkg.dec 34 EmbeddedPkg/EmbeddedPkg.dec 35 36[LibraryClasses] 37 BaseLib 38 UefiLib 39 UefiBootServicesTableLib 40 DebugLib 41 PrintLib 42 UefiDriverEntryPoint 43 IoLib 44 ArmLib 45 46[Protocols] 47 gHardwareInterruptProtocolGuid 48 gEfiCpuArchProtocolGuid 49 50[FixedPcd.common] 51 gEmbeddedTokenSpaceGuid.PcdInterruptBaseAddress 52 53[Depex] 54 gEfiCpuArchProtocolGuid 55