Commit | Line | Data |
---|---|---|
fb0b259e | 1 | /** @file\r |
2 | RTC Architectural Protocol GUID as defined in DxeCis 0.96.\r | |
8cd4d17c | 3 | \r |
fb0b259e | 4 | Copyright (c) 2006 - 2007, Intel Corporation\r |
3cfb790c | 5 | All rights reserved. This program and the accompanying materials\r |
6 | are licensed and made available under the terms and conditions of the BSD License\r | |
7 | which accompanies this distribution. The full text of the license may be found at\r | |
8 | http://opensource.org/licenses/bsd-license.php\r | |
9 | \r | |
10 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r | |
11 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
8cd4d17c | 12 | \r |
fb0b259e | 13 | **/\r |
8cd4d17c | 14 | \r |
15 | #include "PcRtc.h"\r | |
16 | \r | |
8d85dc31 | 17 | /**\r |
18 | Compare the Hour, Minute and Second of the From time and the To time.\r | |
19 | \r | |
20 | Only compare H/M/S in EFI_TIME and ignore other fields here.\r | |
21 | \r | |
22 | @param From the first time\r | |
23 | @param To the second time\r | |
24 | \r | |
25 | @return >0 The H/M/S of the From time is later than those of To time\r | |
26 | @return ==0 The H/M/S of the From time is same as those of To time\r | |
27 | @return <0 The H/M/S of the From time is earlier than those of To time\r | |
28 | **/\r | |
8cd4d17c | 29 | INTN\r |
30 | CompareHMS (\r | |
31 | IN EFI_TIME *From,\r | |
32 | IN EFI_TIME *To\r | |
33 | );\r | |
34 | \r | |
8d85dc31 | 35 | /**\r |
36 | To check if second date is later than first date within 24 hours.\r | |
37 | \r | |
38 | @param From the first date\r | |
39 | @param To the second date\r | |
40 | \r | |
41 | @retval TRUE From is previous to To within 24 hours.\r | |
42 | @retval FALSE From is later, or it is previous to To more than 24 hours.\r | |
43 | **/\r | |
8cd4d17c | 44 | BOOLEAN\r |
45 | IsWithinOneDay (\r | |
46 | IN EFI_TIME *From,\r | |
47 | IN EFI_TIME *To\r | |
48 | );\r | |
49 | \r | |
8d85dc31 | 50 | /**\r |
51 | Read RTC content through its registers.\r | |
52 | \r | |
53 | @param Address Address offset of RTC. It is recommended to use macros such as\r | |
54 | RTC_ADDRESS_SECONDS.\r | |
55 | \r | |
56 | @return The data of UINT8 type read from RTC.\r | |
57 | **/\r | |
8cd4d17c | 58 | UINT8\r |
59 | RtcRead (\r | |
60 | IN UINT8 Address\r | |
61 | )\r | |
8cd4d17c | 62 | {\r |
63 | IoWrite8 (PCAT_RTC_ADDRESS_REGISTER, (UINT8) (Address | (UINT8) (IoRead8 (PCAT_RTC_ADDRESS_REGISTER) & 0x80)));\r | |
64 | return IoRead8 (PCAT_RTC_DATA_REGISTER);\r | |
65 | }\r | |
66 | \r | |
8d85dc31 | 67 | /**\r |
68 | Write RTC through its registers.\r | |
69 | \r | |
70 | @param Address Address offset of RTC. It is recommended to use macros such as\r | |
71 | RTC_ADDRESS_SECONDS.\r | |
72 | @param Data The content you want to write into RTC.\r | |
73 | \r | |
74 | **/\r | |
8cd4d17c | 75 | VOID\r |
76 | RtcWrite (\r | |
77 | IN UINT8 Address,\r | |
78 | IN UINT8 Data\r | |
79 | )\r | |
8cd4d17c | 80 | {\r |
81 | IoWrite8 (PCAT_RTC_ADDRESS_REGISTER, (UINT8) (Address | (UINT8) (IoRead8 (PCAT_RTC_ADDRESS_REGISTER) & 0x80)));\r | |
82 | IoWrite8 (PCAT_RTC_DATA_REGISTER, Data);\r | |
83 | }\r | |
84 | \r | |
8d85dc31 | 85 | /**\r |
86 | Initialize RTC.\r | |
87 | \r | |
88 | @param Global For global use inside this module.\r | |
89 | \r | |
90 | @retval EFI_DEVICE_ERROR Initialization failed due to device error.\r | |
91 | @retval EFI_SUCCESS Initialization successful.\r | |
92 | \r | |
93 | **/\r | |
8cd4d17c | 94 | EFI_STATUS\r |
95 | PcRtcInit (\r | |
96 | IN PC_RTC_MODULE_GLOBALS *Global\r | |
97 | )\r | |
8cd4d17c | 98 | {\r |
99 | EFI_STATUS Status;\r | |
100 | RTC_REGISTER_A RegisterA;\r | |
101 | RTC_REGISTER_B RegisterB;\r | |
102 | RTC_REGISTER_D RegisterD;\r | |
103 | UINT8 Century;\r | |
104 | EFI_TIME Time;\r | |
ec35e997 LG |
105 | UINTN DataSize;\r |
106 | UINT32 TimerVar;\r | |
8cd4d17c | 107 | \r |
108 | //\r | |
109 | // Acquire RTC Lock to make access to RTC atomic\r | |
110 | //\r | |
8cd4d17c | 111 | if (!EfiAtRuntime ()) {\r |
8d85dc31 | 112 | EfiAcquireLock (&Global->RtcLock);\r |
8cd4d17c | 113 | }\r |
114 | //\r | |
115 | // Initialize RTC Register\r | |
116 | //\r | |
117 | // Make sure Division Chain is properly configured,\r | |
118 | // or RTC clock won't "tick" -- time won't increment\r | |
119 | //\r | |
120 | RegisterA.Data = RTC_INIT_REGISTER_A;\r | |
121 | RtcWrite (RTC_ADDRESS_REGISTER_A, RegisterA.Data);\r | |
122 | \r | |
123 | //\r | |
124 | // Read Register B\r | |
125 | //\r | |
126 | RegisterB.Data = RtcRead (RTC_ADDRESS_REGISTER_B);\r | |
127 | \r | |
128 | //\r | |
129 | // Clear RTC flag register\r | |
130 | //\r | |
131 | RtcRead (RTC_ADDRESS_REGISTER_C);\r | |
132 | \r | |
133 | //\r | |
134 | // Clear RTC register D\r | |
135 | //\r | |
136 | RegisterD.Data = RTC_INIT_REGISTER_D;\r | |
137 | RtcWrite (RTC_ADDRESS_REGISTER_D, RegisterD.Data);\r | |
138 | \r | |
139 | //\r | |
140 | // Wait for up to 0.1 seconds for the RTC to be updated\r | |
141 | //\r | |
f8ea3026 | 142 | Status = RtcWaitToUpdate (PcdGet32 (PcdRealTimeClockUpdateTimeout));\r |
8cd4d17c | 143 | if (EFI_ERROR (Status)) {\r |
8cd4d17c | 144 | if (!EfiAtRuntime ()) {\r |
8d85dc31 | 145 | EfiReleaseLock (&Global->RtcLock);\r |
8cd4d17c | 146 | }\r |
147 | return EFI_DEVICE_ERROR;\r | |
148 | }\r | |
149 | //\r | |
150 | // Get the Time/Date/Daylight Savings values.\r | |
151 | //\r | |
152 | Time.Second = RtcRead (RTC_ADDRESS_SECONDS);\r | |
153 | Time.Minute = RtcRead (RTC_ADDRESS_MINUTES);\r | |
154 | Time.Hour = RtcRead (RTC_ADDRESS_HOURS);\r | |
155 | Time.Day = RtcRead (RTC_ADDRESS_DAY_OF_THE_MONTH);\r | |
156 | Time.Month = RtcRead (RTC_ADDRESS_MONTH);\r | |
157 | Time.Year = RtcRead (RTC_ADDRESS_YEAR);\r | |
158 | \r | |
9a1eee23 | 159 | Century = RtcRead (RTC_ADDRESS_CENTURY);\r |
9a1eee23 | 160 | \r |
8cd4d17c | 161 | //\r |
162 | // Set RTC configuration after get original time\r | |
ec35e997 | 163 | // The value of bit AIE should be reserved.\r |
8cd4d17c | 164 | //\r |
f7033880 | 165 | RtcWrite (RTC_ADDRESS_REGISTER_B, (UINT8)(RTC_INIT_REGISTER_B | (RegisterB.Data & BIT5)));\r |
8cd4d17c | 166 | \r |
167 | //\r | |
168 | // Release RTC Lock.\r | |
169 | //\r | |
8cd4d17c | 170 | if (!EfiAtRuntime ()) {\r |
8d85dc31 | 171 | EfiReleaseLock (&Global->RtcLock);\r |
8cd4d17c | 172 | }\r |
254ba247 | 173 | \r |
6bfa178c | 174 | //\r |
175 | // Get the data of Daylight saving and time zone, if they have been\r | |
176 | // stored in NV variable during previous boot.\r | |
177 | //\r | |
178 | DataSize = sizeof (UINT32);\r | |
179 | Status = EfiGetVariable (\r | |
180 | L"RTC",\r | |
181 | &gEfiCallerIdGuid,\r | |
182 | NULL,\r | |
183 | &DataSize,\r | |
184 | (VOID *) &TimerVar\r | |
185 | );\r | |
186 | if (!EFI_ERROR (Status)) {\r | |
187 | Time.TimeZone = (INT16) TimerVar;\r | |
188 | Time.Daylight = (UINT8) (TimerVar >> 16);\r | |
189 | } else {\r | |
190 | Time.TimeZone = EFI_UNSPECIFIED_TIMEZONE;\r | |
191 | Time.Daylight = 0; \r | |
192 | }\r | |
193 | \r | |
8cd4d17c | 194 | //\r |
195 | // Validate time fields\r | |
196 | //\r | |
254ba247 | 197 | Status = ConvertRtcTimeToEfiTime (&Time, Century, RegisterB);\r |
198 | if (!EFI_ERROR (Status)) {\r | |
199 | Status = RtcTimeFieldsValid (&Time);\r | |
200 | }\r | |
8cd4d17c | 201 | if (EFI_ERROR (Status)) {\r |
202 | Time.Second = RTC_INIT_SECOND;\r | |
203 | Time.Minute = RTC_INIT_MINUTE;\r | |
204 | Time.Hour = RTC_INIT_HOUR;\r | |
205 | Time.Day = RTC_INIT_DAY;\r | |
206 | Time.Month = RTC_INIT_MONTH;\r | |
207 | Time.Year = RTC_INIT_YEAR;\r | |
2ba53a4f | 208 | Time.Nanosecond = 0;\r |
8cd4d17c | 209 | }\r |
ec35e997 | 210 | \r |
ec35e997 | 211 | //\r |
8cd4d17c | 212 | // Reset time value according to new RTC configuration\r |
213 | //\r | |
2ba53a4f | 214 | Status = PcRtcSetTime (&Time, Global);\r |
215 | if(!EFI_ERROR (Status)) {\r | |
216 | return EFI_SUCCESS;\r | |
217 | } else {\r | |
218 | return EFI_DEVICE_ERROR;\r | |
219 | }\r | |
8cd4d17c | 220 | }\r |
221 | \r | |
8d85dc31 | 222 | /**\r |
223 | Returns the current time and date information, and the time-keeping capabilities\r | |
224 | of the hardware platform.\r | |
8cd4d17c | 225 | \r |
8d85dc31 | 226 | @param Time A pointer to storage to receive a snapshot of the current time.\r |
227 | @param Capabilities An optional pointer to a buffer to receive the real time clock\r | |
228 | device's capabilities.\r | |
229 | @param Global For global use inside this module.\r | |
8cd4d17c | 230 | \r |
8d85dc31 | 231 | @retval EFI_SUCCESS The operation completed successfully.\r |
232 | @retval EFI_INVALID_PARAMETER Time is NULL.\r | |
233 | @retval EFI_DEVICE_ERROR The time could not be retrieved due to hardware error.\r | |
8cd4d17c | 234 | \r |
8d85dc31 | 235 | **/\r |
236 | EFI_STATUS\r | |
237 | PcRtcGetTime (\r | |
238 | OUT EFI_TIME *Time,\r | |
239 | OUT EFI_TIME_CAPABILITIES *Capabilities, OPTIONAL\r | |
240 | IN PC_RTC_MODULE_GLOBALS *Global\r | |
241 | )\r | |
8cd4d17c | 242 | {\r |
243 | EFI_STATUS Status;\r | |
244 | RTC_REGISTER_B RegisterB;\r | |
245 | UINT8 Century;\r | |
246 | \r | |
247 | //\r | |
248 | // Check parameters for null pointer\r | |
249 | //\r | |
250 | if (Time == NULL) {\r | |
251 | return EFI_INVALID_PARAMETER;\r | |
252 | \r | |
253 | }\r | |
254 | //\r | |
255 | // Acquire RTC Lock to make access to RTC atomic\r | |
256 | //\r | |
8cd4d17c | 257 | if (!EfiAtRuntime ()) {\r |
8d85dc31 | 258 | EfiAcquireLock (&Global->RtcLock);\r |
8cd4d17c | 259 | }\r |
260 | //\r | |
261 | // Wait for up to 0.1 seconds for the RTC to be updated\r | |
262 | //\r | |
f8ea3026 | 263 | Status = RtcWaitToUpdate (PcdGet32 (PcdRealTimeClockUpdateTimeout));\r |
8cd4d17c | 264 | if (EFI_ERROR (Status)) {\r |
8cd4d17c | 265 | if (!EfiAtRuntime ()) {\r |
8d85dc31 | 266 | EfiReleaseLock (&Global->RtcLock);\r |
8cd4d17c | 267 | }\r |
268 | return Status;\r | |
269 | }\r | |
270 | //\r | |
271 | // Read Register B\r | |
272 | //\r | |
273 | RegisterB.Data = RtcRead (RTC_ADDRESS_REGISTER_B);\r | |
274 | \r | |
275 | //\r | |
276 | // Get the Time/Date/Daylight Savings values.\r | |
277 | //\r | |
278 | Time->Second = RtcRead (RTC_ADDRESS_SECONDS);\r | |
279 | Time->Minute = RtcRead (RTC_ADDRESS_MINUTES);\r | |
280 | Time->Hour = RtcRead (RTC_ADDRESS_HOURS);\r | |
281 | Time->Day = RtcRead (RTC_ADDRESS_DAY_OF_THE_MONTH);\r | |
282 | Time->Month = RtcRead (RTC_ADDRESS_MONTH);\r | |
283 | Time->Year = RtcRead (RTC_ADDRESS_YEAR);\r | |
284 | \r | |
9a1eee23 | 285 | Century = RtcRead (RTC_ADDRESS_CENTURY);\r |
9a1eee23 | 286 | \r |
8cd4d17c | 287 | //\r |
288 | // Release RTC Lock.\r | |
289 | //\r | |
8cd4d17c | 290 | if (!EfiAtRuntime ()) {\r |
8d85dc31 | 291 | EfiReleaseLock (&Global->RtcLock);\r |
8cd4d17c | 292 | }\r |
6bfa178c | 293 | \r |
8cd4d17c | 294 | //\r |
2d4117c0 | 295 | // Get the variable that contains the TimeZone and Daylight fields\r |
8cd4d17c | 296 | //\r |
297 | Time->TimeZone = Global->SavedTimeZone;\r | |
298 | Time->Daylight = Global->Daylight;\r | |
299 | \r | |
300 | //\r | |
301 | // Make sure all field values are in correct range\r | |
302 | //\r | |
254ba247 | 303 | Status = ConvertRtcTimeToEfiTime (Time, Century, RegisterB);\r |
304 | if (!EFI_ERROR (Status)) {\r | |
305 | Status = RtcTimeFieldsValid (Time);\r | |
306 | }\r | |
8cd4d17c | 307 | if (EFI_ERROR (Status)) {\r |
308 | return EFI_DEVICE_ERROR;\r | |
309 | }\r | |
6bfa178c | 310 | \r |
8cd4d17c | 311 | //\r |
312 | // Fill in Capabilities if it was passed in\r | |
313 | //\r | |
8d85dc31 | 314 | if (Capabilities != NULL) {\r |
8cd4d17c | 315 | Capabilities->Resolution = 1;\r |
316 | //\r | |
317 | // 1 hertz\r | |
318 | //\r | |
319 | Capabilities->Accuracy = 50000000;\r | |
320 | //\r | |
321 | // 50 ppm\r | |
322 | //\r | |
323 | Capabilities->SetsToZero = FALSE;\r | |
324 | }\r | |
325 | \r | |
326 | return EFI_SUCCESS;\r | |
327 | }\r | |
328 | \r | |
8d85dc31 | 329 | /**\r |
330 | Sets the current local time and date information.\r | |
331 | \r | |
332 | @param Time A pointer to the current time.\r | |
333 | @param Global For global use inside this module.\r | |
334 | \r | |
335 | @retval EFI_SUCCESS The operation completed successfully.\r | |
336 | @retval EFI_INVALID_PARAMETER A time field is out of range.\r | |
337 | @retval EFI_DEVICE_ERROR The time could not be set due due to hardware error.\r | |
338 | \r | |
339 | **/\r | |
8cd4d17c | 340 | EFI_STATUS\r |
341 | PcRtcSetTime (\r | |
342 | IN EFI_TIME *Time,\r | |
343 | IN PC_RTC_MODULE_GLOBALS *Global\r | |
344 | )\r | |
8cd4d17c | 345 | {\r |
346 | EFI_STATUS Status;\r | |
347 | EFI_TIME RtcTime;\r | |
348 | RTC_REGISTER_B RegisterB;\r | |
349 | UINT8 Century;\r | |
ec35e997 | 350 | UINT32 TimerVar;\r |
8cd4d17c | 351 | \r |
352 | if (Time == NULL) {\r | |
353 | return EFI_INVALID_PARAMETER;\r | |
354 | }\r | |
355 | //\r | |
356 | // Make sure that the time fields are valid\r | |
357 | //\r | |
358 | Status = RtcTimeFieldsValid (Time);\r | |
359 | if (EFI_ERROR (Status)) {\r | |
360 | return Status;\r | |
361 | }\r | |
362 | \r | |
363 | CopyMem (&RtcTime, Time, sizeof (EFI_TIME));\r | |
364 | \r | |
365 | //\r | |
366 | // Acquire RTC Lock to make access to RTC atomic\r | |
367 | //\r | |
8cd4d17c | 368 | if (!EfiAtRuntime ()) {\r |
8d85dc31 | 369 | EfiAcquireLock (&Global->RtcLock);\r |
8cd4d17c | 370 | }\r |
371 | //\r | |
372 | // Wait for up to 0.1 seconds for the RTC to be updated\r | |
373 | //\r | |
f8ea3026 | 374 | Status = RtcWaitToUpdate (PcdGet32 (PcdRealTimeClockUpdateTimeout));\r |
8cd4d17c | 375 | if (EFI_ERROR (Status)) {\r |
8cd4d17c | 376 | if (!EfiAtRuntime ()) {\r |
ca08e40b | 377 | EfiReleaseLock (&Global->RtcLock);\r |
8cd4d17c | 378 | }\r |
379 | return Status;\r | |
380 | }\r | |
381 | //\r | |
382 | // Read Register B, and inhibit updates of the RTC\r | |
383 | //\r | |
384 | RegisterB.Data = RtcRead (RTC_ADDRESS_REGISTER_B);\r | |
385 | RegisterB.Bits.SET = 1;\r | |
386 | RtcWrite (RTC_ADDRESS_REGISTER_B, RegisterB.Data);\r | |
387 | \r | |
388 | ConvertEfiTimeToRtcTime (&RtcTime, RegisterB, &Century);\r | |
389 | \r | |
390 | RtcWrite (RTC_ADDRESS_SECONDS, RtcTime.Second);\r | |
391 | RtcWrite (RTC_ADDRESS_MINUTES, RtcTime.Minute);\r | |
392 | RtcWrite (RTC_ADDRESS_HOURS, RtcTime.Hour);\r | |
393 | RtcWrite (RTC_ADDRESS_DAY_OF_THE_MONTH, RtcTime.Day);\r | |
394 | RtcWrite (RTC_ADDRESS_MONTH, RtcTime.Month);\r | |
395 | RtcWrite (RTC_ADDRESS_YEAR, (UINT8) RtcTime.Year);\r | |
8cd4d17c | 396 | RtcWrite (RTC_ADDRESS_CENTURY, Century);\r |
397 | \r | |
398 | //\r | |
399 | // Allow updates of the RTC registers\r | |
400 | //\r | |
401 | RegisterB.Bits.SET = 0;\r | |
402 | RtcWrite (RTC_ADDRESS_REGISTER_B, RegisterB.Data);\r | |
403 | \r | |
404 | //\r | |
405 | // Release RTC Lock.\r | |
406 | //\r | |
8cd4d17c | 407 | if (!EfiAtRuntime ()) {\r |
8d85dc31 | 408 | EfiReleaseLock (&Global->RtcLock);\r |
8cd4d17c | 409 | }\r |
410 | //\r | |
2d4117c0 | 411 | // Set the variable that contains the TimeZone and Daylight fields\r |
8cd4d17c | 412 | //\r |
413 | Global->SavedTimeZone = Time->TimeZone;\r | |
414 | Global->Daylight = Time->Daylight;\r | |
ec35e997 LG |
415 | \r |
416 | TimerVar = Time->Daylight;\r | |
417 | TimerVar = (UINT32) ((TimerVar << 16) | Time->TimeZone);\r | |
418 | Status = EfiSetVariable (\r | |
e0312446 | 419 | L"RTC",\r |
420 | &gEfiCallerIdGuid,\r | |
ec35e997 LG |
421 | EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS | EFI_VARIABLE_NON_VOLATILE,\r |
422 | sizeof (TimerVar),\r | |
423 | &TimerVar\r | |
424 | );\r | |
425 | ASSERT_EFI_ERROR (Status);\r | |
426 | \r | |
427 | return EFI_SUCCESS;\r | |
8cd4d17c | 428 | }\r |
429 | \r | |
8d85dc31 | 430 | /**\r |
431 | Returns the current wakeup alarm clock setting.\r | |
432 | \r | |
433 | @param Enabled Indicates if the alarm is currently enabled or disabled.\r | |
2d4117c0 | 434 | @param Pending Indicates if the alarm signal is pending and requires acknowledgment.\r |
8d85dc31 | 435 | @param Time The current alarm setting.\r |
436 | @param Global For global use inside this module.\r | |
437 | \r | |
438 | @retval EFI_SUCCESS The alarm settings were returned.\r | |
439 | @retval EFI_INVALID_PARAMETER Enabled is NULL.\r | |
440 | @retval EFI_INVALID_PARAMETER Pending is NULL.\r | |
441 | @retval EFI_INVALID_PARAMETER Time is NULL.\r | |
442 | @retval EFI_DEVICE_ERROR The wakeup time could not be retrieved due to a hardware error.\r | |
443 | @retval EFI_UNSUPPORTED A wakeup timer is not supported on this platform.\r | |
444 | \r | |
445 | **/\r | |
8cd4d17c | 446 | EFI_STATUS\r |
447 | PcRtcGetWakeupTime (\r | |
448 | OUT BOOLEAN *Enabled,\r | |
449 | OUT BOOLEAN *Pending,\r | |
450 | OUT EFI_TIME *Time,\r | |
8d85dc31 | 451 | IN PC_RTC_MODULE_GLOBALS *Global\r |
8cd4d17c | 452 | )\r |
8cd4d17c | 453 | {\r |
454 | EFI_STATUS Status;\r | |
455 | RTC_REGISTER_B RegisterB;\r | |
456 | RTC_REGISTER_C RegisterC;\r | |
457 | UINT8 Century;\r | |
458 | \r | |
459 | //\r | |
2d4117c0 | 460 | // Check parameters for null pointers\r |
8cd4d17c | 461 | //\r |
462 | if ((Enabled == NULL) || (Pending == NULL) || (Time == NULL)) {\r | |
463 | return EFI_INVALID_PARAMETER;\r | |
464 | \r | |
465 | }\r | |
466 | //\r | |
467 | // Acquire RTC Lock to make access to RTC atomic\r | |
468 | //\r | |
8cd4d17c | 469 | if (!EfiAtRuntime ()) {\r |
8d85dc31 | 470 | EfiAcquireLock (&Global->RtcLock);\r |
8cd4d17c | 471 | }\r |
472 | //\r | |
473 | // Wait for up to 0.1 seconds for the RTC to be updated\r | |
474 | //\r | |
f8ea3026 | 475 | Status = RtcWaitToUpdate (PcdGet32 (PcdRealTimeClockUpdateTimeout));\r |
8cd4d17c | 476 | if (EFI_ERROR (Status)) {\r |
8cd4d17c | 477 | if (!EfiAtRuntime ()) {\r |
478 | EfiReleaseLock (&Global->RtcLock);\r | |
479 | }\r | |
480 | return EFI_DEVICE_ERROR;\r | |
481 | }\r | |
482 | //\r | |
483 | // Read Register B and Register C\r | |
484 | //\r | |
485 | RegisterB.Data = RtcRead (RTC_ADDRESS_REGISTER_B);\r | |
486 | RegisterC.Data = RtcRead (RTC_ADDRESS_REGISTER_C);\r | |
487 | \r | |
488 | //\r | |
489 | // Get the Time/Date/Daylight Savings values.\r | |
490 | //\r | |
491 | *Enabled = RegisterB.Bits.AIE;\r | |
492 | if (*Enabled) {\r | |
493 | Time->Second = RtcRead (RTC_ADDRESS_SECONDS_ALARM);\r | |
494 | Time->Minute = RtcRead (RTC_ADDRESS_MINUTES_ALARM);\r | |
495 | Time->Hour = RtcRead (RTC_ADDRESS_HOURS_ALARM);\r | |
496 | Time->Day = RtcRead (RTC_ADDRESS_DAY_OF_THE_MONTH);\r | |
497 | Time->Month = RtcRead (RTC_ADDRESS_MONTH);\r | |
498 | Time->Year = RtcRead (RTC_ADDRESS_YEAR);\r | |
499 | } else {\r | |
500 | Time->Second = 0;\r | |
501 | Time->Minute = 0;\r | |
502 | Time->Hour = 0;\r | |
503 | Time->Day = RtcRead (RTC_ADDRESS_DAY_OF_THE_MONTH);\r | |
504 | Time->Month = RtcRead (RTC_ADDRESS_MONTH);\r | |
505 | Time->Year = RtcRead (RTC_ADDRESS_YEAR);\r | |
506 | }\r | |
507 | \r | |
9a1eee23 | 508 | Century = RtcRead (RTC_ADDRESS_CENTURY);\r |
9a1eee23 | 509 | \r |
8cd4d17c | 510 | //\r |
511 | // Release RTC Lock.\r | |
512 | //\r | |
8cd4d17c | 513 | if (!EfiAtRuntime ()) {\r |
8d85dc31 | 514 | EfiReleaseLock (&Global->RtcLock);\r |
8cd4d17c | 515 | }\r |
6bfa178c | 516 | \r |
517 | //\r | |
518 | // Get the variable that contains the TimeZone and Daylight fields\r | |
519 | //\r | |
520 | Time->TimeZone = Global->SavedTimeZone;\r | |
521 | Time->Daylight = Global->Daylight;\r | |
522 | \r | |
8cd4d17c | 523 | //\r |
524 | // Make sure all field values are in correct range\r | |
525 | //\r | |
254ba247 | 526 | Status = ConvertRtcTimeToEfiTime (Time, Century, RegisterB);\r |
527 | if (!EFI_ERROR (Status)) {\r | |
528 | Status = RtcTimeFieldsValid (Time);\r | |
529 | }\r | |
8cd4d17c | 530 | if (EFI_ERROR (Status)) {\r |
531 | return EFI_DEVICE_ERROR;\r | |
532 | }\r | |
533 | \r | |
534 | *Pending = RegisterC.Bits.AF;\r | |
535 | \r | |
536 | return EFI_SUCCESS;\r | |
537 | }\r | |
538 | \r | |
8d85dc31 | 539 | /**\r |
540 | Sets the system wakeup alarm clock time.\r | |
541 | \r | |
542 | @param Enabled Enable or disable the wakeup alarm.\r | |
543 | @param Time If Enable is TRUE, the time to set the wakeup alarm for.\r | |
544 | If Enable is FALSE, then this parameter is optional, and may be NULL.\r | |
545 | @param Global For global use inside this module.\r | |
546 | \r | |
547 | @retval EFI_SUCCESS If Enable is TRUE, then the wakeup alarm was enabled.\r | |
548 | If Enable is FALSE, then the wakeup alarm was disabled.\r | |
549 | @retval EFI_INVALID_PARAMETER A time field is out of range.\r | |
550 | @retval EFI_DEVICE_ERROR The wakeup time could not be set due to a hardware error.\r | |
551 | @retval EFI_UNSUPPORTED A wakeup timer is not supported on this platform.\r | |
552 | \r | |
553 | **/\r | |
8cd4d17c | 554 | EFI_STATUS\r |
555 | PcRtcSetWakeupTime (\r | |
556 | IN BOOLEAN Enable,\r | |
8d85dc31 | 557 | IN EFI_TIME *Time, OPTIONAL\r |
8cd4d17c | 558 | IN PC_RTC_MODULE_GLOBALS *Global\r |
559 | )\r | |
8cd4d17c | 560 | {\r |
561 | EFI_STATUS Status;\r | |
562 | EFI_TIME RtcTime;\r | |
563 | RTC_REGISTER_B RegisterB;\r | |
564 | UINT8 Century;\r | |
565 | EFI_TIME_CAPABILITIES Capabilities;\r | |
566 | \r | |
567 | if (Enable) {\r | |
568 | \r | |
569 | if (Time == NULL) {\r | |
570 | return EFI_INVALID_PARAMETER;\r | |
571 | }\r | |
572 | //\r | |
573 | // Make sure that the time fields are valid\r | |
574 | //\r | |
575 | Status = RtcTimeFieldsValid (Time);\r | |
576 | if (EFI_ERROR (Status)) {\r | |
577 | return EFI_INVALID_PARAMETER;\r | |
578 | }\r | |
579 | //\r | |
580 | // Just support set alarm time within 24 hours\r | |
581 | //\r | |
582 | PcRtcGetTime (&RtcTime, &Capabilities, Global);\r | |
79864f54 | 583 | Status = RtcTimeFieldsValid (&RtcTime);\r |
584 | if (EFI_ERROR (Status)) {\r | |
585 | return EFI_DEVICE_ERROR;\r | |
586 | }\r | |
8cd4d17c | 587 | if (!IsWithinOneDay (&RtcTime, Time)) {\r |
588 | return EFI_UNSUPPORTED;\r | |
589 | }\r | |
590 | //\r | |
591 | // Make a local copy of the time and date\r | |
592 | //\r | |
593 | CopyMem (&RtcTime, Time, sizeof (EFI_TIME));\r | |
594 | \r | |
595 | }\r | |
596 | //\r | |
597 | // Acquire RTC Lock to make access to RTC atomic\r | |
598 | //\r | |
8cd4d17c | 599 | if (!EfiAtRuntime ()) {\r |
8d85dc31 | 600 | EfiAcquireLock (&Global->RtcLock);\r |
8cd4d17c | 601 | }\r |
602 | //\r | |
603 | // Wait for up to 0.1 seconds for the RTC to be updated\r | |
604 | //\r | |
f8ea3026 | 605 | Status = RtcWaitToUpdate (PcdGet32 (PcdRealTimeClockUpdateTimeout));\r |
8cd4d17c | 606 | if (EFI_ERROR (Status)) {\r |
8cd4d17c | 607 | if (!EfiAtRuntime ()) {\r |
608 | EfiReleaseLock (&Global->RtcLock);\r | |
609 | }\r | |
610 | return EFI_DEVICE_ERROR;\r | |
611 | }\r | |
612 | //\r | |
613 | // Read Register B, and inhibit updates of the RTC\r | |
614 | //\r | |
615 | RegisterB.Data = RtcRead (RTC_ADDRESS_REGISTER_B);\r | |
616 | \r | |
617 | RegisterB.Bits.SET = 1;\r | |
618 | RtcWrite (RTC_ADDRESS_REGISTER_B, RegisterB.Data);\r | |
619 | \r | |
620 | if (Enable) {\r | |
621 | ConvertEfiTimeToRtcTime (&RtcTime, RegisterB, &Century);\r | |
622 | \r | |
623 | //\r | |
624 | // Set RTC alarm time\r | |
625 | //\r | |
626 | RtcWrite (RTC_ADDRESS_SECONDS_ALARM, RtcTime.Second);\r | |
627 | RtcWrite (RTC_ADDRESS_MINUTES_ALARM, RtcTime.Minute);\r | |
628 | RtcWrite (RTC_ADDRESS_HOURS_ALARM, RtcTime.Hour);\r | |
629 | \r | |
630 | RegisterB.Bits.AIE = 1;\r | |
631 | \r | |
632 | } else {\r | |
633 | RegisterB.Bits.AIE = 0;\r | |
634 | }\r | |
635 | //\r | |
636 | // Allow updates of the RTC registers\r | |
637 | //\r | |
638 | RegisterB.Bits.SET = 0;\r | |
639 | RtcWrite (RTC_ADDRESS_REGISTER_B, RegisterB.Data);\r | |
640 | \r | |
641 | //\r | |
642 | // Release RTC Lock.\r | |
643 | //\r | |
8cd4d17c | 644 | if (!EfiAtRuntime ()) {\r |
8d85dc31 | 645 | EfiReleaseLock (&Global->RtcLock);\r |
8cd4d17c | 646 | }\r |
647 | return EFI_SUCCESS;\r | |
648 | }\r | |
649 | \r | |
8cd4d17c | 650 | \r |
254ba247 | 651 | /**\r |
652 | Checks an 8-bit BCD value, and converts to an 8-bit value if valid.\r | |
653 | \r | |
654 | This function checks the 8-bit BCD value specified by Value.\r | |
655 | If valid, the function converts it to an 8-bit value and returns it.\r | |
656 | Otherwise, return 0xff.\r | |
657 | \r | |
8d85dc31 | 658 | @param Value The 8-bit BCD value to check and convert\r |
254ba247 | 659 | \r |
8d85dc31 | 660 | @return The 8-bit value converted. Or 0xff if Value is invalid.\r |
254ba247 | 661 | \r |
662 | **/\r | |
663 | UINT8\r | |
664 | CheckAndConvertBcd8ToDecimal8 (\r | |
665 | IN UINT8 Value\r | |
8cd4d17c | 666 | )\r |
254ba247 | 667 | {\r |
668 | if ((Value < 0xa0) && ((Value & 0xf) < 0xa)) {\r | |
669 | return BcdToDecimal8 (Value);\r | |
670 | }\r | |
8cd4d17c | 671 | \r |
254ba247 | 672 | return 0xff;\r |
673 | }\r | |
8cd4d17c | 674 | \r |
254ba247 | 675 | /**\r |
676 | Converts time read from RTC to EFI_TIME format defined by UEFI spec.\r | |
8cd4d17c | 677 | \r |
254ba247 | 678 | This function converts raw time data read from RTC to the EFI_TIME format\r |
679 | defined by UEFI spec.\r | |
680 | If data mode of RTC is BCD, then converts it to decimal,\r | |
681 | If RTC is in 12-hour format, then converts it to 24-hour format.\r | |
8cd4d17c | 682 | \r |
254ba247 | 683 | @param Time On input, the time data read from RTC to convert\r |
684 | On output, the time converted to UEFI format\r | |
685 | @param Century Value of century read from RTC.\r | |
686 | @param RegisterB Value of Register B of RTC, indicating data mode\r | |
687 | and hour format.\r | |
8cd4d17c | 688 | \r |
8d85dc31 | 689 | @retval EFI_INVALID_PARAMETER Parameters passed in are invalid.\r |
690 | @retval EFI_SUCCESS Convert RTC time to EFI time successfully.\r | |
691 | \r | |
254ba247 | 692 | **/\r |
693 | EFI_STATUS\r | |
694 | ConvertRtcTimeToEfiTime (\r | |
695 | IN OUT EFI_TIME *Time,\r | |
696 | IN UINT8 Century,\r | |
697 | IN RTC_REGISTER_B RegisterB\r | |
698 | )\r | |
8cd4d17c | 699 | {\r |
8d85dc31 | 700 | BOOLEAN IsPM;\r |
8cd4d17c | 701 | \r |
21176834 | 702 | if ((Time->Hour & 0x80) != 0) {\r |
8d85dc31 | 703 | IsPM = TRUE;\r |
8cd4d17c | 704 | } else {\r |
8d85dc31 | 705 | IsPM = FALSE;\r |
8cd4d17c | 706 | }\r |
707 | \r | |
708 | Time->Hour = (UINT8) (Time->Hour & 0x7f);\r | |
709 | \r | |
710 | if (RegisterB.Bits.DM == 0) {\r | |
254ba247 | 711 | Time->Year = CheckAndConvertBcd8ToDecimal8 ((UINT8) Time->Year);\r |
712 | Time->Month = CheckAndConvertBcd8ToDecimal8 (Time->Month);\r | |
713 | Time->Day = CheckAndConvertBcd8ToDecimal8 (Time->Day);\r | |
714 | Time->Hour = CheckAndConvertBcd8ToDecimal8 (Time->Hour);\r | |
715 | Time->Minute = CheckAndConvertBcd8ToDecimal8 (Time->Minute);\r | |
716 | Time->Second = CheckAndConvertBcd8ToDecimal8 (Time->Second);\r | |
254ba247 | 717 | }\r |
42c65073 | 718 | Century = CheckAndConvertBcd8ToDecimal8 (Century);\r |
254ba247 | 719 | \r |
720 | if (Time->Year == 0xff || Time->Month == 0xff || Time->Day == 0xff ||\r | |
721 | Time->Hour == 0xff || Time->Minute == 0xff || Time->Second == 0xff ||\r | |
722 | Century == 0xff) {\r | |
723 | return EFI_INVALID_PARAMETER;\r | |
8cd4d17c | 724 | }\r |
254ba247 | 725 | \r |
726 | Time->Year = (UINT16) (Century * 100 + Time->Year);\r | |
727 | \r | |
8cd4d17c | 728 | //\r |
729 | // If time is in 12 hour format, convert it to 24 hour format\r | |
730 | //\r | |
731 | if (RegisterB.Bits.MIL == 0) {\r | |
8d85dc31 | 732 | if (IsPM && Time->Hour < 12) {\r |
8cd4d17c | 733 | Time->Hour = (UINT8) (Time->Hour + 12);\r |
734 | }\r | |
735 | \r | |
8d85dc31 | 736 | if (!IsPM && Time->Hour == 12) {\r |
8cd4d17c | 737 | Time->Hour = 0;\r |
738 | }\r | |
739 | }\r | |
740 | \r | |
741 | Time->Nanosecond = 0;\r | |
254ba247 | 742 | \r |
743 | return EFI_SUCCESS;\r | |
8cd4d17c | 744 | }\r |
745 | \r | |
8d85dc31 | 746 | /**\r |
747 | Wait for a period for the RTC to be ready.\r | |
748 | \r | |
749 | @param Timeout Tell how long it should take to wait.\r | |
750 | \r | |
751 | @retval EFI_DEVICE_ERROR RTC device error.\r | |
752 | @retval EFI_SUCCESS RTC is updated and ready. \r | |
753 | **/\r | |
8cd4d17c | 754 | EFI_STATUS\r |
755 | RtcWaitToUpdate (\r | |
756 | UINTN Timeout\r | |
757 | )\r | |
8cd4d17c | 758 | {\r |
759 | RTC_REGISTER_A RegisterA;\r | |
760 | RTC_REGISTER_D RegisterD;\r | |
761 | \r | |
762 | //\r | |
763 | // See if the RTC is functioning correctly\r | |
764 | //\r | |
765 | RegisterD.Data = RtcRead (RTC_ADDRESS_REGISTER_D);\r | |
766 | \r | |
767 | if (RegisterD.Bits.VRT == 0) {\r | |
768 | return EFI_DEVICE_ERROR;\r | |
769 | }\r | |
770 | //\r | |
771 | // Wait for up to 0.1 seconds for the RTC to be ready.\r | |
772 | //\r | |
773 | Timeout = (Timeout / 10) + 1;\r | |
774 | RegisterA.Data = RtcRead (RTC_ADDRESS_REGISTER_A);\r | |
775 | while (RegisterA.Bits.UIP == 1 && Timeout > 0) {\r | |
776 | MicroSecondDelay (10);\r | |
777 | RegisterA.Data = RtcRead (RTC_ADDRESS_REGISTER_A);\r | |
778 | Timeout--;\r | |
779 | }\r | |
780 | \r | |
781 | RegisterD.Data = RtcRead (RTC_ADDRESS_REGISTER_D);\r | |
782 | if (Timeout == 0 || RegisterD.Bits.VRT == 0) {\r | |
783 | return EFI_DEVICE_ERROR;\r | |
784 | }\r | |
785 | \r | |
786 | return EFI_SUCCESS;\r | |
787 | }\r | |
788 | \r | |
8d85dc31 | 789 | /**\r |
790 | See if all fields of a variable of EFI_TIME type is correct.\r | |
791 | \r | |
792 | @param Time The time to be checked.\r | |
793 | \r | |
794 | @retval EFI_INVALID_PARAMETER Some fields of Time are not correct.\r | |
795 | @retval EFI_SUCCESS Time is a valid EFI_TIME variable.\r | |
796 | \r | |
797 | **/\r | |
8cd4d17c | 798 | EFI_STATUS\r |
799 | RtcTimeFieldsValid (\r | |
800 | IN EFI_TIME *Time\r | |
801 | )\r | |
8cd4d17c | 802 | {\r |
803 | if (Time->Year < 1998 ||\r | |
804 | Time->Year > 2099 ||\r | |
805 | Time->Month < 1 ||\r | |
806 | Time->Month > 12 ||\r | |
6bfa178c | 807 | (!DayValid (Time)) ||\r |
8cd4d17c | 808 | Time->Hour > 23 ||\r |
809 | Time->Minute > 59 ||\r | |
810 | Time->Second > 59 ||\r | |
811 | Time->Nanosecond > 999999999 ||\r | |
812 | (!(Time->TimeZone == EFI_UNSPECIFIED_TIMEZONE || (Time->TimeZone >= -1440 && Time->TimeZone <= 1440))) ||\r | |
6bfa178c | 813 | ((Time->Daylight & (~(EFI_TIME_ADJUST_DAYLIGHT | EFI_TIME_IN_DAYLIGHT))) != 0)) {\r |
814 | return EFI_INVALID_PARAMETER;\r | |
8cd4d17c | 815 | }\r |
816 | \r | |
817 | return EFI_SUCCESS;\r | |
818 | }\r | |
819 | \r | |
8d85dc31 | 820 | /**\r |
821 | See if field Day of an EFI_TIME is correct.\r | |
822 | \r | |
823 | @param Time Its Day field is to be checked.\r | |
824 | \r | |
825 | @retval TRUE Day field of Time is correct.\r | |
826 | @retval FALSE Day field of Time is NOT correct.\r | |
827 | **/\r | |
8cd4d17c | 828 | BOOLEAN\r |
829 | DayValid (\r | |
830 | IN EFI_TIME *Time\r | |
831 | )\r | |
8cd4d17c | 832 | {\r |
2ba53a4f | 833 | \r |
834 | INTN DayOfMonth[12] = { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };\r | |
8cd4d17c | 835 | \r |
96a5ac5b | 836 | //\r |
837 | // The validity of Time->Month field should be checked before\r | |
838 | //\r | |
839 | ASSERT (Time->Month >=1);\r | |
840 | ASSERT (Time->Month <=12);\r | |
8cd4d17c | 841 | if (Time->Day < 1 ||\r |
842 | Time->Day > DayOfMonth[Time->Month - 1] ||\r | |
843 | (Time->Month == 2 && (!IsLeapYear (Time) && Time->Day > 28))\r | |
844 | ) {\r | |
845 | return FALSE;\r | |
846 | }\r | |
847 | \r | |
848 | return TRUE;\r | |
849 | }\r | |
850 | \r | |
8d85dc31 | 851 | /**\r |
2d4117c0 | 852 | Check if it is a leap year.\r |
8d85dc31 | 853 | \r |
854 | @param Time The time to be checked.\r | |
855 | \r | |
2d4117c0 | 856 | @retval TRUE It is a leap year.\r |
857 | @retval FALSE It is NOT a leap year.\r | |
8d85dc31 | 858 | **/\r |
8cd4d17c | 859 | BOOLEAN\r |
860 | IsLeapYear (\r | |
861 | IN EFI_TIME *Time\r | |
862 | )\r | |
8cd4d17c | 863 | {\r |
864 | if (Time->Year % 4 == 0) {\r | |
865 | if (Time->Year % 100 == 0) {\r | |
866 | if (Time->Year % 400 == 0) {\r | |
867 | return TRUE;\r | |
868 | } else {\r | |
869 | return FALSE;\r | |
870 | }\r | |
871 | } else {\r | |
872 | return TRUE;\r | |
873 | }\r | |
874 | } else {\r | |
875 | return FALSE;\r | |
876 | }\r | |
877 | }\r | |
878 | \r | |
8d85dc31 | 879 | /**\r |
880 | Converts time from EFI_TIME format defined by UEFI spec to RTC's.\r | |
8cd4d17c | 881 | \r |
8d85dc31 | 882 | This function converts time from EFI_TIME format defined by UEFI spec to RTC's.\r |
883 | If data mode of RTC is BCD, then converts EFI_TIME to it.\r | |
884 | If RTC is in 12-hour format, then converts EFI_TIME to it.\r | |
8cd4d17c | 885 | \r |
8d85dc31 | 886 | @param Time On input, the time data read from UEFI to convert\r |
887 | On output, the time converted to RTC format\r | |
888 | @param RegisterB Value of Register B of RTC, indicating data mode\r | |
889 | @param Century It is set according to EFI_TIME Time.\r | |
8cd4d17c | 890 | \r |
8d85dc31 | 891 | **/\r |
892 | VOID\r | |
893 | ConvertEfiTimeToRtcTime (\r | |
894 | IN OUT EFI_TIME *Time,\r | |
895 | IN RTC_REGISTER_B RegisterB,\r | |
896 | OUT UINT8 *Century\r | |
897 | )\r | |
8cd4d17c | 898 | {\r |
8d85dc31 | 899 | BOOLEAN IsPM;\r |
8cd4d17c | 900 | \r |
8d85dc31 | 901 | IsPM = TRUE;\r |
8cd4d17c | 902 | //\r |
8d85dc31 | 903 | // Adjust hour field if RTC is in 12 hour mode\r |
8cd4d17c | 904 | //\r |
905 | if (RegisterB.Bits.MIL == 0) {\r | |
906 | if (Time->Hour < 12) {\r | |
8d85dc31 | 907 | IsPM = FALSE;\r |
8cd4d17c | 908 | }\r |
909 | \r | |
910 | if (Time->Hour >= 13) {\r | |
911 | Time->Hour = (UINT8) (Time->Hour - 12);\r | |
912 | } else if (Time->Hour == 0) {\r | |
913 | Time->Hour = 12;\r | |
914 | }\r | |
915 | }\r | |
916 | //\r | |
917 | // Set the Time/Date/Daylight Savings values.\r | |
918 | //\r | |
919 | *Century = DecimalToBcd8 ((UINT8) (Time->Year / 100));\r | |
920 | \r | |
921 | Time->Year = (UINT16) (Time->Year % 100);\r | |
922 | \r | |
923 | if (RegisterB.Bits.DM == 0) {\r | |
924 | Time->Year = DecimalToBcd8 ((UINT8) Time->Year);\r | |
925 | Time->Month = DecimalToBcd8 (Time->Month);\r | |
926 | Time->Day = DecimalToBcd8 (Time->Day);\r | |
927 | Time->Hour = DecimalToBcd8 (Time->Hour);\r | |
928 | Time->Minute = DecimalToBcd8 (Time->Minute);\r | |
929 | Time->Second = DecimalToBcd8 (Time->Second);\r | |
930 | }\r | |
931 | //\r | |
932 | // If we are in 12 hour mode and PM is set, then set bit 7 of the Hour field.\r | |
933 | //\r | |
8d85dc31 | 934 | if (RegisterB.Bits.MIL == 0 && IsPM) {\r |
8cd4d17c | 935 | Time->Hour = (UINT8) (Time->Hour | 0x80);\r |
936 | }\r | |
937 | }\r | |
938 | \r | |
8d85dc31 | 939 | /**\r |
940 | Compare the Hour, Minute and Second of the From time and the To time.\r | |
941 | \r | |
942 | Only compare H/M/S in EFI_TIME and ignore other fields here.\r | |
943 | \r | |
944 | @param From the first time\r | |
945 | @param To the second time\r | |
946 | \r | |
947 | @return >0 The H/M/S of the From time is later than those of To time\r | |
948 | @return ==0 The H/M/S of the From time is same as those of To time\r | |
949 | @return <0 The H/M/S of the From time is earlier than those of To time\r | |
950 | **/\r | |
8cd4d17c | 951 | INTN\r |
952 | CompareHMS (\r | |
953 | IN EFI_TIME *From,\r | |
954 | IN EFI_TIME *To\r | |
955 | )\r | |
8cd4d17c | 956 | {\r |
957 | if ((From->Hour > To->Hour) ||\r | |
958 | ((From->Hour == To->Hour) && (From->Minute > To->Minute)) ||\r | |
959 | ((From->Hour == To->Hour) && (From->Minute == To->Minute) && (From->Second > To->Second))) {\r | |
960 | return 1;\r | |
961 | } else if ((From->Hour == To->Hour) && (From->Minute == To->Minute) && (From->Second == To->Second)) {\r | |
962 | return 0;\r | |
963 | } else {\r | |
964 | return -1;\r | |
965 | }\r | |
966 | }\r | |
967 | \r | |
8d85dc31 | 968 | /**\r |
969 | To check if second date is later than first date within 24 hours.\r | |
970 | \r | |
971 | @param From the first date\r | |
972 | @param To the second date\r | |
973 | \r | |
974 | @retval TRUE From is previous to To within 24 hours.\r | |
975 | @retval FALSE From is later, or it is previous to To more than 24 hours.\r | |
976 | **/\r | |
8cd4d17c | 977 | BOOLEAN\r |
978 | IsWithinOneDay (\r | |
979 | IN EFI_TIME *From,\r | |
980 | IN EFI_TIME *To\r | |
981 | )\r | |
8cd4d17c | 982 | {\r |
2ba53a4f | 983 | UINT8 DayOfMonth[12] = {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};\r |
1f4cf7b1 | 984 | BOOLEAN Adjacent;\r |
985 | \r | |
1f4cf7b1 | 986 | Adjacent = FALSE;\r |
8cd4d17c | 987 | \r |
96a5ac5b | 988 | //\r |
4cfc3293 | 989 | // The validity of From->Month field should be checked before\r |
96a5ac5b | 990 | //\r |
991 | ASSERT (From->Month >=1);\r | |
992 | ASSERT (From->Month <=12);\r | |
993 | \r | |
8cd4d17c | 994 | if (From->Year == To->Year) {\r |
995 | if (From->Month == To->Month) {\r | |
996 | if ((From->Day + 1) == To->Day) {\r | |
997 | if ((CompareHMS(From, To) >= 0)) {\r | |
998 | Adjacent = TRUE;\r | |
999 | }\r | |
1000 | } else if (From->Day == To->Day) {\r | |
1001 | if ((CompareHMS(From, To) <= 0)) {\r | |
1002 | Adjacent = TRUE;\r | |
1003 | }\r | |
1004 | }\r | |
1005 | } else if (((From->Month + 1) == To->Month) && (To->Day == 1)) {\r | |
1006 | if ((From->Month == 2) && !IsLeapYear(From)) {\r | |
1007 | if (From->Day == 28) {\r | |
1008 | if ((CompareHMS(From, To) >= 0)) {\r | |
1009 | Adjacent = TRUE;\r | |
1010 | }\r | |
1011 | }\r | |
1012 | } else if (From->Day == DayOfMonth[From->Month - 1]) {\r | |
1013 | if ((CompareHMS(From, To) >= 0)) {\r | |
1014 | Adjacent = TRUE;\r | |
1015 | }\r | |
1016 | }\r | |
1017 | }\r | |
1018 | } else if (((From->Year + 1) == To->Year) &&\r | |
1019 | (From->Month == 12) &&\r | |
1020 | (From->Day == 31) &&\r | |
1021 | (To->Month == 1) &&\r | |
1022 | (To->Day == 1)) {\r | |
1023 | if ((CompareHMS(From, To) >= 0)) {\r | |
1024 | Adjacent = TRUE;\r | |
1025 | }\r | |
1026 | }\r | |
1027 | \r | |
1028 | return Adjacent;\r | |
1029 | }\r | |
1030 | \r |