]> git.proxmox.com Git - mirror_edk2.git/blobdiff - ArmPlatformPkg/Library/PL031RealTimeClockLib/PL031RealTimeClockLib.c
ArmPlatformPkg: Apply uncrustify changes
[mirror_edk2.git] / ArmPlatformPkg / Library / PL031RealTimeClockLib / PL031RealTimeClockLib.c
index 3afef4bf9ad4829acbbdc8336d09beb49a1681f0..a203299c0637166d2fa98501f40e315f9b0b280d 100644 (file)
 \r
 #include "PL031RealTimeClock.h"\r
 \r
-STATIC BOOLEAN                mPL031Initialized = FALSE;\r
-STATIC EFI_EVENT              mRtcVirtualAddrChangeEvent;\r
-STATIC UINTN                  mPL031RtcBase;\r
+STATIC BOOLEAN    mPL031Initialized = FALSE;\r
+STATIC EFI_EVENT  mRtcVirtualAddrChangeEvent;\r
+STATIC UINTN      mPL031RtcBase;\r
 \r
 EFI_STATUS\r
 IdentifyPL031 (\r
   VOID\r
   )\r
 {\r
-  EFI_STATUS    Status;\r
+  EFI_STATUS  Status;\r
 \r
   // Check if this is a PrimeCell Peripheral\r
   if (  (MmioRead8 (mPL031RtcBase + PL031_RTC_PCELL_ID0) != 0x0D)\r
-      || (MmioRead8 (mPL031RtcBase + PL031_RTC_PCELL_ID1) != 0xF0)\r
-      || (MmioRead8 (mPL031RtcBase + PL031_RTC_PCELL_ID2) != 0x05)\r
-      || (MmioRead8 (mPL031RtcBase + PL031_RTC_PCELL_ID3) != 0xB1)) {\r
+     || (MmioRead8 (mPL031RtcBase + PL031_RTC_PCELL_ID1) != 0xF0)\r
+     || (MmioRead8 (mPL031RtcBase + PL031_RTC_PCELL_ID2) != 0x05)\r
+     || (MmioRead8 (mPL031RtcBase + PL031_RTC_PCELL_ID3) != 0xB1))\r
+  {\r
     Status = EFI_NOT_FOUND;\r
     goto EXIT;\r
   }\r
 \r
   // Check if this PrimeCell Peripheral is the PL031 Real Time Clock\r
   if (  (MmioRead8 (mPL031RtcBase + PL031_RTC_PERIPH_ID0) != 0x31)\r
-      || (MmioRead8 (mPL031RtcBase + PL031_RTC_PERIPH_ID1) != 0x10)\r
-      || ((MmioRead8 (mPL031RtcBase + PL031_RTC_PERIPH_ID2) & 0xF) != 0x04)\r
-      || (MmioRead8 (mPL031RtcBase + PL031_RTC_PERIPH_ID3) != 0x00)) {\r
+     || (MmioRead8 (mPL031RtcBase + PL031_RTC_PERIPH_ID1) != 0x10)\r
+     || ((MmioRead8 (mPL031RtcBase + PL031_RTC_PERIPH_ID2) & 0xF) != 0x04)\r
+     || (MmioRead8 (mPL031RtcBase + PL031_RTC_PERIPH_ID3) != 0x00))\r
+  {\r
     Status = EFI_NOT_FOUND;\r
     goto EXIT;\r
   }\r
 \r
   Status = EFI_SUCCESS;\r
 \r
-  EXIT:\r
+EXIT:\r
   return Status;\r
 }\r
 \r
