]> git.proxmox.com Git - mirror_edk2.git/commitdiff
ArmPlatformPkg/SP805Watchdog.h: Removed the DXE function declarations from the header
authoroliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524>
Mon, 26 Mar 2012 10:58:06 +0000 (10:58 +0000)
committeroliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524>
Mon, 26 Mar 2012 10:58:06 +0000 (10:58 +0000)
The DXE functions are local to the DXE driver.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13132 6f19259b-4bc3-4df7-8a09-765794883524

ArmPlatformPkg/Drivers/SP805WatchdogDxe/SP805Watchdog.c
ArmPlatformPkg/Include/Drivers/SP805Watchdog.h

index f8faab735de6c2fed4feecb5edeb3ae88aebd80a..c2ebffdf38fcc72e8dd87f1cc675857f4eeb8529 100644 (file)
 #include <Protocol/WatchdogTimer.h>
 #include <Drivers/SP805Watchdog.h>
 
-/**
-  Interface structure for the Watchdog Architectural Protocol.
-
-  @par Protocol Description:
-  This protocol provides a service to set the amount of time to wait
-  before firing the watchdog timer, and it also provides a service to
-  register a handler that is invoked when the watchdog timer fires.
-
-  @par When the watchdog timer fires, control will be passed to a handler
-  if one has been registered.  If no handler has been registered,
-  or the registered handler returns, then the system will be
-  reset by calling the Runtime Service ResetSystem().
-
-  @param RegisterHandler
-  Registers a handler that will be called each time the
-  watchdogtimer interrupt fires.  TimerPeriod defines the minimum
-  time between timer interrupts, so TimerPeriod will also
-  be the minimum time between calls to the registered
-  handler.
-  NOTE: If the watchdog resets the system in hardware, then
-        this function will not have any chance of executing.
-
-  @param SetTimerPeriod
-  Sets the period of the timer interrupt in 100 nS units.
-  This function is optional, and may return EFI_UNSUPPORTED.
-  If this function is supported, then the timer period will
-  be rounded up to the nearest supported timer period.
-
-  @param GetTimerPeriod
-  Retrieves the period of the timer interrupt in 100 nS units.
-
-**/
-EFI_WATCHDOG_TIMER_ARCH_PROTOCOL    gWatchdogTimer = {
-  (EFI_WATCHDOG_TIMER_REGISTER_HANDLER) SP805RegisterHandler,
-  (EFI_WATCHDOG_TIMER_SET_TIMER_PERIOD) SP805SetTimerPeriod,
-  (EFI_WATCHDOG_TIMER_GET_TIMER_PERIOD) SP805GetTimerPeriod
-};
-
 EFI_EVENT                           EfiExitBootServicesEvent = (EFI_EVENT)NULL;
 
 BOOLEAN                             mSP805Initialized = FALSE;
@@ -357,10 +319,47 @@ SP805GetTimerPeriod (
 
   *TimerPeriod = ReturnValue;
 
-  EXIT:
   return Status;
 }
 
