diff options
Diffstat (limited to 'Silicon/BroxtonSoC/BroxtonSiPkg/NorthCluster/Library/PeiSaPolicyLib/PeiSaPolicyLibrary.h')
-rw-r--r-- | Silicon/BroxtonSoC/BroxtonSiPkg/NorthCluster/Library/PeiSaPolicyLib/PeiSaPolicyLibrary.h | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/Silicon/BroxtonSoC/BroxtonSiPkg/NorthCluster/Library/PeiSaPolicyLib/PeiSaPolicyLibrary.h b/Silicon/BroxtonSoC/BroxtonSiPkg/NorthCluster/Library/PeiSaPolicyLib/PeiSaPolicyLibrary.h deleted file mode 100644 index 26a6e67968..0000000000 --- a/Silicon/BroxtonSoC/BroxtonSiPkg/NorthCluster/Library/PeiSaPolicyLib/PeiSaPolicyLibrary.h +++ /dev/null @@ -1,70 +0,0 @@ -/** @file
- Header file for the Pei SA policy library.
-
- Copyright (c) 2014 - 2016, Intel Corporation. All rights reserved.<BR>
-
- This program and the accompanying materials
- are licensed and made available under the terms and conditions of the BSD License
- which accompanies this distribution. The full text of the license may be found at
- http://opensource.org/licenses/bsd-license.php.
-
- THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
- WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-
-**/
-
-#ifndef _PEI_SA_POLICY_LIBRARY_H_
-#define _PEI_SA_POLICY_LIBRARY_H_
-
-#include <Library/DebugLib.h>
-#include <Library/BaseLib.h>
-#include <Library/PeiServicesLib.h>
-#include <Library/MemoryAllocationLib.h>
-#include <Library/ConfigBlockLib.h>
-#include <Ppi/SaPolicy.h>
-#include <Library/PeiSaPolicyLib.h>
-
-#define SaIoRead8 IoRead8
-#define SaIoRead16 IoRead16
-#define SaIoRead32 IoRead32
-#define SaIoWrite8 IoWrite8
-#define SaIoWrite16 IoWrite16
-#define SaIoWrite32 IoWrite32
-#define SaCopyMem CopyMem
-#define SaSetMem SetMem
-#define SaLShiftU64 LShiftU64
-#define SaRShiftU64 RShiftU64
-#define SaMultU64x32 MultU64x32
-
-#define RTC_INDEX_REGISTER (0x70)
-#define RTC_TARGET_REGISTER (0x71)
-#define R_PCH_RTC_INDEX_ALT (0x74)
-#define R_PCH_RTC_TARGET_ALT (0x75)
-#define R_PCH_RTC_EXT_INDEX_ALT (0x76)
-#define R_PCH_RTC_EXT_TARGET_ALT (0x77)
-
-#define RTC_INDEX_MASK (0x7F)
-#define RTC_BANK_SIZE (0x80)
-
-#define RTC_SECONDS (0x00)
-#define RTC_MINUTES (0x02)
-#define RTC_HOURS (0x04)
-#define RTC_DAY_OF_MONTH (0x07)
-#define RTC_MONTH (0x08)
-#define RTC_YEAR (0x09)
-#define CMOS_REGA (0x0A)
-#define CMOS_REGB (0x0B)
-#define CMOS_REGC (0x0C)
-#define CMOS_REGD (0x0D)
-
-#define RTC_UPDATE_IN_PROGRESS (0x80)
-#define RTC_HOLD (0x80)
-#define RTC_MODE_24HOUR (0x02)
-#define RTC_CLOCK_DIVIDER (0x20)
-#define RTC_RATE_SELECT (0x06)
-
-#define BCD2BINARY(A) (((((A) >> 4) & 0xF) * 10) + ((A) & 0xF))
-#define CENTURY_OFFSET (2000)
-
-#endif // _PEI_SA_POLICY_LIBRARY_H_
-
|