]>
Commit | Line | Data |
---|---|---|
1 | /** @file\r | |
2 | Timer Architectural Protocol as defined in the DXE CIS\r | |
3 | \r | |
4 | This code is used to provide the timer tick for the DXE core.\r | |
5 | \r | |
6 | Copyright (c) 2006, Intel Corporation \r | |
7 | All rights reserved. This program and the accompanying materials \r | |
8 | are licensed and made available under the terms and conditions of the BSD License \r | |
9 | which accompanies this distribution. The full text of the license may be found at \r | |
10 | http://opensource.org/licenses/bsd-license.php \r | |
11 | \r | |
12 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r | |
13 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r | |
14 | \r | |
15 | @par Revision Reference:\r | |
16 | Version 0.91B.\r | |
17 | \r | |
18 | **/\r | |
19 | \r | |
20 | #ifndef __ARCH_PROTOCOL_TIMER_H__\r | |
21 | #define __ARCH_PROTOCOL_TIMER_H__\r | |
22 | \r | |
23 | //\r | |
24 | // Global ID for the Timer Architectural Protocol\r | |
25 | //\r | |
26 | #define EFI_TIMER_ARCH_PROTOCOL_GUID \\r | |
27 | { 0x26baccb3, 0x6f42, 0x11d4, {0xbc, 0xe7, 0x0, 0x80, 0xc7, 0x3c, 0x88, 0x81 } }\r | |
28 | \r | |
29 | //\r | |
30 | // Declare forward reference for the Timer Architectural Protocol\r | |
31 | //\r | |
32 | typedef struct _EFI_TIMER_ARCH_PROTOCOL EFI_TIMER_ARCH_PROTOCOL;\r | |
33 | \r | |
34 | /**\r | |
35 | This function of this type is called when a timer interrupt fires. This \r | |
36 | function executes at TPL_HIGH_LEVEL. The DXE Core will register a funtion\r | |
37 | of tyis type to be called for the timer interrupt, so it can know how much \r | |
38 | time has passed. This information is used to signal timer based events. \r | |
39 | \r | |
40 | @param Time Time since the last timer interrupt in 100 ns units. This will\r | |
41 | typically be TimerPeriod, but if a timer interrupt is missed, and the\r | |
42 | EFI_TIMER_ARCH_PROTOCOL driver can detect missed interrupts, then Time\r | |
43 | will contain the actual amount of time since the last interrupt.\r | |
44 | \r | |
45 | None.\r | |
46 | \r | |
47 | **/\r | |
48 | typedef\r | |
49 | VOID\r | |
50 | (EFIAPI *EFI_TIMER_NOTIFY) (\r | |
51 | IN UINT64 Time\r | |
52 | );\r | |
53 | \r | |
54 | /**\r | |
55 | This function registers the handler NotifyFunction so it is called every time \r | |
56 | the timer interrupt fires. It also passes the amount of time since the last \r | |
57 | handler call to the NotifyFunction. If NotifyFunction is NULL, then the \r | |
58 | handler is unregistered. If the handler is registered, then EFI_SUCCESS is \r | |
59 | returned. If the CPU does not support registering a timer interrupt handler, \r | |
60 | then EFI_UNSUPPORTED is returned. If an attempt is made to register a handler \r | |
61 | when a handler is already registered, then EFI_ALREADY_STARTED is returned. \r | |
62 | If an attempt is made to unregister a handler when a handler is not registered, \r | |
63 | then EFI_INVALID_PARAMETER is returned. If an error occurs attempting to \r | |
64 | register the NotifyFunction with the timer interrupt, then EFI_DEVICE_ERROR \r | |
65 | is returned.\r | |
66 | \r | |
67 | @param This The EFI_TIMER_ARCH_PROTOCOL instance.\r | |
68 | @param NotifyFunction The function to call when a timer interrupt fires. This\r | |
69 | function executes at TPL_HIGH_LEVEL. The DXE Core will\r | |
70 | register a handler for the timer interrupt, so it can know\r | |
71 | how much time has passed. This information is used to\r | |
72 | signal timer based events. NULL will unregister the handler.\r | |
73 | \r | |
74 | @retval EFI_SUCCESS The timer handler was registered.\r | |
75 | @retval EFI_UNSUPPORTED The platform does not support timer interrupts.\r | |
76 | @retval EFI_ALREADY_STARTED NotifyFunction is not NULL, and a handler is already\r | |
77 | registered.\r | |
78 | @retval EFI_INVALID_PARAMETER NotifyFunction is NULL, and a handler was not\r | |
79 | previously registered.\r | |
80 | @retval EFI_DEVICE_ERROR The timer handler could not be registered.\r | |
81 | \r | |
82 | **/\r | |
83 | typedef \r | |
84 | EFI_STATUS\r | |
85 | (EFIAPI *EFI_TIMER_REGISTER_HANDLER) (\r | |
86 | IN EFI_TIMER_ARCH_PROTOCOL *This,\r | |
87 | IN EFI_TIMER_NOTIFY NotifyFunction\r | |
88 | );\r | |
89 | \r | |
90 | /**\r | |
91 | This function adjusts the period of timer interrupts to the value specified \r | |
92 | by TimerPeriod. If the timer period is updated, then the selected timer \r | |
93 | period is stored in EFI_TIMER.TimerPeriod, and EFI_SUCCESS is returned. If \r | |
94 | the timer hardware is not programmable, then EFI_UNSUPPORTED is returned. \r | |
95 | If an error occurs while attempting to update the timer period, then the \r | |
96 | timer hardware will be put back in its state prior to this call, and \r | |
97 | EFI_DEVICE_ERROR is returned. If TimerPeriod is 0, then the timer interrupt \r | |
98 | is disabled. This is not the same as disabling the CPU's interrupts. \r | |
99 | Instead, it must either turn off the timer hardware, or it must adjust the \r | |
100 | interrupt controller so that a CPU interrupt is not generated when the timer \r | |
101 | interrupt fires. \r | |
102 | \r | |
103 | @param This The EFI_TIMER_ARCH_PROTOCOL instance.\r | |
104 | @param TimerPeriod The rate to program the timer interrupt in 100 nS units. If\r | |
105 | the timer hardware is not programmable, then EFI_UNSUPPORTED is\r | |
106 | returned. If the timer is programmable, then the timer period\r | |
107 | will be rounded up to the nearest timer period that is supported\r | |
108 | by the timer hardware. If TimerPeriod is set to 0, then the\r | |
109 | timer interrupts will be disabled.\r | |
110 | \r | |
111 | @retval EFI_SUCCESS The timer period was changed.\r | |
112 | @retval EFI_UNSUPPORTED The platform cannot change the period of the timer interrupt.\r | |
113 | @retval EFI_DEVICE_ERROR The timer period could not be changed due to a device error.\r | |
114 | \r | |
115 | **/\r | |
116 | typedef \r | |
117 | EFI_STATUS\r | |
118 | (EFIAPI *EFI_TIMER_SET_TIMER_PERIOD) (\r | |
119 | IN EFI_TIMER_ARCH_PROTOCOL *This,\r | |
120 | IN UINT64 TimerPeriod\r | |
121 | );\r | |
122 | \r | |
123 | /**\r | |
124 | This function retrieves the period of timer interrupts in 100 ns units, \r | |
125 | returns that value in TimerPeriod, and returns EFI_SUCCESS. If TimerPeriod \r | |
126 | is NULL, then EFI_INVALID_PARAMETER is returned. If a TimerPeriod of 0 is \r | |
127 | returned, then the timer is currently disabled.\r | |
128 | \r | |
129 | @param This The EFI_TIMER_ARCH_PROTOCOL instance.\r | |
130 | @param TimerPeriod A pointer to the timer period to retrieve in 100 ns units. If\r | |
131 | 0 is returned, then the timer is currently disabled.\r | |
132 | \r | |
133 | @retval EFI_SUCCESS The timer period was returned in TimerPeriod.\r | |
134 | @retval EFI_INVALID_PARAMETER TimerPeriod is NULL.\r | |
135 | \r | |
136 | **/\r | |
137 | typedef \r | |
138 | EFI_STATUS\r | |
139 | (EFIAPI *EFI_TIMER_GET_TIMER_PERIOD) (\r | |
140 | IN EFI_TIMER_ARCH_PROTOCOL *This,\r | |
141 | OUT UINT64 *TimerPeriod\r | |
142 | );\r | |
143 | \r | |
144 | /**\r | |
145 | This function generates a soft timer interrupt. If the platform does not support soft \r | |
146 | timer interrupts, then EFI_UNSUPPORTED is returned. Otherwise, EFI_SUCCESS is returned. \r | |
147 | If a handler has been registered through the EFI_TIMER_ARCH_PROTOCOL.RegisterHandler() \r | |
148 | service, then a soft timer interrupt will be generated. If the timer interrupt is \r | |
149 | enabled when this service is called, then the registered handler will be invoked. The \r | |
150 | registered handler should not be able to distinguish a hardware-generated timer \r | |
151 | interrupt from a software-generated timer interrupt.\r | |
152 | \r | |
153 | @param This The EFI_TIMER_ARCH_PROTOCOL instance.\r | |
154 | \r | |
155 | @retval EFI_SUCCESS The soft timer interrupt was generated.\r | |
156 | @retval EFI_UNSUPPORTEDT The platform does not support the generation of soft timer interrupts.\r | |
157 | \r | |
158 | **/\r | |
159 | typedef \r | |
160 | EFI_STATUS\r | |
161 | (EFIAPI *EFI_TIMER_GENERATE_SOFT_INTERRUPT) (\r | |
162 | IN EFI_TIMER_ARCH_PROTOCOL *This\r | |
163 | );\r | |
164 | \r | |
165 | \r | |
166 | /**\r | |
167 | Interface stucture for the Timer Architectural Protocol.\r | |
168 | \r | |
169 | @par Protocol Description:\r | |
170 | This protocol provides the services to initialize a periodic timer \r | |
171 | interrupt, and to register a handler that is called each time the timer\r | |
172 | interrupt fires. It may also provide a service to adjust the rate of the\r | |
173 | periodic timer interrupt. When a timer interrupt occurs, the handler is \r | |
174 | passed the amount of time that has passed since the previous timer \r | |
175 | interrupt.\r | |
176 | \r | |
177 | @param RegisterHandler\r | |
178 | Registers a handler that will be called each time the \r | |
179 | timer interrupt fires. TimerPeriod defines the minimum \r | |
180 | time between timer interrupts, so TimerPeriod will also \r | |
181 | be the minimum time between calls to the registered \r | |
182 | handler.\r | |
183 | \r | |
184 | @param SetTimerPeriod\r | |
185 | Sets the period of the timer interrupt in 100 nS units. \r | |
186 | This function is optional, and may return EFI_UNSUPPORTED. \r | |
187 | If this function is supported, then the timer period will \r | |
188 | be rounded up to the nearest supported timer period.\r | |
189 | \r | |
190 | @param GetTimerPeriod\r | |
191 | Retrieves the period of the timer interrupt in 100 nS units.\r | |
192 | \r | |
193 | @param GenerateSoftInterrupt\r | |
194 | Generates a soft timer interrupt that simulates the firing of \r | |
195 | the timer interrupt. This service can be used to invoke the \r | |
196 | registered handler if the timer interrupt has been masked for \r | |
197 | a period of time.\r | |
198 | \r | |
199 | **/\r | |
200 | struct _EFI_TIMER_ARCH_PROTOCOL {\r | |
201 | EFI_TIMER_REGISTER_HANDLER RegisterHandler;\r | |
202 | EFI_TIMER_SET_TIMER_PERIOD SetTimerPeriod;\r | |
203 | EFI_TIMER_GET_TIMER_PERIOD GetTimerPeriod;\r | |
204 | EFI_TIMER_GENERATE_SOFT_INTERRUPT GenerateSoftInterrupt;\r | |
205 | };\r | |
206 | \r | |
207 | extern EFI_GUID gEfiTimerArchProtocolGuid;\r | |
208 | \r | |
209 | #endif\r |