]> git.proxmox.com Git - mirror_edk2.git/blame - Nt32Pkg/TimerDxe/Timer.h
Update the copyright notice format
[mirror_edk2.git] / Nt32Pkg / TimerDxe / Timer.h
CommitLineData
6ae81428 1/**@file\r
e331c50d 2\r
8f2a5f80
HT
3Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>\r
4This program and the accompanying materials \r
e331c50d 5are licensed and made available under the terms and conditions of the BSD License \r
6which accompanies this distribution. The full text of the license may be found at \r
7http://opensource.org/licenses/bsd-license.php \r
8 \r
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
11\r
12Module Name:\r
13\r
14 Timer.h\r
15\r
16Abstract:\r
17\r
18 NT Emulation Architectural Protocol Driver as defined in Tiano.\r
19 This Timer module uses an NT Thread to simulate the timer-tick driven\r
20 timer service.\r
21\r
6ae81428 22**/\r
e331c50d 23\r
24#ifndef _TIMER_H_\r
25#define _TIMER_H_\r
26\r
27\r
60c93673 28#include <Uefi.h>\r
f2569572
A
29#include <WinNtDxe.h>\r
30#include <Protocol/Timer.h>\r
31#include <Protocol/Cpu.h>\r
32#include <Library/DebugLib.h>\r
33#include <Library/UefiDriverEntryPoint.h>\r
34#include <Library/WinNtLib.h>\r
35#include <Library/UefiBootServicesTableLib.h>\r
e331c50d 36\r
37\r
e331c50d 38//\r
39// Legal timer value range in 100 ns units\r
40//\r
41#define TIMER_MINIMUM_VALUE 0\r
42#define TIMER_MAXIMUM_VALUE (0x100000000 - 1)\r
43\r
44//\r
45// Default timer value in 100 ns units (10 ms)\r
46//\r
47#define DEFAULT_TIMER_TICK_DURATION 100000\r
48\r
49//\r
50// Function Prototypes\r
51//\r
52EFI_STATUS\r
53EFIAPI\r
54WinNtTimerDriverInitialize (\r
55 IN EFI_HANDLE ImageHandle,\r
56 IN EFI_SYSTEM_TABLE *SystemTable\r
57 )\r
58/*++\r
59\r
60Routine Description:\r
61\r
62 TODO: Add function description\r
63\r
64Arguments:\r
65\r
66 ImageHandle - TODO: add argument description\r
67 SystemTable - TODO: add argument description\r
68\r
69Returns:\r
70\r
71 TODO: add return values\r
72\r
73--*/\r
74;\r
75\r
76EFI_STATUS\r
77EFIAPI\r
78WinNtTimerDriverRegisterHandler (\r
79 IN EFI_TIMER_ARCH_PROTOCOL *This,\r
80 IN EFI_TIMER_NOTIFY NotifyFunction\r
81 )\r
82/*++\r
83\r
84Routine Description:\r
85\r
86 TODO: Add function description\r
87\r
88Arguments:\r
89\r
90 This - TODO: add argument description\r
91 NotifyFunction - TODO: add argument description\r
92\r
93Returns:\r
94\r
95 TODO: add return values\r
96\r
97--*/\r
98;\r
99\r
100EFI_STATUS\r
101EFIAPI\r
102WinNtTimerDriverSetTimerPeriod (\r
103 IN EFI_TIMER_ARCH_PROTOCOL *This,\r
104 IN UINT64 TimerPeriod\r
105 )\r
106/*++\r
107\r
108Routine Description:\r
109\r
110 TODO: Add function description\r
111\r
112Arguments:\r
113\r
114 This - TODO: add argument description\r
115 TimerPeriod - TODO: add argument description\r
116\r
117Returns:\r
118\r
119 TODO: add return values\r
120\r
121--*/\r
122;\r
123\r
124EFI_STATUS\r
125EFIAPI\r
126WinNtTimerDriverGetTimerPeriod (\r
127 IN EFI_TIMER_ARCH_PROTOCOL *This,\r
128 OUT UINT64 *TimerPeriod\r
129 )\r
130/*++\r
131\r
132Routine Description:\r
133\r
134 TODO: Add function description\r
135\r
136Arguments:\r
137\r
138 This - TODO: add argument description\r
139 TimerPeriod - TODO: add argument description\r
140\r
141Returns:\r
142\r
143 TODO: add return values\r
144\r
145--*/\r
146;\r
147\r
148EFI_STATUS\r
149EFIAPI\r
150WinNtTimerDriverGenerateSoftInterrupt (\r
151 IN EFI_TIMER_ARCH_PROTOCOL *This\r
152 )\r
153/*++\r
154\r
155Routine Description:\r
156\r
157 TODO: Add function description\r
158\r
159Arguments:\r
160\r
161 This - TODO: add argument description\r
162\r
163Returns:\r
164\r
165 TODO: add return values\r
166\r
167--*/\r
168;\r
169\r
170#endif\r