+/**
+  Interface structure for the Watchdog Architectural Protocol.
+
+  @par Protocol Description:
+  This protocol provides a service to set the amount of time to wait
+  before firing the watchdog timer, and it also provides a service to
+  register a handler that is invoked when the watchdog timer fires.
+
+  @par When the watchdog timer fires, control will be passed to a handler
+  if one has been registered.  If no handler has been registered,
+  or the registered handler returns, then the system will be
+  reset by calling the Runtime Service ResetSystem().
+
+  @param RegisterHandler
+  Registers a handler that will be called each time the
+  watchdogtimer interrupt fires.  TimerPeriod defines the minimum
+  time between timer interrupts, so TimerPeriod will also
+  be the minimum time between calls to the registered
+  handler.
+  NOTE: If the watchdog resets the system in hardware, then
+        this function will not have any chance of executing.
+
+  @param SetTimerPeriod
+  Sets the period of the timer interrupt in 100 nS units.
+  This function is optional, and may return EFI_UNSUPPORTED.
+  If this function is supported, then the timer period will
+  be rounded up to the nearest supported timer period.
+
+  @param GetTimerPeriod
+  Retrieves the period of the timer interrupt in 100 nS units.
+
+**/
+EFI_WATCHDOG_TIMER_ARCH_PROTOCOL    gWatchdogTimer = {
+  (EFI_WATCHDOG_TIMER_REGISTER_HANDLER) SP805RegisterHandler,
+  (EFI_WATCHDOG_TIMER_SET_TIMER_PERIOD) SP805SetTimerPeriod,
+  (EFI_WATCHDOG_TIMER_GET_TIMER_PERIOD) SP805GetTimerPeriod
+};
+
 /**
   Initialize the state information for the Watchdog Timer Architectural Protocol.
 
@@ -381,20 +380,20 @@ SP805Initialize (
 
   // Check if the SP805 hardware watchdog module exists on board
   Status = SP805Identify();
-  if (EFI_ERROR( Status )) {
+  if (EFI_ERROR(Status)) {
     Status = EFI_DEVICE_ERROR;
     goto EXIT;
   }
 
   // Unlock access to the SP805 registers
-  SP805Unlock();
+  SP805Unlock ();
 
   // Stop the watchdog from triggering unexpectedly
-  SP805Stop();
+  SP805Stop ();
 
   // Set the watchdog to reset the board when triggered
-  if ( (MmioRead32(SP805_WDOG_CONTROL_REG) & SP805_WDOG_CTRL_RESEN) == 0 ) {
-    MmioOr32(SP805_WDOG_CONTROL_REG, SP805_WDOG_CTRL_RESEN);
+  if ((MmioRead32(SP805_WDOG_CONTROL_REG) & SP805_WDOG_CTRL_RESEN) == 0) {
+    MmioOr32 (SP805_WDOG_CONTROL_REG, SP805_WDOG_CTRL_RESEN);
   }
 
   // Prohibit any rogue access to SP805 registers
index 60c02be139d4aaa133bb27b76633d2f6c1135725..4d5e145d8b0bcbddacaf10395f33bb70f355b121 100644 (file)
@@ -1,6 +1,6 @@
 /** @file\r
 *\r
-*  Copyright (c) 2011, ARM Limited. All rights reserved.\r
+*  Copyright (c) 2011-2012, ARM Limited. All rights reserved.\r
 *\r
 *  This program and the accompanying materials\r
 *  are licensed and made available under the terms and conditions of the BSD License\r
 #define SP805_WDOG_LOCK_IS_LOCKED       0x00000001\r
 #define SP805_WDOG_SPECIAL_UNLOCK_CODE  0x1ACCE551\r
 \r
-VOID\r
-EFIAPI\r
-ExitBootServicesEvent (\r
-  IN EFI_EVENT  Event,\r
-  IN VOID       *Context\r
-);\r
-\r
-EFI_STATUS\r
-EFIAPI\r
-SP805SetTimerPeriod (\r
-  IN CONST EFI_WATCHDOG_TIMER_ARCH_PROTOCOL   *This,\r
-  IN UINT64                                   TimerPeriod   // In 100ns units\r
-);\r
-\r
-EFI_STATUS\r
-EFIAPI\r
-SP805GetTimerPeriod (\r
-  IN CONST EFI_WATCHDOG_TIMER_ARCH_PROTOCOL   *This,\r
-  OUT UINT64                                  *TimerPeriod\r
-);\r
-\r
-EFI_STATUS\r
-EFIAPI\r
-SP805RegisterHandler (\r
-  IN CONST EFI_WATCHDOG_TIMER_ARCH_PROTOCOL   *This,\r
-  IN EFI_WATCHDOG_TIMER_NOTIFY                NotifyFunction\r
-);\r
-\r
-EFI_STATUS\r
-SP805Initialize (\r
-  VOID\r
-);\r
-\r
-EFI_STATUS\r
-EFIAPI\r
-SP805InstallProtocol (\r
-  IN EFI_HANDLE         ImageHandle,\r
-  IN EFI_SYSTEM_TABLE   *SystemTable\r
-);\r
-\r
-\r
 #endif  // __SP805_WATCHDOG_H__\r