]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/WatchDogTimerDxe/WatchDogTimer.h
add in
[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 // Function Prototypes
29 //
30 EFI_STATUS
31 EFIAPI
32 WatchdogTimerDriverRegisterHandler (
33 IN EFI_WATCHDOG_TIMER_ARCH_PROTOCOL *This,
34 IN EFI_WATCHDOG_TIMER_NOTIFY NotifyFunction
35 )
36 ;
37
38 EFI_STATUS
39 EFIAPI
40 WatchdogTimerDriverSetTimerPeriod (
41 IN EFI_WATCHDOG_TIMER_ARCH_PROTOCOL *This,
42 IN UINT64 TimerPeriod
43 )
44 ;
45
46 EFI_STATUS
47 EFIAPI
48 WatchdogTimerDriverGetTimerPeriod (
49 IN EFI_WATCHDOG_TIMER_ARCH_PROTOCOL *This,
50 IN UINT64 *TimerPeriod
51 )
52 ;
53
54 EFI_STATUS
55 EFIAPI
56 WatchdogTimerDriverInitialize (
57 IN EFI_HANDLE ImageHandle,
58 IN EFI_SYSTEM_TABLE *SystemTable
59 )
60 ;
61
62 #endif