]>
Commit | Line | Data |
---|---|---|
a3f98646 | 1 | #/** @file\r |
2 | # \r | |
3 | # Interrupt DXE driver\r | |
4 | # \r | |
3d70643b HT |
5 | # Copyright (c) 2008 - 2010, Apple Inc. All rights reserved.<BR>\r |
6 | # This program and the accompanying materials\r | |
a3f98646 | 7 | # are licensed and made available under the terms and conditions of the BSD License\r |
8 | # which accompanies this distribution. The full text of the license may be found at\r | |
9 | # http://opensource.org/licenses/bsd-license.php\r | |
10 | # \r | |
11 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r | |
12 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
13 | # \r | |
14 | #**/\r | |
15 | \r | |
16 | [Defines]\r | |
17 | INF_VERSION = 0x00010005\r | |
801ee6c6 | 18 | BASE_NAME = Omap35xxBoardInterruptDxe\r |
a3f98646 | 19 | FILE_GUID = 23eed05d-1b93-4a1a-8e1b-931d69e37952\r |
20 | MODULE_TYPE = DXE_DRIVER\r | |
21 | VERSION_STRING = 1.0\r | |
22 | \r | |
23 | ENTRY_POINT = InterruptDxeInitialize\r | |
24 | \r | |
25 | \r | |
26 | [Sources.common]\r | |
27 | HardwareInterrupt.c\r | |
28 | \r | |
29 | \r | |
30 | [Packages]\r | |
026c3d34 | 31 | ArmPkg/ArmPkg.dec\r |
a3f98646 | 32 | Omap35xxPkg/Omap35xxPkg.dec\r |
33 | MdePkg/MdePkg.dec\r | |
34 | EmbeddedPkg/EmbeddedPkg.dec\r | |
35 | \r | |
36 | [LibraryClasses]\r | |
37 | BaseLib\r | |
38 | UefiLib\r | |
39 | UefiBootServicesTableLib\r | |
40 | DebugLib\r | |
41 | PrintLib\r | |
42 | UefiDriverEntryPoint\r | |
43 | IoLib\r | |
026c3d34 | 44 | ArmLib\r |
a3f98646 | 45 | \r |
a3f98646 | 46 | [Protocols]\r |
47 | gHardwareInterruptProtocolGuid\r | |
48 | gEfiCpuArchProtocolGuid\r | |
49 | \r | |
50 | [FixedPcd.common]\r | |
51 | gEmbeddedTokenSpaceGuid.PcdInterruptBaseAddress\r | |
52 | \r | |
d326412c | 53 | [Depex]\r |
54 | gEfiCpuArchProtocolGuid\r |