@@ -71,10 +73,10 @@ InitializePL031 (
   VOID\r
   )\r
 {\r
-  EFI_STATUS    Status;\r
+  EFI_STATUS  Status;\r
 \r
   // Prepare the hardware\r
-  Status = IdentifyPL031();\r
+  Status = IdentifyPL031 ();\r
   if (EFI_ERROR (Status)) {\r
     goto EXIT;\r
   }\r
@@ -96,7 +98,7 @@ InitializePL031 (
 \r
   mPL031Initialized = TRUE;\r
 \r
-  EXIT:\r
+EXIT:\r
   return Status;\r
 }\r
 \r
@@ -117,8 +119,8 @@ InitializePL031 (
 EFI_STATUS\r
 EFIAPI\r
 LibGetTime (\r
-  OUT EFI_TIME                *Time,\r
-  OUT EFI_TIME_CAPABILITIES   *Capabilities\r
+  OUT EFI_TIME               *Time,\r
+  OUT EFI_TIME_CAPABILITIES  *Capabilities\r
   )\r
 {\r
   EFI_STATUS  Status;\r
@@ -154,17 +156,16 @@ LibGetTime (
   // Update the Capabilities info\r
   if (Capabilities != NULL) {\r
     // PL031 runs at frequency 1Hz\r
-    Capabilities->Resolution  = PL031_COUNTS_PER_SECOND;\r
+    Capabilities->Resolution = PL031_COUNTS_PER_SECOND;\r
     // Accuracy in ppm multiplied by 1,000,000, e.g. for 50ppm set 50,000,000\r
-    Capabilities->Accuracy    = (UINT32)PcdGet32 (PcdPL031RtcPpmAccuracy);\r
+    Capabilities->Accuracy = (UINT32)PcdGet32 (PcdPL031RtcPpmAccuracy);\r
     // FALSE: Setting the time does not clear the values below the resolution level\r
-    Capabilities->SetsToZero  = FALSE;\r
+    Capabilities->SetsToZero = FALSE;\r
   }\r
 \r
   return EFI_SUCCESS;\r
 }\r
 \r
-\r
 /**\r
   Sets the current local time and date information.\r
 \r
@@ -178,7 +179,7 @@ LibGetTime (
 EFI_STATUS\r
 EFIAPI\r
 LibSetTime (\r
-  IN  EFI_TIME                *Time\r
+  IN  EFI_TIME  *Time\r
   )\r
 {\r
   EFI_STATUS  Status;\r
@@ -217,7 +218,6 @@ LibSetTime (
   return EFI_SUCCESS;\r
 }\r
 \r
-\r
 /**\r
   Returns the current wakeup alarm clock setting.\r
 \r
@@ -233,16 +233,15 @@ LibSetTime (
 EFI_STATUS\r
 EFIAPI\r
 LibGetWakeupTime (\r
-  OUT BOOLEAN     *Enabled,\r
-  OUT BOOLEAN     *Pending,\r
-  OUT EFI_TIME    *Time\r
+  OUT BOOLEAN   *Enabled,\r
+  OUT BOOLEAN   *Pending,\r
+  OUT EFI_TIME  *Time\r
   )\r
 {\r
   // Not a required feature\r
   return EFI_UNSUPPORTED;\r
 }\r
 \r
-\r
 /**\r
   Sets the system wakeup alarm clock time.\r
 \r
@@ -259,8 +258,8 @@ LibGetWakeupTime (
 EFI_STATUS\r
 EFIAPI\r
 LibSetWakeupTime (\r
-  IN BOOLEAN      Enabled,\r
-  OUT EFI_TIME    *Time\r
+  IN BOOLEAN    Enabled,\r
+  OUT EFI_TIME  *Time\r
   )\r
 {\r
   // Not a required feature\r
@@ -278,8 +277,8 @@ LibSetWakeupTime (
 VOID\r
 EFIAPI\r
 LibRtcVirtualNotifyEvent (\r
-  IN EFI_EVENT        Event,\r
-  IN VOID             *Context\r
+  IN EFI_EVENT  Event,\r
+  IN VOID       *Context\r
   )\r
 {\r
   //\r
@@ -288,7 +287,7 @@ LibRtcVirtualNotifyEvent (
   // to virtual address. After the OS transitions to calling in virtual mode, all future\r
   // runtime calls will be made in virtual mode.\r
   //\r
-  EfiConvertPointer (0x0, (VOID**)&mPL031RtcBase);\r
+  EfiConvertPointer (0x0, (VOID **)&mPL031RtcBase);\r
   return;\r
 }\r
 \r
@@ -305,12 +304,12 @@ LibRtcVirtualNotifyEvent (
 EFI_STATUS\r
 EFIAPI\r
 LibRtcInitialize (\r
-  IN EFI_HANDLE                            ImageHandle,\r
-  IN EFI_SYSTEM_TABLE                      *SystemTable\r
+  IN EFI_HANDLE        ImageHandle,\r
+  IN EFI_SYSTEM_TABLE  *SystemTable\r
   )\r
 {\r
-  EFI_STATUS    Status;\r
-  EFI_HANDLE    Handle;\r
+  EFI_STATUS  Status;\r
+  EFI_HANDLE  Handle;\r
 \r
   // Initialize RTC Base Address\r
   mPL031RtcBase = PcdGet32 (PcdPL031RtcBase);\r
@@ -318,7 +317,8 @@ LibRtcInitialize (
   // Declare the controller as EFI_MEMORY_RUNTIME\r
   Status = gDS->AddMemorySpace (\r
                   EfiGcdMemoryTypeMemoryMappedIo,\r
-                  mPL031RtcBase, SIZE_4KB,\r
+                  mPL031RtcBase,\r
+                  SIZE_4KB,\r
                   EFI_MEMORY_UC | EFI_MEMORY_RUNTIME\r
                   );\r
   if (EFI_ERROR (Status)) {\r
@@ -334,9 +334,10 @@ LibRtcInitialize (
   Handle = NULL;\r
   Status = gBS->InstallMultipleProtocolInterfaces (\r
                   &Handle,\r
-                  &gEfiRealTimeClockArchProtocolGuid,  NULL,\r
+                  &gEfiRealTimeClockArchProtocolGuid,\r
+                  NULL,\r
                   NULL\r
-                 );\r
+                  );\r
   ASSERT_EFI_ERROR (Status);\r
 \r
   //\r