]> git.proxmox.com Git - mirror_edk2.git/blob - Nt32Pkg/TimerDxe/TimerDxe.inf
Nt32Pkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / Nt32Pkg / TimerDxe / TimerDxe.inf
1 ## @file
2 # NT Emulation Timer Architectural Protocol Driver as defined in DXE CIS
3 #
4 # This Timer module uses an NT Thread to simulate the timer-tick driven
5 # timer service. In the future, the Thread creation should possibly be
6 # abstracted by the CPU architectural protocol
7 # Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
8 #
9 # SPDX-License-Identifier: BSD-2-Clause-Patent
10 #
11 #
12 ##
13
14 [Defines]
15 INF_VERSION = 0x00010005
16 BASE_NAME = Timer
17 FILE_GUID = C3811036-710B-4E39-8CF1-0AF9BE3A8198
18 MODULE_TYPE = DXE_DRIVER
19 VERSION_STRING = 1.0
20
21 ENTRY_POINT = WinNtTimerDriverInitialize
22
23 #
24 # The following information is for reference only and not required by the build tools.
25 #
26 # VALID_ARCHITECTURES = IA32
27 #
28
29 [Sources]
30 Timer.c
31 Timer.h
32
33 [Packages]
34 MdePkg/MdePkg.dec
35 Nt32Pkg/Nt32Pkg.dec
36
37 [LibraryClasses]
38 UefiBootServicesTableLib
39 WinNtLib
40 UefiDriverEntryPoint
41 DebugLib
42
43 [Protocols]
44 gEfiCpuArchProtocolGuid # PROTOCOL ALWAYS_CONSUMED
45 gEfiTimerArchProtocolGuid # PROTOCOL ALWAYS_PRODUCED
46
47 [Depex]
48 gEfiCpuArchProtocolGuid
49