]> git.proxmox.com Git - mirror_edk2.git/blame - ArmPkg/Drivers/PL390Gic/PL390GicSec.c
ArmPkg: Renamed library 'PL390GicLib' into 'ArmGicLib'
[mirror_edk2.git] / ArmPkg / Drivers / PL390Gic / PL390GicSec.c
CommitLineData
1bfda055 1/** @file\r
2*\r
3* Copyright (c) 2011, ARM Limited. All rights reserved.\r
4* \r
5* This program and the accompanying materials \r
6* are licensed and made available under the terms and conditions of the BSD License \r
7* which accompanies this distribution. The full text of the license may be found at \r
8* http://opensource.org/licenses/bsd-license.php \r
9*\r
10* THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
11* WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
12*\r
13**/\r
14\r
9e2b420e 15#include <Uefi.h>\r
1bfda055 16#include <Library/IoLib.h>\r
55a0d64b 17#include <Library/ArmGicLib.h>\r
1bfda055 18\r
19/*\r
20 * This function configures the all interrupts to be Non-secure.\r
21 *\r
22 */\r
23VOID\r
24EFIAPI\r
55a0d64b 25ArmGicSetupNonSecure (\r
1bfda055 26 IN INTN GicDistributorBase,\r
27 IN INTN GicInterruptInterfaceBase\r
28 )\r
29{\r
55a0d64b 30 UINTN CachedPriorityMask = MmioRead32(GicInterruptInterfaceBase + ARM_GIC_ICCPMR);\r
1bfda055 31\r
9e2b420e 32 // Set priority Mask so that no interrupts get through to CPU\r
55a0d64b 33 MmioWrite32(GicInterruptInterfaceBase + ARM_GIC_ICCPMR, 0);\r
1bfda055 34\r
9e2b420e 35 // Check if there are any pending interrupts\r
55a0d64b 36 //TODO: could be extended to take Peripheral interrupts into consideration, but at the moment only SGI's are taken into consideration.\r
37 while(0 != (MmioRead32(GicDistributorBase + ARM_GIC_ICDICPR) & 0xF)) {\r
9e2b420e 38 // Some of the SGI's are still pending, read Ack register and send End of Interrupt Signal\r
55a0d64b 39 UINTN InterruptId = MmioRead32(GicInterruptInterfaceBase + ARM_GIC_ICCIAR);\r
1bfda055 40\r
9e2b420e 41 // Write to End of interrupt signal\r
55a0d64b 42 MmioWrite32(GicInterruptInterfaceBase + ARM_GIC_ICCEIOR, InterruptId);\r
9e2b420e 43 }\r
1bfda055 44\r
45 // Ensure all GIC interrupts are Non-Secure\r
55a0d64b 46 MmioWrite32(GicDistributorBase + ARM_GIC_ICDISR, 0xffffffff); // IRQs 0-31 are Non-Secure : Private Peripheral Interrupt[31:16] & Software Generated Interrupt[15:0]\r
47 MmioWrite32(GicDistributorBase + ARM_GIC_ICDISR + 4, 0xffffffff); // IRQs 32-63 are Non-Secure : Shared Peripheral Interrupt\r
48 MmioWrite32(GicDistributorBase + ARM_GIC_ICDISR + 8, 0xffffffff); // And another 32 in case we're on the testchip : Shared Peripheral Interrupt (2)\r
1bfda055 49\r
50 // Ensure all interrupts can get through the priority mask\r
55a0d64b 51 MmioWrite32(GicInterruptInterfaceBase + ARM_GIC_ICCPMR, CachedPriorityMask);\r
1bfda055 52}\r
53\r
54VOID\r
55EFIAPI\r
55a0d64b 56ArmGicEnableInterruptInterface (\r
1bfda055 57 IN INTN GicInterruptInterfaceBase\r
58 )\r
59{\r
55a0d64b 60 MmioWrite32(GicInterruptInterfaceBase + ARM_GIC_ICCPMR, 0x000000FF); /* Set Priority Mask to allow interrupts */\r
1bfda055 61\r
2ac288f9 62 /*\r
63 * Enable CPU interface in Secure world\r
1bfda055 64 * Enable CPU inteface in Non-secure World\r
2ac288f9 65 * Signal Secure Interrupts to CPU using FIQ line *\r
66 */\r
55a0d64b 67 MmioWrite32(GicInterruptInterfaceBase + ARM_GIC_ICCICR,\r
68 ARM_GIC_ICCICR_ENABLE_SECURE |\r
69 ARM_GIC_ICCICR_ENABLE_NS |\r
70 ARM_GIC_ICCICR_SIGNAL_SECURE_TO_FIQ);\r
1bfda055 71}\r
72\r
73VOID\r
74EFIAPI\r
55a0d64b 75ArmGicEnableDistributor (\r
1bfda055 76 IN INTN GicDistributorBase\r
77 )\r
78{\r
55a0d64b 79 MmioWrite32(GicDistributorBase + ARM_GIC_ICDDCR, 1); // turn on the GIC distributor\r
1bfda055 80}\r