refine comments for EFI_CONSOLE_CONTROL_PROTOCOL
[edk2.git] / UnixPkg / TimerDxe / Timer.c
blob53b5656f7cccaa7425a8f987c0f22679cd49b4ad
1 /*++
3 Copyright (c) 2004, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12 Module Name:
14 Timer.c
16 Abstract:
18 UNIX Emulation Timer Architectural Protocol Driver as defined in DXE CIS
20 This Timer module uses an UNIX Thread to simulate the timer-tick driven
21 timer service. In the future, the Thread creation should possibly be
22 abstracted by the CPU architectural protocol
24 --*/
25 #include "PiDxe.h"
26 #include <Protocol/Timer.h>
27 #include <Protocol/Cpu.h>
28 #include "Timer.h"
29 #include <Library/BaseLib.h>
30 #include <Library/DebugLib.h>
31 #include <Library/UefiLib.h>
32 #include <Library/UefiDriverEntryPoint.h>
33 #include <Library/MemoryAllocationLib.h>
34 #include <Library/UefiBootServicesTableLib.h>
35 #include "UnixDxe.h"
36 #include <Library/UnixLib.h>
39 // Pointer to the CPU Architectural Protocol instance
41 EFI_CPU_ARCH_PROTOCOL *mCpu;
44 // The Timer Architectural Protocol that this driver produces
46 EFI_TIMER_ARCH_PROTOCOL mTimer = {
47 UnixTimerDriverRegisterHandler,
48 UnixTimerDriverSetTimerPeriod,
49 UnixTimerDriverGetTimerPeriod,
50 UnixTimerDriverGenerateSoftInterrupt
54 // The notification function to call on every timer interrupt
56 EFI_TIMER_NOTIFY mTimerNotifyFunction = NULL;
59 // The current period of the timer interrupt
61 UINT64 mTimerPeriodMs;
64 VOID
65 TimerCallback (UINT64 DeltaMs)
66 /*++
68 Routine Description:
70 TODO: Add function description
72 Arguments:
74 wTimerID - TODO: add argument description
75 msg - TODO: add argument description
76 dwUser - TODO: add argument description
77 dw1 - TODO: add argument description
78 dw2 - TODO: add argument description
80 Returns:
82 TODO: add return values
84 --*/
86 EFI_TPL OriginalTPL;
87 EFI_TIMER_NOTIFY CallbackFunction;
90 OriginalTPL = gBS->RaiseTPL (TPL_HIGH_LEVEL);
92 if (OriginalTPL < TPL_HIGH_LEVEL) {
93 CallbackFunction = mTimerNotifyFunction;
96 // Only invoke the callback function if a Non-NULL handler has been
97 // registered. Assume all other handlers are legal.
99 if (CallbackFunction != NULL) {
100 CallbackFunction ((UINT64) (DeltaMs * 10000));
104 gBS->RestoreTPL (OriginalTPL);
108 EFI_STATUS
109 EFIAPI
110 UnixTimerDriverRegisterHandler (
111 IN EFI_TIMER_ARCH_PROTOCOL *This,
112 IN EFI_TIMER_NOTIFY NotifyFunction
114 /*++
116 Routine Description:
118 This function registers the handler NotifyFunction so it is called every time
119 the timer interrupt fires. It also passes the amount of time since the last
120 handler call to the NotifyFunction. If NotifyFunction is NULL, then the
121 handler is unregistered. If the handler is registered, then EFI_SUCCESS is
122 returned. If the CPU does not support registering a timer interrupt handler,
123 then EFI_UNSUPPORTED is returned. If an attempt is made to register a handler
124 when a handler is already registered, then EFI_ALREADY_STARTED is returned.
125 If an attempt is made to unregister a handler when a handler is not registered,
126 then EFI_INVALID_PARAMETER is returned. If an error occurs attempting to
127 register the NotifyFunction with the timer interrupt, then EFI_DEVICE_ERROR
128 is returned.
130 Arguments:
132 This - The EFI_TIMER_ARCH_PROTOCOL instance.
134 NotifyFunction - The function to call when a timer interrupt fires. This
135 function executes at TPL_HIGH_LEVEL. The DXE Core will
136 register a handler for the timer interrupt, so it can know
137 how much time has passed. This information is used to
138 signal timer based events. NULL will unregister the handler.
140 Returns:
142 EFI_SUCCESS - The timer handler was registered.
144 EFI_UNSUPPORTED - The platform does not support timer interrupts.
146 EFI_ALREADY_STARTED - NotifyFunction is not NULL, and a handler is already
147 registered.
149 EFI_INVALID_PARAMETER - NotifyFunction is NULL, and a handler was not
150 previously registered.
152 EFI_DEVICE_ERROR - The timer handler could not be registered.
154 --*/
157 // Check for invalid parameters
159 if (NotifyFunction == NULL && mTimerNotifyFunction == NULL) {
160 return EFI_INVALID_PARAMETER;
163 if (NotifyFunction != NULL && mTimerNotifyFunction != NULL) {
164 return EFI_ALREADY_STARTED;
167 if (NotifyFunction == NULL) {
168 /* Disable timer. */
169 gUnix->SetTimer (0, TimerCallback);
170 } else if (mTimerNotifyFunction == NULL) {
171 /* Enable Timer. */
172 gUnix->SetTimer (mTimerPeriodMs, TimerCallback);
174 mTimerNotifyFunction = NotifyFunction;
176 return EFI_SUCCESS;
179 EFI_STATUS
180 EFIAPI
181 UnixTimerDriverSetTimerPeriod (
182 IN EFI_TIMER_ARCH_PROTOCOL *This,
183 IN UINT64 TimerPeriod
185 /*++
187 Routine Description:
189 This function adjusts the period of timer interrupts to the value specified
190 by TimerPeriod. If the timer period is updated, then the selected timer
191 period is stored in EFI_TIMER.TimerPeriod, and EFI_SUCCESS is returned. If
192 the timer hardware is not programmable, then EFI_UNSUPPORTED is returned.
193 If an error occurs while attempting to update the timer period, then the
194 timer hardware will be put back in its state prior to this call, and
195 EFI_DEVICE_ERROR is returned. If TimerPeriod is 0, then the timer interrupt
196 is disabled. This is not the same as disabling the CPU's interrupts.
197 Instead, it must either turn off the timer hardware, or it must adjust the
198 interrupt controller so that a CPU interrupt is not generated when the timer
199 interrupt fires.
201 Arguments:
203 This - The EFI_TIMER_ARCH_PROTOCOL instance.
205 TimerPeriod - The rate to program the timer interrupt in 100 nS units. If
206 the timer hardware is not programmable, then EFI_UNSUPPORTED is
207 returned. If the timer is programmable, then the timer period
208 will be rounded up to the nearest timer period that is supported
209 by the timer hardware. If TimerPeriod is set to 0, then the
210 timer interrupts will be disabled.
212 Returns:
214 EFI_SUCCESS - The timer period was changed.
216 EFI_UNSUPPORTED - The platform cannot change the period of the timer interrupt.
218 EFI_DEVICE_ERROR - The timer period could not be changed due to a device error.
220 --*/
224 // If TimerPeriod is 0, then the timer thread should be canceled
225 // If the TimerPeriod is valid, then create and/or adjust the period of the timer thread
227 if (TimerPeriod == 0
228 || ((TimerPeriod > TIMER_MINIMUM_VALUE)
229 && (TimerPeriod < TIMER_MAXIMUM_VALUE))) {
230 mTimerPeriodMs = DivU64x32 (TimerPeriod + 5000, 10000);
232 gUnix->SetTimer (mTimerPeriodMs, TimerCallback);
235 return EFI_SUCCESS;
238 EFI_STATUS
239 EFIAPI
240 UnixTimerDriverGetTimerPeriod (
241 IN EFI_TIMER_ARCH_PROTOCOL *This,
242 OUT UINT64 *TimerPeriod
244 /*++
246 Routine Description:
248 This function retrieves the period of timer interrupts in 100 ns units,
249 returns that value in TimerPeriod, and returns EFI_SUCCESS. If TimerPeriod
250 is NULL, then EFI_INVALID_PARAMETER is returned. If a TimerPeriod of 0 is
251 returned, then the timer is currently disabled.
253 Arguments:
255 This - The EFI_TIMER_ARCH_PROTOCOL instance.
257 TimerPeriod - A pointer to the timer period to retrieve in 100 ns units. If
258 0 is returned, then the timer is currently disabled.
260 Returns:
262 EFI_SUCCESS - The timer period was returned in TimerPeriod.
264 EFI_INVALID_PARAMETER - TimerPeriod is NULL.
266 --*/
268 if (TimerPeriod == NULL) {
269 return EFI_INVALID_PARAMETER;
272 *TimerPeriod = mTimerPeriodMs * 10000;
274 return EFI_SUCCESS;
277 EFI_STATUS
278 EFIAPI
279 UnixTimerDriverGenerateSoftInterrupt (
280 IN EFI_TIMER_ARCH_PROTOCOL *This
282 /*++
284 Routine Description:
286 This function generates a soft timer interrupt. If the platform does not support soft
287 timer interrupts, then EFI_UNSUPPORTED is returned. Otherwise, EFI_SUCCESS is returned.
288 If a handler has been registered through the EFI_TIMER_ARCH_PROTOCOL.RegisterHandler()
289 service, then a soft timer interrupt will be generated. If the timer interrupt is
290 enabled when this service is called, then the registered handler will be invoked. The
291 registered handler should not be able to distinguish a hardware-generated timer
292 interrupt from a software-generated timer interrupt.
294 Arguments:
296 This - The EFI_TIMER_ARCH_PROTOCOL instance.
298 Returns:
300 EFI_SUCCESS - The soft timer interrupt was generated.
302 EFI_UNSUPPORTEDT - The platform does not support the generation of soft timer interrupts.
304 --*/
306 return EFI_UNSUPPORTED;
309 EFI_STATUS
310 EFIAPI
311 UnixTimerDriverInitialize (
312 IN EFI_HANDLE ImageHandle,
313 IN EFI_SYSTEM_TABLE *SystemTable
315 /*++
317 Routine Description:
319 Initialize the Timer Architectural Protocol driver
321 Arguments:
323 ImageHandle - ImageHandle of the loaded driver
325 SystemTable - Pointer to the System Table
327 Returns:
329 EFI_SUCCESS - Timer Architectural Protocol created
331 EFI_OUT_OF_RESOURCES - Not enough resources available to initialize driver.
333 EFI_DEVICE_ERROR - A device error occured attempting to initialize the driver.
335 --*/
337 EFI_STATUS Status;
338 EFI_HANDLE Handle;
341 // Make sure the Timer Architectural Protocol is not already installed in the system
343 ASSERT_PROTOCOL_ALREADY_INSTALLED (NULL, &gEfiTimerArchProtocolGuid);
346 // Get the CPU Architectural Protocol instance
348 Status = gBS->LocateProtocol (&gEfiCpuArchProtocolGuid, NULL, (void *)&mCpu);
349 ASSERT_EFI_ERROR (Status);
352 // Install the Timer Architectural Protocol onto a new handle
354 Handle = NULL;
355 Status = gBS->InstallProtocolInterface (
356 &Handle,
357 &gEfiTimerArchProtocolGuid,
358 EFI_NATIVE_INTERFACE,
359 &mTimer
361 if (EFI_ERROR (Status)) {
362 return Status;
366 // Start the timer thread at the default timer period
368 Status = mTimer.SetTimerPeriod (&mTimer, DEFAULT_TIMER_TICK_DURATION);
369 if (EFI_ERROR (Status)) {
370 return Status;
373 return EFI_SUCCESS;