summaryrefslogtreecommitdiff
path: root/MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.h
diff options
context:
space:
mode:
Diffstat (limited to 'MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.h')
-rw-r--r--MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.h64
1 files changed, 61 insertions, 3 deletions
diff --git a/MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.h b/MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.h
index 0117d287bb..103ad06d9f 100644
--- a/MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.h
+++ b/MdeModulePkg/Universal/WatchdogTimerDxe/WatchdogTimer.h
@@ -29,9 +29,27 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
#include <Protocol/WatchdogTimer.h>
-//
-// Function Prototypes
-//
+/**
+ This function registers a handler that is to be invoked when the watchdog
+ timer fires. By default, the EFI_WATCHDOG_TIMER protocol will call the
+ Runtime Service ResetSystem() when the watchdog timer fires. If a
+ NotifyFunction is registered, then the NotifyFunction will be called before
+ the Runtime Service ResetSystem() is called. If NotifyFunction is NULL, then
+ the watchdog handler is unregistered. If a watchdog handler is registered,
+ then EFI_SUCCESS is returned. If an attempt is made to register a handler
+ when a handler is already registered, then EFI_ALREADY_STARTED is returned.
+ If an attempt is made to uninstall a handler when a handler is not installed,
+ then return EFI_INVALID_PARAMETER.
+
+ @param This The EFI_WATCHDOG_TIMER_ARCH_PROTOCOL instance.
+ @param NotifyFunction The function to call when the watchdog timer fires. If this
+ is NULL, then the handler will be unregistered.
+
+ @return EFI_SUCCESS The watchdog timer handler was registered or unregistered.
+ @return EFI_ALREADY_STARTED NotifyFunction is not NULL, and a handler is already registered.
+ @return EFI_INVALID_PARAMETER NotifyFunction is NULL, and a handler was not previously registered.
+
+**/
EFI_STATUS
EFIAPI
WatchdogTimerDriverRegisterHandler (
@@ -39,6 +57,22 @@ WatchdogTimerDriverRegisterHandler (
IN EFI_WATCHDOG_TIMER_NOTIFY NotifyFunction
);
+/**
+ This function sets the amount of time to wait before firing the watchdog
+ timer to TimerPeriod 100 nS units. If TimerPeriod is 0, then the watchdog
+ timer is disabled.
+
+ @param This The EFI_WATCHDOG_TIMER_ARCH_PROTOCOL instance.
+ @param TimerPeriod The amount of time in 100 nS units to wait before the watchdog
+ timer is fired. If TimerPeriod is zero, then the watchdog
+ timer is disabled.
+
+ @return EFI_SUCCESS The watchdog timer has been programmed to fire in Time
+ 100 nS units.
+ @return EFI_DEVICE_ERROR A watchdog timer could not be programmed due to a device
+ error.
+
+**/
EFI_STATUS
EFIAPI
WatchdogTimerDriverSetTimerPeriod (
@@ -46,6 +80,21 @@ WatchdogTimerDriverSetTimerPeriod (
IN UINT64 TimerPeriod
);
+/**
+ This function retrieves the amount of time the system will wait before firing
+ the watchdog timer. This period is returned in TimerPeriod, and EFI_SUCCESS
+ is returned. If TimerPeriod is NULL, then EFI_INVALID_PARAMETER is returned.
+
+ @param This The EFI_WATCHDOG_TIMER_ARCH_PROTOCOL instance.
+ @param TimerPeriod A pointer to the amount of time in 100 nS units that the system
+ will wait before the watchdog timer is fired. If TimerPeriod of
+ zero is returned, then the watchdog timer is disabled.
+
+ @return EFI_SUCCESS The amount of time that the system will wait before
+ firing the watchdog timer was returned in TimerPeriod.
+ @return EFI_INVALID_PARAMETER TimerPeriod is NULL.
+
+**/
EFI_STATUS
EFIAPI
WatchdogTimerDriverGetTimerPeriod (
@@ -53,6 +102,15 @@ WatchdogTimerDriverGetTimerPeriod (
IN UINT64 *TimerPeriod
);
+/**
+ Initialize the Watchdog Timer Architectural Protocol driver.
+
+ @param ImageHandle ImageHandle of the loaded driver.
+ @param SystemTable Pointer to the System Table.
+
+ @return EFI_SUCCESS Timer Architectural Protocol created.
+
+**/
EFI_STATUS
EFIAPI
WatchdogTimerDriverInitialize (