]>
Commit | Line | Data |
---|---|---|
e331c50d | 1 | #/** @file\r |
2 | # NT Emulation Timer Architectural Protocol Driver as defined in DXE CIS\r | |
3 | #\r | |
4 | # This Timer module uses an NT Thread to simulate the timer-tick driven\r | |
5 | # timer service. In the future, the Thread creation should possibly be\r | |
6 | # abstracted by the CPU architectural protocol\r | |
7 | # Copyright (c) 2006 - 2007, Intel Corporation\r | |
8 | #\r | |
9 | # All rights reserved. This program and the accompanying materials\r | |
10 | # are licensed and made available under the terms and conditions of the BSD License\r | |
11 | # which accompanies this distribution. The full text of the license may be found at\r | |
12 | # http://opensource.org/licenses/bsd-license.php\r | |
13 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r | |
14 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
15 | #\r | |
16 | #\r | |
17 | #**/\r | |
18 | \r | |
e331c50d | 19 | [Defines]\r |
20 | INF_VERSION = 0x00010005\r | |
21 | BASE_NAME = Timer\r | |
22 | FILE_GUID = C3811036-710B-4E39-8CF1-0AF9BE3A8198\r | |
23 | MODULE_TYPE = DXE_DRIVER\r | |
24 | VERSION_STRING = 1.0\r | |
25 | EDK_RELEASE_VERSION = 0x00020000\r | |
26 | EFI_SPECIFICATION_VERSION = 0x00020000\r | |
27 | \r | |
28 | ENTRY_POINT = WinNtTimerDriverInitialize\r | |
29 | \r | |
30 | #\r | |
31 | # The following information is for reference only and not required by the build tools.\r | |
32 | #\r | |
33 | # VALID_ARCHITECTURES = IA32\r | |
34 | #\r | |
35 | \r | |
e331c50d | 36 | [Sources.common]\r |
e331c50d | 37 | Timer.c\r |
38 | Timer.h\r | |
e331c50d | 39 | \r |
40 | [Packages]\r | |
41 | MdePkg/MdePkg.dec\r | |
42 | Nt32Pkg/Nt32Pkg.dec\r | |
43 | \r | |
e331c50d | 44 | [LibraryClasses]\r |
45 | UefiBootServicesTableLib\r | |
46 | WinNtLib\r | |
47 | UefiDriverEntryPoint\r | |
48 | DebugLib\r | |
49 | \r | |
e331c50d | 50 | [Protocols]\r |
51 | gEfiCpuArchProtocolGuid # PROTOCOL ALWAYS_CONSUMED\r | |
52 | gEfiTimerArchProtocolGuid # PROTOCOL ALWAYS_PRODUCED\r | |
4bd1b0f1 | 53 | \r |
4bd1b0f1 | 54 | [Depex]\r |
f2569572 A |
55 | gEfiCpuArchProtocolGuid\r |
56 |