]> git.proxmox.com Git - mirror_edk2.git/blob - ArmPkg/Include/Library/ArmGicLib.h
ArmPkg/Drivers/ArmGic: Introduced ArmGicEndOfInterrupt()
[mirror_edk2.git] / ArmPkg / Include / Library / ArmGicLib.h
1 /** @file
2 *
3 * Copyright (c) 2011-2013, ARM Limited. All rights reserved.
4 *
5 * This program and the accompanying materials
6 * are licensed and made available under the terms and conditions of the BSD License
7 * which accompanies this distribution. The full text of the license may be found at
8 * http://opensource.org/licenses/bsd-license.php
9 *
10 * THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12 *
13 **/
14
15 #ifndef __ARMGIC_H
16 #define __ARMGIC_H
17
18 //
19 // GIC definitions
20 //
21
22 //
23 // GIC Distributor
24 //
25 #define ARM_GIC_ICDDCR 0x000 // Distributor Control Register
26 #define ARM_GIC_ICDICTR 0x004 // Interrupt Controller Type Register
27 #define ARM_GIC_ICDIIDR 0x008 // Implementer Identification Register
28
29 // Each reg base below repeats for VE_NUM_ARM_GIC_REG_PER_INT_BITS (see GIC spec)
30 #define ARM_GIC_ICDISR 0x080 // Interrupt Security Registers
31 #define ARM_GIC_ICDISER 0x100 // Interrupt Set-Enable Registers
32 #define ARM_GIC_ICDICER 0x180 // Interrupt Clear-Enable Registers
33 #define ARM_GIC_ICDSPR 0x200 // Interrupt Set-Pending Registers
34 #define ARM_GIC_ICDICPR 0x280 // Interrupt Clear-Pending Registers
35 #define ARM_GIC_ICDABR 0x300 // Active Bit Registers
36
37 // Each reg base below repeats for VE_NUM_ARM_GIC_REG_PER_INT_BYTES
38 #define ARM_GIC_ICDIPR 0x400 // Interrupt Priority Registers
39
40 // Each reg base below repeats for VE_NUM_ARM_GIC_INTERRUPTS
41 #define ARM_GIC_ICDIPTR 0x800 // Interrupt Processor Target Registers
42 #define ARM_GIC_ICDICFR 0xC00 // Interrupt Configuration Registers
43
44 #define ARM_GIC_ICDPPISR 0xD00 // PPI Status register
45
46 // just one of these
47 #define ARM_GIC_ICDSGIR 0xF00 // Software Generated Interrupt Register
48
49 //
50 // GIC Cpu interface
51 //
52 #define ARM_GIC_ICCICR 0x00 // CPU Interface Control Register
53 #define ARM_GIC_ICCPMR 0x04 // Interrupt Priority Mask Register
54 #define ARM_GIC_ICCBPR 0x08 // Binary Point Register
55 #define ARM_GIC_ICCIAR 0x0C // Interrupt Acknowledge Register
56 #define ARM_GIC_ICCEIOR 0x10 // End Of Interrupt Register
57 #define ARM_GIC_ICCRPR 0x14 // Running Priority Register
58 #define ARM_GIC_ICCPIR 0x18 // Highest Pending Interrupt Register
59 #define ARM_GIC_ICCABPR 0x1C // Aliased Binary Point Register
60 #define ARM_GIC_ICCIDR 0xFC // Identification Register
61
62 #define ARM_GIC_ICDSGIR_FILTER_TARGETLIST 0x0
63 #define ARM_GIC_ICDSGIR_FILTER_EVERYONEELSE 0x1
64 #define ARM_GIC_ICDSGIR_FILTER_ITSELF 0x2
65
66 // Bit-masks to configure the CPU Interface Control register
67 #define ARM_GIC_ICCICR_ENABLE_SECURE 0x01
68 #define ARM_GIC_ICCICR_ENABLE_NS 0x02
69 #define ARM_GIC_ICCICR_ACK_CTL 0x04
70 #define ARM_GIC_ICCICR_SIGNAL_SECURE_TO_FIQ 0x08
71 #define ARM_GIC_ICCICR_USE_SBPR 0x10
72
73 // Bit Mask for GICC_IIDR
74 #define ARM_GIC_ICCIDR_GET_PRODUCT_ID(IccIdr) (((IccIdr) >> 20) & 0xFFF)
75 #define ARM_GIC_ICCIDR_GET_ARCH_VERSION(IccIdr) (((IccIdr) >> 16) & 0xF)
76 #define ARM_GIC_ICCIDR_GET_REVISION(IccIdr) (((IccIdr) >> 12) & 0xF)
77 #define ARM_GIC_ICCIDR_GET_IMPLEMENTER(IccIdr) ((IccIdr) & 0xFFF)
78
79 //
80 // GIC Secure interfaces
81 //
82 VOID
83 EFIAPI
84 ArmGicSetupNonSecure (
85 IN UINTN MpId,
86 IN INTN GicDistributorBase,
87 IN INTN GicInterruptInterfaceBase
88 );
89
90 VOID
91 EFIAPI
92 ArmGicSetSecureInterrupts (
93 IN UINTN GicDistributorBase,
94 IN UINTN* GicSecureInterruptMask,
95 IN UINTN GicSecureInterruptMaskSize
96 );
97
98 VOID
99 EFIAPI
100 ArmGicEnableInterruptInterface (
101 IN INTN GicInterruptInterfaceBase
102 );
103
104 VOID
105 EFIAPI
106 ArmGicDisableInterruptInterface (
107 IN INTN GicInterruptInterfaceBase
108 );
109
110 VOID
111 EFIAPI
112 ArmGicEnableDistributor (
113 IN INTN GicDistributorBase
114 );
115
116 UINTN
117 EFIAPI
118 ArmGicGetMaxNumInterrupts (
119 IN INTN GicDistributorBase
120 );
121
122 VOID
123 EFIAPI
124 ArmGicSendSgiTo (
125 IN INTN GicDistributorBase,
126 IN INTN TargetListFilter,
127 IN INTN CPUTargetList,
128 IN INTN SgiId
129 );
130
131 RETURN_STATUS
132 EFIAPI
133 ArmGicAcknowledgeInterrupt (
134 IN UINTN GicDistributorBase,
135 IN UINTN GicInterruptInterfaceBase,
136 OUT UINTN *CoreId,
137 OUT UINTN *InterruptId
138 );
139
140 VOID
141 EFIAPI
142 ArmGicEndOfInterrupt (
143 IN UINTN GicInterruptInterfaceBase,
144 IN UINTN Source
145 );
146
147 UINTN
148 EFIAPI
149 ArmGicSetPriorityMask (
150 IN INTN GicInterruptInterfaceBase,
151 IN INTN PriorityMask
152 );
153
154 #endif