Last change
on this file since 94368 was 80721, checked in by vboxsync, 5 years ago |
Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
999 bytes
|
Line | |
---|
1 | ## @file
|
---|
2 | # 8254 timer driver that provides Timer Arch protocol.
|
---|
3 | #
|
---|
4 | # Copyright (c) 2005 - 2019, Intel Corporation. All rights reserved.<BR>
|
---|
5 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
6 | #
|
---|
7 | ##
|
---|
8 |
|
---|
9 | [Defines]
|
---|
10 | INF_VERSION = 0x00010005
|
---|
11 | BASE_NAME = Timer
|
---|
12 | MODULE_UNI_FILE = Timer.uni
|
---|
13 | FILE_GUID = C190FE35-44AA-41A1-8AEA-4947BC60E09D
|
---|
14 | MODULE_TYPE = DXE_DRIVER
|
---|
15 | VERSION_STRING = 1.0
|
---|
16 |
|
---|
17 | ENTRY_POINT = TimerDriverInitialize
|
---|
18 |
|
---|
19 | [Packages]
|
---|
20 | MdePkg/MdePkg.dec
|
---|
21 | OvmfPkg/OvmfPkg.dec
|
---|
22 |
|
---|
23 | [LibraryClasses]
|
---|
24 | UefiBootServicesTableLib
|
---|
25 | BaseLib
|
---|
26 | DebugLib
|
---|
27 | UefiDriverEntryPoint
|
---|
28 | IoLib
|
---|
29 |
|
---|
30 | [Sources]
|
---|
31 | Timer.h
|
---|
32 | Timer.c
|
---|
33 |
|
---|
34 | [Protocols]
|
---|
35 | gEfiCpuArchProtocolGuid ## CONSUMES
|
---|
36 | gEfiLegacy8259ProtocolGuid ## CONSUMES
|
---|
37 | gEfiTimerArchProtocolGuid ## PRODUCES
|
---|
38 |
|
---|
39 | [Depex]
|
---|
40 | gEfiCpuArchProtocolGuid AND gEfiLegacy8259ProtocolGuid
|
---|
41 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
42 | TimerExtra.uni
|
---|
Note:
See
TracBrowser
for help on using the repository browser.