audk/ArmVirtPkg/Library/XenArmGenericTimerVirtCounterLib/XenArmGenericTimerVirtCounterLib.c
Michael D Kinney 9792fb0e65 ArmVirtPkg: Replace BSD License with BSD+Patent License
https://bugzilla.tianocore.org/show_bug.cgi?id=1373

Replace BSD 2-Clause License with BSD+Patent License.  This change is
based on the following emails:

  https://lists.01.org/pipermail/edk2-devel/2019-February/036260.html
  https://lists.01.org/pipermail/edk2-devel/2018-October/030385.html

RFCs with detailed process for the license change:

  V3: https://lists.01.org/pipermail/edk2-devel/2019-March/038116.html
  V2: https://lists.01.org/pipermail/edk2-devel/2019-March/037669.html
  V1: https://lists.01.org/pipermail/edk2-devel/2019-March/037500.html

Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
2019-04-09 09:10:21 -07:00

141 lines
2.1 KiB
C

/** @file
Copyright (c) 2011 - 2014, ARM Ltd. All rights reserved.<BR>
Copyright (c) 2014 - 2018, Linaro Ltd. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include <Library/ArmGenericTimerCounterLib.h>
#include <Library/ArmLib.h>
VOID
EFIAPI
ArmGenericTimerEnableTimer (
VOID
)
{
UINTN TimerCtrlReg;
TimerCtrlReg = ArmReadCntvCtl ();
TimerCtrlReg |= ARM_ARCH_TIMER_ENABLE;
ArmWriteCntvCtl (TimerCtrlReg);
}
VOID
EFIAPI
ArmGenericTimerReenableTimer (
VOID
)
{
UINTN TimerCtrlReg;
TimerCtrlReg = ArmReadCntvCtl ();
TimerCtrlReg |= ARM_ARCH_TIMER_ENABLE;
//
// When running under Xen, we need to unmask the interrupt on the timer side
// as Xen will mask it when servicing the interrupt at the hypervisor level
// and delivering the virtual timer interrupt to the guest. Otherwise, the
// interrupt will fire again, trapping into the hypervisor again, etc. etc.
//
TimerCtrlReg &= ~ARM_ARCH_TIMER_IMASK;
ArmWriteCntvCtl (TimerCtrlReg);
}
VOID
EFIAPI
ArmGenericTimerDisableTimer (
VOID
)
{
UINTN TimerCtrlReg;
TimerCtrlReg = ArmReadCntvCtl ();
TimerCtrlReg &= ~ARM_ARCH_TIMER_ENABLE;
ArmWriteCntvCtl (TimerCtrlReg);
}
VOID
EFIAPI
ArmGenericTimerSetTimerFreq (
IN UINTN FreqInHz
)
{
ArmWriteCntFrq (FreqInHz);
}
UINTN
EFIAPI
ArmGenericTimerGetTimerFreq (
VOID
)
{
return ArmReadCntFrq ();
}
UINTN
EFIAPI
ArmGenericTimerGetTimerVal (
VOID
)
{
return ArmReadCntvTval ();
}
VOID
EFIAPI
ArmGenericTimerSetTimerVal (
IN UINTN Value
)
{
ArmWriteCntvTval (Value);
}
UINT64
EFIAPI
ArmGenericTimerGetSystemCount (
VOID
)
{
return ArmReadCntvCt ();
}
UINTN
EFIAPI
ArmGenericTimerGetTimerCtrlReg (
VOID
)
{
return ArmReadCntvCtl ();
}
VOID
EFIAPI
ArmGenericTimerSetTimerCtrlReg (
UINTN Value
)
{
ArmWriteCntvCtl (Value);
}
UINT64
EFIAPI
ArmGenericTimerGetCompareVal (
VOID
)
{
return ArmReadCntvCval ();
}
VOID
EFIAPI
ArmGenericTimerSetCompareVal (
IN UINT64 Value
)
{
ArmWriteCntvCval (Value);
}