1 | /** @file
|
---|
2 | Timer Architectural Protocol as defined in the DXE CIS
|
---|
3 |
|
---|
4 | Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
5 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
6 |
|
---|
7 | **/
|
---|
8 |
|
---|
9 | #include "Timer.h"
|
---|
10 |
|
---|
11 | //
|
---|
12 | // The handle onto which the Timer Architectural Protocol will be installed
|
---|
13 | //
|
---|
14 | EFI_HANDLE mTimerHandle = NULL;
|
---|
15 |
|
---|
16 | //
|
---|
17 | // The Timer Architectural Protocol that this driver produces
|
---|
18 | //
|
---|
19 | EFI_TIMER_ARCH_PROTOCOL mTimer = {
|
---|
20 | TimerDriverRegisterHandler,
|
---|
21 | TimerDriverSetTimerPeriod,
|
---|
22 | TimerDriverGetTimerPeriod,
|
---|
23 | TimerDriverGenerateSoftInterrupt
|
---|
24 | };
|
---|
25 |
|
---|
26 | //
|
---|
27 | // Pointer to the CPU Architectural Protocol instance
|
---|
28 | //
|
---|
29 | EFI_CPU_ARCH_PROTOCOL *mCpu;
|
---|
30 |
|
---|
31 | //
|
---|
32 | // Pointer to the Legacy 8259 Protocol instance
|
---|
33 | //
|
---|
34 | EFI_LEGACY_8259_PROTOCOL *mLegacy8259;
|
---|
35 |
|
---|
36 | //
|
---|
37 | // The notification function to call on every timer interrupt.
|
---|
38 | // A bug in the compiler prevents us from initializing this here.
|
---|
39 | //
|
---|
40 | EFI_TIMER_NOTIFY mTimerNotifyFunction;
|
---|
41 |
|
---|
42 | //
|
---|
43 | // The current period of the timer interrupt
|
---|
44 | //
|
---|
45 | volatile UINT64 mTimerPeriod = 0;
|
---|
46 |
|
---|
47 | //
|
---|
48 | // Worker Functions
|
---|
49 | //
|
---|
50 | /**
|
---|
51 | Sets the counter value for Timer #0 in a legacy 8254 timer.
|
---|
52 |
|
---|
53 | @param Count The 16-bit counter value to program into Timer #0 of the legacy 8254 timer.
|
---|
54 | **/
|
---|
55 | VOID
|
---|
56 | SetPitCount (
|
---|
57 | IN UINT16 Count
|
---|
58 | )
|
---|
59 | {
|
---|
60 | IoWrite8 (TIMER_CONTROL_PORT, 0x36);
|
---|
61 | IoWrite8 (TIMER0_COUNT_PORT, (UINT8)(Count & 0xff));
|
---|
62 | IoWrite8 (TIMER0_COUNT_PORT, (UINT8)((Count >> 8) & 0xff));
|
---|
63 | }
|
---|
64 |
|
---|
65 | /**
|
---|
66 | 8254 Timer #0 Interrupt Handler.
|
---|
67 |
|
---|
68 | @param InterruptType The type of interrupt that occurred
|
---|
69 | @param SystemContext A pointer to the system context when the interrupt occurred
|
---|
70 | **/
|
---|
71 | VOID
|
---|
72 | EFIAPI
|
---|
73 | TimerInterruptHandler (
|
---|
74 | IN EFI_EXCEPTION_TYPE InterruptType,
|
---|
75 | IN EFI_SYSTEM_CONTEXT SystemContext
|
---|
76 | )
|
---|
77 | {
|
---|
78 | EFI_TPL OriginalTPL;
|
---|
79 |
|
---|
80 | OriginalTPL = gBS->RaiseTPL (TPL_HIGH_LEVEL);
|
---|
81 |
|
---|
82 | if (mTimerNotifyFunction != NULL) {
|
---|
83 | //
|
---|
84 | // @bug : This does not handle missed timer interrupts
|
---|
85 | //
|
---|
86 | mTimerNotifyFunction (mTimerPeriod);
|
---|
87 | }
|
---|
88 |
|
---|
89 | gBS->RestoreTPL (OriginalTPL);
|
---|
90 |
|
---|
91 | DisableInterrupts ();
|
---|
92 | mLegacy8259->EndOfInterrupt (mLegacy8259, Efi8259Irq0);
|
---|
93 | }
|
---|
94 |
|
---|
95 | /**
|
---|
96 |
|
---|
97 | This function registers the handler NotifyFunction so it is called every time
|
---|
98 | the timer interrupt fires. It also passes the amount of time since the last
|
---|
99 | handler call to the NotifyFunction. If NotifyFunction is NULL, then the
|
---|
100 | handler is unregistered. If the handler is registered, then EFI_SUCCESS is
|
---|
101 | returned. If the CPU does not support registering a timer interrupt handler,
|
---|
102 | then EFI_UNSUPPORTED is returned. If an attempt is made to register a handler
|
---|
103 | when a handler is already registered, then EFI_ALREADY_STARTED is returned.
|
---|
104 | If an attempt is made to unregister a handler when a handler is not registered,
|
---|
105 | then EFI_INVALID_PARAMETER is returned. If an error occurs attempting to
|
---|
106 | register the NotifyFunction with the timer interrupt, then EFI_DEVICE_ERROR
|
---|
107 | is returned.
|
---|
108 |
|
---|
109 |
|
---|
110 | @param This The EFI_TIMER_ARCH_PROTOCOL instance.
|
---|
111 | @param NotifyFunction The function to call when a timer interrupt fires. This
|
---|
112 | function executes at TPL_HIGH_LEVEL. The DXE Core will
|
---|
113 | register a handler for the timer interrupt, so it can know
|
---|
114 | how much time has passed. This information is used to
|
---|
115 | signal timer based events. NULL will unregister the handler.
|
---|
116 |
|
---|
117 | @retval EFI_SUCCESS The timer handler was registered.
|
---|
118 | @retval EFI_UNSUPPORTED The platform does not support timer interrupts.
|
---|
119 | @retval EFI_ALREADY_STARTED NotifyFunction is not NULL, and a handler is already
|
---|
120 | registered.
|
---|
121 | @retval EFI_INVALID_PARAMETER NotifyFunction is NULL, and a handler was not
|
---|
122 | previously registered.
|
---|
123 | @retval EFI_DEVICE_ERROR The timer handler could not be registered.
|
---|
124 |
|
---|
125 | **/
|
---|
126 | EFI_STATUS
|
---|
127 | EFIAPI
|
---|
128 | TimerDriverRegisterHandler (
|
---|
129 | IN EFI_TIMER_ARCH_PROTOCOL *This,
|
---|
130 | IN EFI_TIMER_NOTIFY NotifyFunction
|
---|
131 | )
|
---|
132 | {
|
---|
133 | //
|
---|
134 | // Check for invalid parameters
|
---|
135 | //
|
---|
136 | if (NotifyFunction == NULL && mTimerNotifyFunction == NULL) {
|
---|
137 | return EFI_INVALID_PARAMETER;
|
---|
138 | }
|
---|
139 |
|
---|
140 | if (NotifyFunction != NULL && mTimerNotifyFunction != NULL) {
|
---|
141 | return EFI_ALREADY_STARTED;
|
---|
142 | }
|
---|
143 |
|
---|
144 | mTimerNotifyFunction = NotifyFunction;
|
---|
145 |
|
---|
146 | return EFI_SUCCESS;
|
---|
147 | }
|
---|
148 |
|
---|
149 | /**
|
---|
150 |
|
---|
151 | This function adjusts the period of timer interrupts to the value specified
|
---|
152 | by TimerPeriod. If the timer period is updated, then the selected timer
|
---|
153 | period is stored in EFI_TIMER.TimerPeriod, and EFI_SUCCESS is returned. If
|
---|
154 | the timer hardware is not programmable, then EFI_UNSUPPORTED is returned.
|
---|
155 | If an error occurs while attempting to update the timer period, then the
|
---|
156 | timer hardware will be put back in its state prior to this call, and
|
---|
157 | EFI_DEVICE_ERROR is returned. If TimerPeriod is 0, then the timer interrupt
|
---|
158 | is disabled. This is not the same as disabling the CPU's interrupts.
|
---|
159 | Instead, it must either turn off the timer hardware, or it must adjust the
|
---|
160 | interrupt controller so that a CPU interrupt is not generated when the timer
|
---|
161 | interrupt fires.
|
---|
162 |
|
---|
163 |
|
---|
164 | @param This The EFI_TIMER_ARCH_PROTOCOL instance.
|
---|
165 | @param TimerPeriod The rate to program the timer interrupt in 100 nS units. If
|
---|
166 | the timer hardware is not programmable, then EFI_UNSUPPORTED is
|
---|
167 | returned. If the timer is programmable, then the timer period
|
---|
168 | will be rounded up to the nearest timer period that is supported
|
---|
169 | by the timer hardware. If TimerPeriod is set to 0, then the
|
---|
170 | timer interrupts will be disabled.
|
---|
171 |
|
---|
172 | @retval EFI_SUCCESS The timer period was changed.
|
---|
173 | @retval EFI_UNSUPPORTED The platform cannot change the period of the timer interrupt.
|
---|
174 | @retval EFI_DEVICE_ERROR The timer period could not be changed due to a device error.
|
---|
175 |
|
---|
176 | **/
|
---|
177 | EFI_STATUS
|
---|
178 | EFIAPI
|
---|
179 | TimerDriverSetTimerPeriod (
|
---|
180 | IN EFI_TIMER_ARCH_PROTOCOL *This,
|
---|
181 | IN UINT64 TimerPeriod
|
---|
182 | )
|
---|
183 | {
|
---|
184 | UINT64 TimerCount;
|
---|
185 |
|
---|
186 | //
|
---|
187 | // The basic clock is 1.19318 MHz or 0.119318 ticks per 100 ns.
|
---|
188 | // TimerPeriod * 0.119318 = 8254 timer divisor. Using integer arithmetic
|
---|
189 | // TimerCount = (TimerPeriod * 119318)/1000000.
|
---|
190 | //
|
---|
191 | // Round up to next highest integer. This guarantees that the timer is
|
---|
192 | // equal to or slightly longer than the requested time.
|
---|
193 | // TimerCount = ((TimerPeriod * 119318) + 500000)/1000000
|
---|
194 | //
|
---|
195 | // Note that a TimerCount of 0 is equivalent to a count of 65,536
|
---|
196 | //
|
---|
197 | // Since TimerCount is limited to 16 bits for IA32, TimerPeriod is limited
|
---|
198 | // to 20 bits.
|
---|
199 | //
|
---|
200 | if (TimerPeriod == 0) {
|
---|
201 | //
|
---|
202 | // Disable timer interrupt for a TimerPeriod of 0
|
---|
203 | //
|
---|
204 | mLegacy8259->DisableIrq (mLegacy8259, Efi8259Irq0);
|
---|
205 | } else {
|
---|
206 |
|
---|
207 | //
|
---|
208 | // Convert TimerPeriod into 8254 counts
|
---|
209 | //
|
---|
210 | TimerCount = DivU64x32 (MultU64x32 (119318, (UINT32) TimerPeriod) + 500000, 1000000);
|
---|
211 |
|
---|
212 | //
|
---|
213 | // Check for overflow
|
---|
214 | //
|
---|
215 | if (TimerCount >= 65536) {
|
---|
216 | TimerCount = 0;
|
---|
217 | TimerPeriod = MAX_TIMER_TICK_DURATION;
|
---|
218 | }
|
---|
219 | //
|
---|
220 | // Program the 8254 timer with the new count value
|
---|
221 | //
|
---|
222 | SetPitCount ((UINT16) TimerCount);
|
---|
223 |
|
---|
224 | //
|
---|
225 | // Enable timer interrupt
|
---|
226 | //
|
---|
227 | mLegacy8259->EnableIrq (mLegacy8259, Efi8259Irq0, FALSE);
|
---|
228 | }
|
---|
229 | //
|
---|
230 | // Save the new timer period
|
---|
231 | //
|
---|
232 | mTimerPeriod = TimerPeriod;
|
---|
233 |
|
---|
234 | return EFI_SUCCESS;
|
---|
235 | }
|
---|
236 |
|
---|
237 | /**
|
---|
238 |
|
---|
239 | This function retrieves the period of timer interrupts in 100 ns units,
|
---|
240 | returns that value in TimerPeriod, and returns EFI_SUCCESS. If TimerPeriod
|
---|
241 | is NULL, then EFI_INVALID_PARAMETER is returned. If a TimerPeriod of 0 is
|
---|
242 | returned, then the timer is currently disabled.
|
---|
243 |
|
---|
244 |
|
---|
245 | @param This The EFI_TIMER_ARCH_PROTOCOL instance.
|
---|
246 | @param TimerPeriod A pointer to the timer period to retrieve in 100 ns units. If
|
---|
247 | 0 is returned, then the timer is currently disabled.
|
---|
248 |
|
---|
249 | @retval EFI_SUCCESS The timer period was returned in TimerPeriod.
|
---|
250 | @retval EFI_INVALID_PARAMETER TimerPeriod is NULL.
|
---|
251 |
|
---|
252 | **/
|
---|
253 | EFI_STATUS
|
---|
254 | EFIAPI
|
---|
255 | TimerDriverGetTimerPeriod (
|
---|
256 | IN EFI_TIMER_ARCH_PROTOCOL *This,
|
---|
257 | OUT UINT64 *TimerPeriod
|
---|
258 | )
|
---|
259 | {
|
---|
260 | if (TimerPeriod == NULL) {
|
---|
261 | return EFI_INVALID_PARAMETER;
|
---|
262 | }
|
---|
263 |
|
---|
264 | *TimerPeriod = mTimerPeriod;
|
---|
265 |
|
---|
266 | return EFI_SUCCESS;
|
---|
267 | }
|
---|
268 |
|
---|
269 | /**
|
---|
270 |
|
---|
271 | This function generates a soft timer interrupt. If the platform does not support soft
|
---|
272 | timer interrupts, then EFI_UNSUPPORTED is returned. Otherwise, EFI_SUCCESS is returned.
|
---|
273 | If a handler has been registered through the EFI_TIMER_ARCH_PROTOCOL.RegisterHandler()
|
---|
274 | service, then a soft timer interrupt will be generated. If the timer interrupt is
|
---|
275 | enabled when this service is called, then the registered handler will be invoked. The
|
---|
276 | registered handler should not be able to distinguish a hardware-generated timer
|
---|
277 | interrupt from a software-generated timer interrupt.
|
---|
278 |
|
---|
279 |
|
---|
280 | @param This The EFI_TIMER_ARCH_PROTOCOL instance.
|
---|
281 |
|
---|
282 | @retval EFI_SUCCESS The soft timer interrupt was generated.
|
---|
283 | @retval EFI_UNSUPPORTED The platform does not support the generation of soft timer interrupts.
|
---|
284 |
|
---|
285 | **/
|
---|
286 | EFI_STATUS
|
---|
287 | EFIAPI
|
---|
288 | TimerDriverGenerateSoftInterrupt (
|
---|
289 | IN EFI_TIMER_ARCH_PROTOCOL *This
|
---|
290 | )
|
---|
291 | {
|
---|
292 | EFI_STATUS Status;
|
---|
293 | UINT16 IRQMask;
|
---|
294 | EFI_TPL OriginalTPL;
|
---|
295 |
|
---|
296 | //
|
---|
297 | // If the timer interrupt is enabled, then the registered handler will be invoked.
|
---|
298 | //
|
---|
299 | Status = mLegacy8259->GetMask (mLegacy8259, NULL, NULL, &IRQMask, NULL);
|
---|
300 | ASSERT_EFI_ERROR (Status);
|
---|
301 | if ((IRQMask & 0x1) == 0) {
|
---|
302 | //
|
---|
303 | // Invoke the registered handler
|
---|
304 | //
|
---|
305 | OriginalTPL = gBS->RaiseTPL (TPL_HIGH_LEVEL);
|
---|
306 |
|
---|
307 | if (mTimerNotifyFunction != NULL) {
|
---|
308 | //
|
---|
309 | // @bug : This does not handle missed timer interrupts
|
---|
310 | //
|
---|
311 | mTimerNotifyFunction (mTimerPeriod);
|
---|
312 | }
|
---|
313 |
|
---|
314 | gBS->RestoreTPL (OriginalTPL);
|
---|
315 | } else {
|
---|
316 | return EFI_UNSUPPORTED;
|
---|
317 | }
|
---|
318 |
|
---|
319 | return EFI_SUCCESS;
|
---|
320 | }
|
---|
321 |
|
---|
322 | /**
|
---|
323 | Initialize the Timer Architectural Protocol driver
|
---|
324 |
|
---|
325 | @param ImageHandle ImageHandle of the loaded driver
|
---|
326 | @param SystemTable Pointer to the System Table
|
---|
327 |
|
---|
328 | @retval EFI_SUCCESS Timer Architectural Protocol created
|
---|
329 | @retval EFI_OUT_OF_RESOURCES Not enough resources available to initialize driver.
|
---|
330 | @retval EFI_DEVICE_ERROR A device error occurred attempting to initialize the driver.
|
---|
331 |
|
---|
332 | **/
|
---|
333 | EFI_STATUS
|
---|
334 | EFIAPI
|
---|
335 | TimerDriverInitialize (
|
---|
336 | IN EFI_HANDLE ImageHandle,
|
---|
337 | IN EFI_SYSTEM_TABLE *SystemTable
|
---|
338 | )
|
---|
339 | {
|
---|
340 | EFI_STATUS Status;
|
---|
341 | UINT32 TimerVector;
|
---|
342 |
|
---|
343 | //
|
---|
344 | // Initialize the pointer to our notify function.
|
---|
345 | //
|
---|
346 | mTimerNotifyFunction = NULL;
|
---|
347 |
|
---|
348 | //
|
---|
349 | // Make sure the Timer Architectural Protocol is not already installed in the system
|
---|
350 | //
|
---|
351 | ASSERT_PROTOCOL_ALREADY_INSTALLED (NULL, &gEfiTimerArchProtocolGuid);
|
---|
352 |
|
---|
353 | //
|
---|
354 | // Find the CPU architectural protocol.
|
---|
355 | //
|
---|
356 | Status = gBS->LocateProtocol (&gEfiCpuArchProtocolGuid, NULL, (VOID **) &mCpu);
|
---|
357 | ASSERT_EFI_ERROR (Status);
|
---|
358 |
|
---|
359 | //
|
---|
360 | // Find the Legacy8259 protocol.
|
---|
361 | //
|
---|
362 | Status = gBS->LocateProtocol (&gEfiLegacy8259ProtocolGuid, NULL, (VOID **) &mLegacy8259);
|
---|
363 | ASSERT_EFI_ERROR (Status);
|
---|
364 |
|
---|
365 | //
|
---|
366 | // Force the timer to be disabled
|
---|
367 | //
|
---|
368 | Status = TimerDriverSetTimerPeriod (&mTimer, 0);
|
---|
369 | ASSERT_EFI_ERROR (Status);
|
---|
370 |
|
---|
371 | //
|
---|
372 | // Get the interrupt vector number corresponding to IRQ0 from the 8259 driver
|
---|
373 | //
|
---|
374 | TimerVector = 0;
|
---|
375 | Status = mLegacy8259->GetVector (mLegacy8259, Efi8259Irq0, (UINT8 *) &TimerVector);
|
---|
376 | ASSERT_EFI_ERROR (Status);
|
---|
377 |
|
---|
378 | //
|
---|
379 | // Install interrupt handler for 8254 Timer #0 (ISA IRQ0)
|
---|
380 | //
|
---|
381 | Status = mCpu->RegisterInterruptHandler (mCpu, TimerVector, TimerInterruptHandler);
|
---|
382 | ASSERT_EFI_ERROR (Status);
|
---|
383 |
|
---|
384 | //
|
---|
385 | // Force the timer to be enabled at its default period
|
---|
386 | //
|
---|
387 | Status = TimerDriverSetTimerPeriod (&mTimer, DEFAULT_TIMER_TICK_DURATION);
|
---|
388 | ASSERT_EFI_ERROR (Status);
|
---|
389 |
|
---|
390 | //
|
---|
391 | // Install the Timer Architectural Protocol onto a new handle
|
---|
392 | //
|
---|
393 | Status = gBS->InstallMultipleProtocolInterfaces (
|
---|
394 | &mTimerHandle,
|
---|
395 | &gEfiTimerArchProtocolGuid, &mTimer,
|
---|
396 | NULL
|
---|
397 | );
|
---|
398 | ASSERT_EFI_ERROR (Status);
|
---|
399 |
|
---|
400 | return Status;
|
---|
401 | }
|
---|
402 |
|
---|