2011-02-02 23:35:30 +01:00
|
|
|
/** @file
|
|
|
|
*
|
|
|
|
* Copyright (c) 2011, ARM Limited. All rights reserved.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
|
2011-06-11 13:15:55 +02:00
|
|
|
#include <Uefi.h>
|
2011-02-02 23:35:30 +01:00
|
|
|
#include <Library/IoLib.h>
|
2011-09-23 00:59:52 +02:00
|
|
|
#include <Library/ArmGicLib.h>
|
2011-02-02 23:35:30 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This function configures the all interrupts to be Non-secure.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
VOID
|
|
|
|
EFIAPI
|
2011-09-23 00:59:52 +02:00
|
|
|
ArmGicSetupNonSecure (
|
2011-02-02 23:35:30 +01:00
|
|
|
IN INTN GicDistributorBase,
|
|
|
|
IN INTN GicInterruptInterfaceBase
|
|
|
|
)
|
|
|
|
{
|
2011-09-27 18:42:47 +02:00
|
|
|
UINTN InterruptId;
|
|
|
|
UINTN CachedPriorityMask;
|
|
|
|
|
|
|
|
CachedPriorityMask = MmioRead32 (GicInterruptInterfaceBase + ARM_GIC_ICCPMR);
|
2011-02-02 23:35:30 +01:00
|
|
|
|
2011-06-11 13:15:55 +02:00
|
|
|
// Set priority Mask so that no interrupts get through to CPU
|
2011-09-27 18:42:47 +02:00
|
|
|
MmioWrite32 (GicInterruptInterfaceBase + ARM_GIC_ICCPMR, 0);
|
2011-02-02 23:35:30 +01:00
|
|
|
|
2011-06-11 13:15:55 +02:00
|
|
|
// Check if there are any pending interrupts
|
2011-09-23 00:59:52 +02:00
|
|
|
//TODO: could be extended to take Peripheral interrupts into consideration, but at the moment only SGI's are taken into consideration.
|
2011-09-27 18:42:47 +02:00
|
|
|
while(0 != (MmioRead32 (GicDistributorBase + ARM_GIC_ICDICPR) & 0xF)) {
|
2011-06-11 13:15:55 +02:00
|
|
|
// Some of the SGI's are still pending, read Ack register and send End of Interrupt Signal
|
2011-09-27 18:42:47 +02:00
|
|
|
InterruptId = MmioRead32 (GicInterruptInterfaceBase + ARM_GIC_ICCIAR);
|
2011-02-02 23:35:30 +01:00
|
|
|
|
2011-06-11 13:15:55 +02:00
|
|
|
// Write to End of interrupt signal
|
2011-09-27 18:42:47 +02:00
|
|
|
MmioWrite32 (GicInterruptInterfaceBase + ARM_GIC_ICCEIOR, InterruptId);
|
2011-06-11 13:15:55 +02:00
|
|
|
}
|
2011-02-02 23:35:30 +01:00
|
|
|
|
|
|
|
// Ensure all GIC interrupts are Non-Secure
|
2011-09-27 18:42:47 +02:00
|
|
|
MmioWrite32 (GicDistributorBase + ARM_GIC_ICDISR, 0xffffffff); // IRQs 0-31 are Non-Secure : Private Peripheral Interrupt[31:16] & Software Generated Interrupt[15:0]
|
|
|
|
MmioWrite32 (GicDistributorBase + ARM_GIC_ICDISR + 4, 0xffffffff); // IRQs 32-63 are Non-Secure : Shared Peripheral Interrupt
|
|
|
|
MmioWrite32 (GicDistributorBase + ARM_GIC_ICDISR + 8, 0xffffffff); // And another 32 in case we're on the testchip : Shared Peripheral Interrupt (2)
|
2011-02-02 23:35:30 +01:00
|
|
|
|
|
|
|
// Ensure all interrupts can get through the priority mask
|
2011-09-27 18:42:47 +02:00
|
|
|
MmioWrite32 (GicInterruptInterfaceBase + ARM_GIC_ICCPMR, CachedPriorityMask);
|
2011-02-02 23:35:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
VOID
|
|
|
|
EFIAPI
|
2011-09-23 00:59:52 +02:00
|
|
|
ArmGicEnableInterruptInterface (
|
2011-02-02 23:35:30 +01:00
|
|
|
IN INTN GicInterruptInterfaceBase
|
|
|
|
)
|
|
|
|
{
|
2011-09-27 18:42:47 +02:00
|
|
|
// Set Priority Mask to allow interrupts
|
|
|
|
MmioWrite32 (GicInterruptInterfaceBase + ARM_GIC_ICCPMR, 0x000000FF);
|
2011-02-02 23:35:30 +01:00
|
|
|
|
2011-09-27 18:42:47 +02:00
|
|
|
// Enable CPU interface in Secure world
|
|
|
|
// Enable CPU inteface in Non-secure World
|
|
|
|
// Signal Secure Interrupts to CPU using FIQ line *
|
|
|
|
MmioWrite32 (GicInterruptInterfaceBase + ARM_GIC_ICCICR,
|
2011-09-23 00:59:52 +02:00
|
|
|
ARM_GIC_ICCICR_ENABLE_SECURE |
|
|
|
|
ARM_GIC_ICCICR_ENABLE_NS |
|
|
|
|
ARM_GIC_ICCICR_SIGNAL_SECURE_TO_FIQ);
|
2011-02-02 23:35:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
VOID
|
|
|
|
EFIAPI
|
2011-09-23 00:59:52 +02:00
|
|
|
ArmGicEnableDistributor (
|
2011-02-02 23:35:30 +01:00
|
|
|
IN INTN GicDistributorBase
|
|
|
|
)
|
|
|
|
{
|
2011-09-27 18:42:47 +02:00
|
|
|
// Turn on the GIC distributor
|
|
|
|
MmioWrite32 (GicDistributorBase + ARM_GIC_ICDDCR, 1);
|
2011-02-02 23:35:30 +01:00
|
|
|
}
|