]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/WatchDogTimerDxe/WatchDogTimer.h
remove some comments introduced by tools.
[mirror_edk2.git] / MdeModulePkg / Universal / WatchDogTimerDxe / WatchDogTimer.h
1 /*++
2
3 Copyright (c) 2006, 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
8
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.
11
12 Module Name:
13
14 WatchDogTimer.h
15
16 Abstract:
17
18 Generic watchdog timer implemenetation using EFI APIs
19
20 Revision History
21
22 --*/
23
24 #ifndef _WATCHDOG_TIMER_H_
25 #define _WATCHDOG_TIMER_H_
26
27
28
29 #include <PiDxe.h>
30 #include <Library/DebugLib.h>
31 #include <Library/UefiDriverEntryPoint.h>
32 #include <Library/ReportStatusCodeLib.h>
33 #include <Library/UefiBootServicesTableLib.h>
34 #include <Library/UefiRuntimeServicesTableLib.h>
35 #include <Library/PcdLib.h>
36 #include <Protocol/WatchDogTimer.h>
37
38
39 //
40 // Function Prototypes
41 //
42 EFI_STATUS
43 EFIAPI
44 WatchdogTimerDriverRegisterHandler (
45 IN EFI_WATCHDOG_TIMER_ARCH_PROTOCOL *This,
46 IN EFI_WATCHDOG_TIMER_NOTIFY NotifyFunction
47 );
48
49 EFI_STATUS
50 EFIAPI
51 WatchdogTimerDriverSetTimerPeriod (
52 IN EFI_WATCHDOG_TIMER_ARCH_PROTOCOL *This,
53 IN UINT64 TimerPeriod
54 );
55
56 EFI_STATUS
57 EFIAPI
58 WatchdogTimerDriverGetTimerPeriod (
59 IN EFI_WATCHDOG_TIMER_ARCH_PROTOCOL *This,
60 IN UINT64 *TimerPeriod
61 );
62
63 EFI_STATUS
64 EFIAPI
65 WatchdogTimerDriverInitialize (
66 IN EFI_HANDLE ImageHandle,
67 IN EFI_SYSTEM_TABLE *SystemTable
68 );
69
70 #endif