1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-12-20 09:22:11 +00:00
Atmosphere/thermosphere/src/vgic.c

989 lines
32 KiB
C
Raw Normal View History

2019-08-17 23:40:47 +01:00
/*
* Copyright (c) 2019 Atmosphère-NX
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
* version 2, as published by the Free Software Foundation.
*
* This program is distributed in the hope it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "vgic.h"
#include "irq.h"
#include "utils.h"
#include "core_ctx.h"
#include "debug_log.h"
#define MAX_NUM_INTERRUPTS (512 - 32 + 32 * 4)
#define VIRQLIST_END_ID MAX_NUM_INTERRUPTS
#define VIRQLIST_INVALID_ID (VIRQLIST_END_ID + 1)
2019-08-17 23:40:47 +01:00
#define GICDOFF(field) (offsetof(ArmGicV2Distributor, field))
typedef struct VirqState {
u32 listPrev : 10;
u32 listNext : 10;
u8 priority : 5;
bool pending : 1;
bool active : 1;
bool handled : 1;
bool pendingLatch : 1;
u32 coreId : 3; // up to 8 cores, but not implemented yet
} VirqState;
typedef struct VirqStateList {
VirqState *first, *last;
size_t size;
} VirqStateList;
// Note: we reset the GIC from wakeup-from-sleep, and expect the guest OS to save/restore state if needed
static VirqState TEMPORARY g_virqStates[MAX_NUM_INTERRUPTS] = { 0 };
static VirqStateList TEMPORARY g_virqPendingQueue = { NULL };
static u8 TEMPORARY g_vgicIncomingSgiPendingSources[4][32] = { { 0 } };
static u64 TEMPORARY g_vgicUsedLrMap[4] = { 0 };
2019-08-17 23:40:47 +01:00
static bool TEMPORARY g_vgicIsDistributorEnabled = false;
2019-08-17 23:40:47 +01:00
static inline VirqState *vgicGetVirqState(u32 coreId, u16 id)
{
if (id >= 32) {
return &g_virqStates[id];
} else {
return &g_virqStates[512 - 32 + 32 * coreId + id];
}
}
static inline VirqState *vgicGetNextQueuedVirqState(VirqState *cur)
{
return &g_virqStates[cur->listNext];
}
static inline VirqState *vgicGetPrevQueuedVirqState(VirqState *cur)
{
return &g_virqStates[cur->listPrev];
}
static inline VirqState *vgicGetQueueEnd(void)
{
return &g_virqStates[VIRQLIST_END_ID];
}
static inline bool vgicIsStateQueued(VirqState *state)
{
return state->listPrev != VIRQLIST_INVALID_ID && state->listNext != VIRQLIST_INVALID_ID;
2019-08-17 23:40:47 +01:00
}
static inline u32 vgicGetVirqStateIndex(VirqState *cur)
{
return (u32)(cur - &g_virqStates[0]);
}
static inline u16 vgicGetVirqStateInterruptId(VirqState *cur)
{
u32 idx = vgicGetVirqStateIndex(cur);
if (idx >= 512 - 32) {
2019-08-17 23:40:47 +01:00
return (idx - 512 + 32) % 32;
} else {
return 32 + idx;
2019-08-17 23:40:47 +01:00
}
}
static inline u32 vgicGetVirqStateCoreId(VirqState *cur)
{
u32 idx = vgicGetVirqStateIndex(cur);
if (vgicGetVirqStateInterruptId(cur) < 32) {
return (idx - 512 + 32) / 32;
} else {
return cur->coreId;
}
}
static inline u32 vgicGetSgiCurrentSourceCoreId(VirqState *cur)
{
return cur->coreId;
}
// export symbol to avoid build warnings
void vgicDebugPrintList(VirqStateList *list)
{
(void)list;
DEBUG("[");
for (VirqState *pos = list->first; pos != vgicGetQueueEnd(); pos = vgicGetNextQueuedVirqState(pos)) {
DEBUG("%u,", vgicGetVirqStateIndex(pos));
}
DEBUG("]\n");
}
// export symbol to avoid build warnings
void vgicDebugPrintLrList(void)
{
DEBUG("core %u lr [", currentCoreCtx->coreId);
for (u32 i = 0; i < g_irqManager.numListRegisters; i++) {
if (g_vgicUsedLrMap[currentCoreCtx->coreId] & BITL(i)) {
DEBUG("%u,", vgicGetVirqStateIndex(vgicGetVirqState(currentCoreCtx->coreId, g_irqManager.gic.gich->lr[i].virtualId)));
} else {
DEBUG("-,");
}
}
DEBUG("]\n");
}
2019-08-17 23:40:47 +01:00
// Note: ordered by priority
static void vgicEnqueueVirqState(VirqStateList *list, VirqState *elem)
{
VirqState *pos;
if (elem->listNext != VIRQLIST_INVALID_ID || elem->listPrev != VIRQLIST_INVALID_ID) {
PANIC("vgicEnqueueVirqState: unsanitized argument\n");
}
2019-08-17 23:40:47 +01:00
++list->size;
// Empty list
if (list->first == vgicGetQueueEnd()) {
list->first = list->last = elem;
elem->listPrev = elem->listNext = VIRQLIST_END_ID;
2019-08-17 23:40:47 +01:00
return;
}
for (pos = list->first; pos != vgicGetQueueEnd(); pos = vgicGetNextQueuedVirqState(pos)) {
// Lowest priority number is higher
if (elem->priority <= pos->priority) {
break;
}
}
if (pos == vgicGetQueueEnd()) {
// Insert after last
pos = list->last;
elem->listPrev = vgicGetVirqStateIndex(pos);
elem->listNext = pos->listNext;
pos->listNext = vgicGetVirqStateIndex(elem);
list->last = elem;
} else {
// Otherwise, insert before
u32 idx = vgicGetVirqStateIndex(elem);
u32 posidx = vgicGetVirqStateIndex(pos);
u32 previdx = pos->listPrev;
elem->listNext = posidx;
elem->listPrev = previdx;
pos->listPrev = idx;
if (pos == list->first) {
list->first = elem;
} else {
VirqState *prev = vgicGetPrevQueuedVirqState(pos);
prev->listNext = idx;
}
}
}
static void vgicDequeueVirqState(VirqStateList *list, VirqState *elem)
{
VirqState *prev = vgicGetPrevQueuedVirqState(elem);
VirqState *next = vgicGetNextQueuedVirqState(elem);
if (!vgicIsStateQueued(elem)) {
PANIC("vgicDequeueVirqState: invalid id %x\n", vgicGetVirqStateIndex(elem));
}
2019-08-17 23:40:47 +01:00
--list->size;
if (prev != vgicGetQueueEnd()) {
prev->listNext = elem->listNext;
} else {
list->first = next;
}
if (next != vgicGetQueueEnd()) {
next->listPrev = elem->listPrev;
} else {
list->last = prev;
}
elem->listPrev = elem->listNext = VIRQLIST_INVALID_ID;
2019-08-17 23:40:47 +01:00
}
static inline void vgicNotifyOtherCoreList(u32 coreList)
{
coreList &= ~BIT(currentCoreCtx->coreId);
if (coreList != 0) {
generateSgiForList(ThermosphereSgi_VgicUpdate, coreList);
}
2019-08-17 23:40:47 +01:00
}
static inline bool vgicIsVirqEdgeTriggered(u16 id)
{
// Note: banked per CPU for SGIs and PPIs
// SGIs are *always* edge-triggered, and we decide to keep all PPIs level-sensitive at all times.
if (id < 16) {
return true;
} else {
return (g_irqManager.gic.gicd->icfgr[id / 16] & (2 << (id % 16))) != 0;
}
}
static inline bool vgicIsVirqPending(VirqState *state)
{
// In case we emulate ispendr in the future...
// Note: this function is not 100% reliable. The interrupt might be active-not-pending or inactive
// but it shouldn't matter since where we use it, it would only cause one extraneous SGI.
return state->pendingLatch || (!vgicIsVirqEdgeTriggered(vgicGetVirqStateInterruptId(state)) && state->pending);
}
static inline void vgicSetVirqPendingState(VirqState *state, bool val)
2019-08-17 23:40:47 +01:00
{
if (!vgicIsVirqEdgeTriggered(vgicGetVirqStateInterruptId(state))) {
state->pending = val;
} else {
state->pendingLatch = val;
}
}
//////////////////////////////////////////////////
static void vgicSetDistributorControlRegister(u32 value)
{
// We implement a virtual distributor/interface w/o security extensions.
// Moreover, we forward all interrupts as Group 0 so that non-secure code that assumes GICv2
// *with* security extensions (and thus all interrupts fw as group 1 there) still works (bit are in the same positions).
// We don't implement Group 1 interrupts, either (so that's similar to GICv1).
bool old = g_vgicIsDistributorEnabled;
g_vgicIsDistributorEnabled = (value & 1) != 0;
2019-08-17 23:40:47 +01:00
// Enable bit is actually just a global enable bit for all irq forwarding, other functions of the GICD aren't affected by it
if (old != g_vgicIsDistributorEnabled) {
2019-08-17 23:40:47 +01:00
generateSgiForAllOthers(ThermosphereSgi_VgicUpdate);
}
}
static inline u32 vgicGetDistributorControlRegister(void)
{
return g_vgicIsDistributorEnabled ? 1 : 0;
2019-08-17 23:40:47 +01:00
}
static inline u32 vgicGetDistributorTypeRegister(void)
{
// See above comment.
// Therefore, LSPI = 0, SecurityExtn = 0, rest = from physical distributor
return g_irqManager.gic.gicd->typer & 0x7F;
}
static inline u32 vgicGetDistributorImplementerIdentificationRegister(void)
{
u32 iidr = ((u32)'A' << 24); // Product Id: Atmosphère (?)
iidr |= 1 << 16; // Major revision 1
iidr |= 0 << 12; // Minor revision 0
iidr |= 0x43B; // Implementer: Arm (value copied from physical GICD)
return iidr;
}
static void vgicSetInterruptEnabledState(u16 id)
{
if (id < 16 || !irqIsGuest(id) || irqIsEnabled(id)) {
2019-08-17 23:40:47 +01:00
// Nothing to do...
// Also, ignore for SGIs
return;
}
// Similar effects to setting the target list to non-0 when it was 0...
VirqState *state = vgicGetVirqState(currentCoreCtx->coreId, id);
if (vgicIsVirqPending(state)) {
vgicNotifyOtherCoreList(g_irqManager.gic.gicd->itargetsr[id]);
}
g_irqManager.gic.gicd->isenabler[id / 32] |= BIT(id % 32);
2019-08-17 23:40:47 +01:00
}
static void vgicClearInterruptEnabledState(u16 id)
{
if (id < 16 || !irqIsGuest(id) || !irqIsEnabled(id)) {
2019-08-17 23:40:47 +01:00
// Nothing to do...
// Also, ignore for SGIs
return;
}
// Similar effects to setting the target list to 0, we may need to notify the core
// handling the interrupt if it's pending
VirqState *state = vgicGetVirqState(currentCoreCtx->coreId, id);
if (state->handled) {
vgicNotifyOtherCoreList(BIT(vgicGetVirqStateCoreId(state)));
}
g_irqManager.gic.gicd->icenabler[id / 32] |= ~BIT(id % 32);
2019-08-17 23:40:47 +01:00
}
static inline bool vgicGetInterruptEnabledState(u16 id)
{
// SGIs are always enabled
return id < 16 || (irqIsGuest(id) && irqIsEnabled(id));
2019-08-17 23:40:47 +01:00
}
static void vgicSetInterruptPriorityByte(u16 id, u8 priority)
{
if (!irqIsGuest(id)) {
return;
}
2019-08-17 23:40:47 +01:00
// 32 priority levels max, bits [7:3]
priority >>= 3;
priority &= 0x1F;
2019-12-23 20:12:02 +00:00
if (id >= 16) {
// Ensure we have the correct priority on the physical distributor...
g_irqManager.gic.gicd->ipriorityr[id] = IRQ_PRIORITY_GUEST << g_irqManager.priorityShift;
}
2019-08-17 23:40:47 +01:00
VirqState *state = vgicGetVirqState(currentCoreCtx->coreId, id);
if (priority == state->priority) {
// Nothing to do...
return;
}
2019-08-17 23:40:47 +01:00
state->priority = priority;
u32 targets = g_irqManager.gic.gicd->itargetsr[id];
if (targets != 0 && vgicIsVirqPending(state)) {
vgicNotifyOtherCoreList(targets);
}
}
static inline u8 vgicGetInterruptPriorityByte(u16 id)
{
return irqIsGuest(id) ? vgicGetVirqState(currentCoreCtx->coreId, id)->priority << 3 : 0;
2019-08-17 23:40:47 +01:00
}
static void vgicSetInterruptTargets(u16 id, u8 coreList)
{
// Ignored for SGIs and PPIs, and non-guest interrupts
if (id < 32 || !irqIsGuest(id)) {
2019-08-17 23:40:47 +01:00
return;
}
// Interrupt not pending (inactive or active-only): nothing much to do (see reference manual)
// Otherwise, we may need to migrate the interrupt.
// In our model, while a physical interrupt can be pending on multiple cores, we decide that a pending SPI
// can only be handled on a single core (either it's in a LR, or in the global list), therefore we need to
// send a signal to (oldList XOR newList) to either put the interrupt back in the global list or potentially handle it
// Note that we take into account that the interrupt may be disabled.
VirqState *state = vgicGetVirqState(currentCoreCtx->coreId, id);
if (vgicIsVirqPending(state)) {
u8 oldList = g_irqManager.gic.gicd->itargetsr[id];
u8 diffList = (oldList ^ coreList) & getActiveCoreMask();
if (diffList != 0) {
vgicNotifyOtherCoreList(diffList);
}
}
g_irqManager.gic.gicd->itargetsr[id] = coreList;
}
static inline u8 vgicGetInterruptTargets(u16 id)
{
// For SGIs & PPIs, itargetsr is banked and contains the CPU ID
return (id < 32 || irqIsGuest(id)) ? g_irqManager.gic.gicd->itargetsr[id] : 0;
2019-08-17 23:40:47 +01:00
}
2020-01-02 23:29:37 +00:00
static inline void vgicSetInterruptConfigBits(u16 id, u32 config)
2019-08-17 23:40:47 +01:00
{
// Ignored for SGIs, implementation defined for PPIs
if (id < 32 || !irqIsGuest(id)) {
2019-08-17 23:40:47 +01:00
return;
}
u32 cfg = g_irqManager.gic.gicd->icfgr[id / 16];
cfg &= ~(3 << (id % 16));
cfg |= (config & 2) << (id % 16);
g_irqManager.gic.gicd->icfgr[id / 16] = cfg;
}
2020-01-02 23:29:37 +00:00
static inline u32 vgicGetInterruptConfigBits(u16 id, u32 config)
2019-08-17 23:40:47 +01:00
{
return (irqIsGuest(id) && vgicIsVirqEdgeTriggered(id)) ? 2 : 0;
2019-08-17 23:40:47 +01:00
}
static void vgicSetSgiPendingState(u16 id, u32 coreId, u32 srcCoreId)
{
//DEBUG("EL2 [core %u]: sending vSGI %hu to core %u\n", srcCoreId, id, coreId);
VirqState *state = vgicGetVirqState(coreId, id);
g_vgicIncomingSgiPendingSources[coreId][id] |= BIT(srcCoreId);
if (!state->handled && !vgicIsStateQueued(state)) {
// The SGI was inactive on the target core...
2019-08-17 23:40:47 +01:00
state->pendingLatch = true;
state->coreId = srcCoreId;
g_vgicIncomingSgiPendingSources[coreId][id] &= ~BIT(srcCoreId);
2019-08-17 23:40:47 +01:00
vgicEnqueueVirqState(&g_virqPendingQueue, state);
vgicNotifyOtherCoreList(BIT(coreId));
}
}
static void vgicSendSgi(u16 id, u32 filter, u32 coreList)
{
switch (filter) {
case 0:
// Forward to coreList
break;
case 1:
// Forward to all but current core
coreList = getActiveCoreMask() & ~BIT(currentCoreCtx->coreId);
break;
case 2:
// Forward to current core only
coreList = BIT(currentCoreCtx->coreId);
break;
default:
DEBUG("Emulated GCID_SGIR: invalid TargetListFilter value!\n");
return;
}
2019-12-23 20:12:02 +00:00
coreList &= getActiveCoreMask();
2019-08-17 23:40:47 +01:00
FOREACH_BIT(tmp, dstCore, coreList) {
vgicSetSgiPendingState(id, dstCore, currentCoreCtx->coreId);
}
}
static inline u32 vgicGetPeripheralId2Register(void)
{
// 2 for Gicv2
return 2 << 4;
}
static void handleVgicMmioWrite(ExceptionStackFrame *frame, DataAbortIss dabtIss, size_t offset)
{
size_t sz = BITL(dabtIss.sas);
u32 val = (u32)(readFrameRegisterZ(frame, dabtIss.srt) & MASKL(8 * sz));
2019-08-17 23:40:47 +01:00
uintptr_t addr = (uintptr_t)g_irqManager.gic.gicd + offset;
//DEBUG("gicd write off 0x%03llx sz %lx val %x w%d\n", offset, sz, val, (int)dabtIss.srt);
2019-12-23 20:12:02 +00:00
2019-08-17 23:40:47 +01:00
switch (offset) {
case GICDOFF(typer):
case GICDOFF(iidr):
case GICDOFF(icpidr2):
case GICDOFF(itargetsr) ... GICDOFF(itargetsr) + 31:
// Write ignored (read-only registers)
break;
case GICDOFF(icfgr) ... GICDOFF(icfgr) + 31/4:
// Write ignored because of an implementation-defined choice
break;
2020-01-02 23:29:37 +00:00
case GICDOFF(igroupr) ... GICDOFF(igroupr) + 1023/8:
2019-08-17 23:40:47 +01:00
// Write ignored because we don't implement Group 1 here
break;
2020-01-02 23:29:37 +00:00
case GICDOFF(ispendr) ... GICDOFF(ispendr) + 1023/8:
case GICDOFF(icpendr) ... GICDOFF(icpendr) + 1023/8:
case GICDOFF(isactiver) ... GICDOFF(isactiver) + 1023/8:
case GICDOFF(icactiver) ... GICDOFF(icactiver) + 1023/8:
case GICDOFF(cpendsgir) ... GICDOFF(cpendsgir) + 15:
case GICDOFF(spendsgir) ... GICDOFF(spendsgir) + 15:
2019-08-17 23:40:47 +01:00
// Write ignored, not implemented (at least not yet, TODO)
break;
case GICDOFF(ctlr):
vgicSetDistributorControlRegister(val);
break;
2020-01-02 23:29:37 +00:00
case GICDOFF(isenabler) ... GICDOFF(isenabler) + 1023/8: {
2019-08-17 23:40:47 +01:00
u32 base = 32 * (offset - GICDOFF(isenabler));
FOREACH_BIT(tmp, pos, val) {
vgicSetInterruptEnabledState((u16)(base + pos));
}
break;
}
2020-01-02 23:29:37 +00:00
case GICDOFF(icenabler) ... GICDOFF(icenabler) + 1023/8: {
2019-08-17 23:40:47 +01:00
u32 base = 32 * (offset - GICDOFF(icenabler));
FOREACH_BIT(tmp, pos, val) {
vgicClearInterruptEnabledState((u16)(base + pos));
}
break;
}
2020-01-02 23:29:37 +00:00
case GICDOFF(ipriorityr) ... GICDOFF(ipriorityr) + 1023: {
2019-08-17 23:40:47 +01:00
u16 base = (u16)(offset - GICDOFF(ipriorityr));
for (u16 i = 0; i < sz; i++) {
vgicSetInterruptPriorityByte(base + i, (u8)val);
val >>= 8;
}
break;
}
2020-01-02 23:29:37 +00:00
case GICDOFF(itargetsr) + 32 ... GICDOFF(itargetsr) + 1023: {
2019-08-17 23:40:47 +01:00
u16 base = (u16)(offset - GICDOFF(itargetsr));
for (u16 i = 0; i < sz; i++) {
vgicSetInterruptTargets(base + i, (u8)val);
val >>= 8;
}
break;
}
2020-01-02 23:29:37 +00:00
case GICDOFF(icfgr) + 32/4 ... GICDOFF(icfgr) + 1023/4: {
u16 base = (u16)((offset & 0xFF) / 2);
for (u16 i = 0; i < 16; i++) {
vgicSetInterruptConfigBits(base + i, val & 3);
val >>= 2;
}
break;
}
2019-08-17 23:40:47 +01:00
case GICDOFF(sgir):
vgicSendSgi((u16)(val & 0xF), (val >> 24) & 3, (val >> 16) & 0xFF);
break;
default:
dumpUnhandledDataAbort(dabtIss, addr, "GICD reserved/implementation-defined register");
break;
}
}
static void handleVgicMmioRead(ExceptionStackFrame *frame, DataAbortIss dabtIss, size_t offset)
{
size_t sz = BITL(dabtIss.sas);
uintptr_t addr = (uintptr_t)g_irqManager.gic.gicd + offset;
u32 val = 0;
2019-12-23 20:12:02 +00:00
//DEBUG("gicd read off 0x%03llx sz %lx\n", offset, sz);
2019-08-17 23:40:47 +01:00
switch (offset) {
case GICDOFF(icfgr) ... GICDOFF(icfgr) + 31/4:
// RAZ because of an implementation-defined choice
break;
2020-01-02 23:29:37 +00:00
case GICDOFF(igroupr) ... GICDOFF(igroupr) + 1023/8:
2019-08-17 23:40:47 +01:00
// RAZ because we don't implement Group 1 here
break;
2020-01-02 23:29:37 +00:00
case GICDOFF(ispendr) ... GICDOFF(ispendr) + 1023/8:
case GICDOFF(icpendr) ... GICDOFF(icpendr) + 1023/8:
case GICDOFF(isactiver) ... GICDOFF(isactiver) + 1023/8:
case GICDOFF(icactiver) ... GICDOFF(icactiver) + 1023/8:
case GICDOFF(cpendsgir) ... GICDOFF(cpendsgir) + 15:
case GICDOFF(spendsgir) ... GICDOFF(spendsgir) + 15:
2019-08-17 23:40:47 +01:00
// RAZ, not implemented (at least not yet, TODO)
break;
case GICDOFF(ctlr):
val = vgicGetDistributorControlRegister();
break;
case GICDOFF(typer):
val = vgicGetDistributorTypeRegister();
break;
case GICDOFF(iidr):
val = vgicGetDistributorImplementerIdentificationRegister();
break;
2020-01-02 23:29:37 +00:00
case GICDOFF(isenabler) ... GICDOFF(isenabler) + 1023/8:
case GICDOFF(icenabler) ... GICDOFF(icenabler) + 1023/8: {
2019-08-17 23:40:47 +01:00
u16 base = (u16)(32 * (offset & 0x7F));
for (u16 i = 0; i < 32; i++) {
val |= vgicGetInterruptEnabledState(base + i) ? BIT(i) : 0;
}
break;
}
2020-01-02 23:29:37 +00:00
case GICDOFF(ipriorityr) ... GICDOFF(ipriorityr) + 1023: {
2019-08-17 23:40:47 +01:00
u16 base = (u16)(offset - GICDOFF(ipriorityr));
for (u16 i = 0; i < sz; i++) {
val |= vgicGetInterruptPriorityByte(base + i) << (8 * i);
}
break;
}
2020-01-02 23:29:37 +00:00
case GICDOFF(itargetsr) ... GICDOFF(itargetsr) + 1023: {
2019-08-17 23:40:47 +01:00
u16 base = (u16)(offset - GICDOFF(itargetsr));
for (u16 i = 0; i < sz; i++) {
val |= (u32)vgicGetInterruptTargets(base + i) << (8 * i);
}
break;
}
2020-01-02 23:29:37 +00:00
case GICDOFF(icfgr) + 32/4 ... GICDOFF(icfgr) + 1023/4: {
u16 base = (u16)((offset & 0xFF) / 2);
for (u16 i = 0; i < 16; i++) {
val |= vgicGetInterruptConfigBits(base + i, val & 3) << (2 * i);
}
break;
}
2019-08-17 23:40:47 +01:00
case GICDOFF(sgir):
// Write-only register
dumpUnhandledDataAbort(dabtIss, addr, "GICD read to write-only register GCID_SGIR");
break;
case GICDOFF(icpidr2):
val = vgicGetPeripheralId2Register();
break;
default:
dumpUnhandledDataAbort(dabtIss, addr, "GICD reserved/implementation-defined register");
break;
}
writeFrameRegisterZ(frame, dabtIss.srt, val);
2019-08-17 23:40:47 +01:00
}
static void vgicCleanupPendingList(void)
{
VirqState *node, *next;
u16 id;
bool pending;
u32 coreId;
for (node = g_virqPendingQueue.first; node != vgicGetQueueEnd(); node = next) {
next = vgicGetNextQueuedVirqState(node);
// For SGIs, check the pending bits
id = vgicGetVirqStateInterruptId(node);
coreId = vgicGetVirqStateCoreId(node);
if (id < 16) {
pending = true;
2019-08-17 23:40:47 +01:00
} else if (!vgicIsVirqEdgeTriggered(id)) {
// For hardware interrupts, we have kept the interrupt active on the physical GICD
// For level-sensitive interrupts, we need to check if they're also still physically pending (resampling).
// If not, there's nothing to service anymore, and therefore we have to deactivate them, so that
// we're notified when they become pending again.
// Note: we can't touch PPIs for other cores... but each core will call this function anyway.
if (id >= 32 || coreId == currentCoreCtx->coreId) {
u32 mask = g_irqManager.gic.gicd->ispendr[id / 32] & BIT(id % 32);
2019-08-17 23:40:47 +01:00
if (mask == 0) {
g_irqManager.gic.gicd->icactiver[id / 32] = mask;
pending = false;
} else {
pending = true;
}
} else {
// Oops, can't handle PPIs of other cores
// Assume interrupt is still pending and call it a day
pending = true;
}
} else {
pending = node->pendingLatch;
}
if (!pending) {
vgicSetVirqPendingState(node, false);
2019-08-17 23:40:47 +01:00
vgicDequeueVirqState(&g_virqPendingQueue, node);
}
}
}
static bool vgicTestInterruptEligibility(VirqState *state)
{
u16 id = vgicGetVirqStateInterruptId(state);
u32 coreId = vgicGetVirqStateCoreId(state);
// Precondition: state still in list
if (id < 32 && coreId != currentCoreCtx->coreId) {
// We can't handle SGIs/PPIs of other cores.
return false;
}
return vgicGetInterruptEnabledState(id) && (id < 32 || (g_irqManager.gic.gicd->itargetsr[id] & BIT(currentCoreCtx->coreId)) != 0);
2019-08-17 23:40:47 +01:00
}
static void vgicChoosePendingInterrupts(size_t *outNumChosen, VirqState *chosen[], size_t maxNum)
2019-08-17 23:40:47 +01:00
{
*outNumChosen = 0;
for (VirqState *node = g_virqPendingQueue.first, *next; node != vgicGetQueueEnd() && *outNumChosen < maxNum; node = next) {
next = vgicGetNextQueuedVirqState(node);
if (vgicTestInterruptEligibility(node)) {
node->handled = true;
vgicDequeueVirqState(&g_virqPendingQueue, node);
chosen[(*outNumChosen)++] = node;
}
}
}
static inline u64 vgicGetElrsrRegister(void)
{
return (u64)g_irqManager.gic.gich->elsr0 | (((u64)g_irqManager.gic.gich->elsr1) << 32);
}
static inline bool vgicIsListRegisterAvailable(u32 id)
{
return (id >= g_irqManager.numListRegisters) && (vgicGetElrsrRegister() & BITL(id));
}
static inline size_t vgicGetNumberOfFreeListRegisters(void)
{
return __builtin_popcountll(vgicGetElrsrRegister());
}
static inline volatile ArmGicV2ListRegister *vgicAllocateListRegister(void)
2019-08-17 23:40:47 +01:00
{
u32 ff = __builtin_ffsll(vgicGetElrsrRegister());
if (ff == 0) {
return NULL;
} else {
g_vgicUsedLrMap[currentCoreCtx->coreId] |= BITL(ff - 1);
return &g_irqManager.gic.gich->lr[ff - 1];
}
2019-08-17 23:40:47 +01:00
}
static void vgicPushListRegisters(VirqState *chosen[], size_t num)
{
2019-12-26 00:33:38 +00:00
for (size_t i = 0; i < num; i++) {
2019-08-17 23:40:47 +01:00
VirqState *state = chosen[i];
u16 irqId = vgicGetVirqStateInterruptId(state);
ArmGicV2ListRegister lr = {0};
lr.grp1 = false; // group0
lr.priority = state->priority;
lr.virtualId = irqId;
// We only add new pending interrupts here...
lr.pending = true;
lr.active = false;
// We don't support guests setting the pending latch, so the logic is probably simpler...
if (irqId < 16) {
// SGI
u32 sourceCoreId = vgicGetSgiCurrentSourceCoreId(state);
lr.physicalId = BIT(9) /* EOI notification bit */ | sourceCoreId;
// ^ IDK how kvm gets away with not setting the EOI notif bits in some cases,
// what they do seems to be prone to drop interrupts, etc.
2019-08-17 23:40:47 +01:00
lr.hw = false; // software
} else {
// Actual physical interrupt
lr.hw = true;
lr.physicalId = irqId;
}
volatile ArmGicV2ListRegister *freeLr = vgicAllocateListRegister();
if (freeLr == NULL) {
DEBUG("EL2: vgicPushListRegisters: no free LR!\n");
}
*freeLr = lr;
2019-08-17 23:40:47 +01:00
}
}
static bool vgicUpdateListRegister(volatile ArmGicV2ListRegister *lr)
{
ArmGicV2ListRegister lrCopy = *lr;
2019-08-17 23:40:47 +01:00
ArmGicV2ListRegister zero = {0};
u16 irqId = lrCopy.virtualId;
// Note: this give priority to multi-SGIs than can be immediately handled
2019-08-17 23:40:47 +01:00
// Update the state
VirqState *state = vgicGetVirqState(currentCoreCtx->coreId, irqId);
u32 srcCoreId = state->coreId;
u32 coreId = currentCoreCtx->coreId;
2019-08-17 23:40:47 +01:00
if (!state->handled) {
PANIC("vgicUpdateListRegister: improper previous state for now pending irq idx %u, active=%d\n", vgicGetVirqStateIndex(state), (int)state->active);
}
state->active = lrCopy.active;
if (lrCopy.active) {
// We don't dequeue active interrupts
if (irqId < 16) {
// We can allow SGIs to be marked active-pending if it's been made pending from the same source again
if (g_vgicIncomingSgiPendingSources[coreId][irqId] & BIT(srcCoreId)) {
lrCopy.pending = true;
g_vgicIncomingSgiPendingSources[coreId][irqId] &= ~BIT(srcCoreId);
}
}
vgicSetVirqPendingState(state, lrCopy.pending);
*lr = lrCopy;
return true;
} else if (lrCopy.pending) {
2019-08-17 23:40:47 +01:00
// New interrupts might have come, pending status might have been changed, etc.
// We need to put the interrupt back in the pending list (which we clean up afterwards)
vgicEnqueueVirqState(&g_virqPendingQueue, state);
state->handled = false;
*lr = zero;
return false;
} else {
if (irqId < 16) {
// Special case for multi-SGIs if they can be immediately handled
if (g_vgicIncomingSgiPendingSources[coreId][irqId] != 0) {
srcCoreId = __builtin_ctz(g_vgicIncomingSgiPendingSources[coreId][irqId]);
state->coreId = srcCoreId;
g_vgicIncomingSgiPendingSources[coreId][irqId] &= ~BIT(srcCoreId);
lrCopy.physicalId = BIT(9) /* EOI notification bit */ | srcCoreId;
lrCopy.pending = true;
*lr = lrCopy;
}
}
if (!lrCopy.pending) {
// Inactive interrupt, cleanup
vgicSetVirqPendingState(state, false);
state->handled = false;
*lr = zero;
return false;
} else {
return true;
}
2019-08-17 23:40:47 +01:00
}
}
void vgicUpdateState(void)
{
volatile ArmGicV2VirtualInterfaceController *gich = g_irqManager.gic.gich;
u32 coreId = currentCoreCtx->coreId;
2019-08-17 23:40:47 +01:00
// First, put back inactive interrupts into the queue, handle some SGI stuff
u64 usedMap = g_vgicUsedLrMap[coreId];
2019-08-17 23:40:47 +01:00
FOREACH_BIT (tmp, pos, usedMap) {
if (!vgicUpdateListRegister(&gich->lr[pos])) {
g_vgicUsedLrMap[coreId] &= ~BITL(pos);
}
2019-08-17 23:40:47 +01:00
}
// Then, clean the list up
vgicCleanupPendingList();
size_t numChosen;
size_t numFreeLr = vgicGetNumberOfFreeListRegisters();
VirqState *chosen[numFreeLr]; // yes this is a VLA, potentially dangerous. Usually max 4 (64 at most)
// Choose interrupts...
vgicChoosePendingInterrupts(&numChosen, chosen, numFreeLr);
2019-08-17 23:40:47 +01:00
// ...and push them
vgicPushListRegisters(chosen, numChosen);
// Apparently, the following is not needed because the GIC generates it for us
2019-08-17 23:40:47 +01:00
// Enable underflow interrupt when appropriate to do so
if (g_irqManager.numListRegisters - vgicGetNumberOfFreeListRegisters() > 1) {
2019-08-17 23:40:47 +01:00
gich->hcr.uie = true;
} else {
gich->hcr.uie = false;
}
}
void vgicMaintenanceInterruptHandler(void)
{
2019-12-26 00:33:38 +00:00
volatile ArmGicV2VirtualInterfaceController *gich = g_irqManager.gic.gich;
2019-08-17 23:40:47 +01:00
2019-12-26 00:33:38 +00:00
ArmGicV2MaintenanceIntStatRegister misr = g_irqManager.gic.gich->misr;
2019-08-17 23:40:47 +01:00
// Force GICV_CTRL to behave like ns-GICC_CTLR, with group 1 being replaced by group 0
2019-12-26 00:33:38 +00:00
// Ensure we aren't spammed by maintenance interrupts, either.
2019-08-17 23:40:47 +01:00
if (misr.vgrp0e || misr.vgrp0d || misr.vgrp1e || misr.vgrp1d) {
g_irqManager.gic.gicv->ctlr &= BIT(9) | BIT(0);
}
2019-12-26 00:33:38 +00:00
if (misr.vgrp0e) {
DEBUG("EL2 [core %d]: Group 0 enabled maintenance interrupt\n", (int)currentCoreCtx->coreId);
2019-12-26 00:33:38 +00:00
gich->hcr.vgrp0eie = false;
gich->hcr.vgrp0die = true;
} else if (misr.vgrp0d) {
DEBUG("EL2 [core %d]: Group 0 disabled maintenance interrupt\n", (int)currentCoreCtx->coreId);
2019-12-26 00:33:38 +00:00
gich->hcr.vgrp0eie = true;
gich->hcr.vgrp0die = false;
}
// Already handled the following 2 above:
2019-12-26 00:33:38 +00:00
if (misr.vgrp1e) {
DEBUG("EL2 [core %d]: Group 1 enabled maintenance interrupt\n", (int)currentCoreCtx->coreId);
}
if (misr.vgrp1d) {
DEBUG("EL2 [core %d]: Group 1 disabled maintenance interrupt\n", (int)currentCoreCtx->coreId);
2019-12-26 00:33:38 +00:00
}
2019-08-17 23:40:47 +01:00
if (misr.lrenp) {
PANIC("EL2 [core %d]: List Register Entry Not Present maintenance interrupt!\n", currentCoreCtx->coreId);
2019-08-17 23:40:47 +01:00
}
if (misr.eoi) {
//DEBUG("EL2 [core %d]: SGI EOI maintenance interrupt\n", currentCoreCtx->coreId);
}
if (misr.u) {
//DEBUG("EL2 [core %d]: Underflow maintenance interrupt\n", currentCoreCtx->coreId);
}
2019-08-17 23:40:47 +01:00
// The rest should be handled by the main loop...
}
2019-12-26 00:33:38 +00:00
2019-08-17 23:40:47 +01:00
void handleVgicdMmio(ExceptionStackFrame *frame, DataAbortIss dabtIss, size_t offset)
{
size_t sz = BITL(dabtIss.sas);
uintptr_t addr = (uintptr_t)g_irqManager.gic.gicd + offset;
bool oops = true;
// ipriorityr, itargetsr, *pendsgir are byte-accessible
if (
!(offset >= GICDOFF(ipriorityr) && offset < GICDOFF(ipriorityr) + 512) &&
!(offset >= GICDOFF(itargetsr) && offset < GICDOFF(itargetsr) + 512) &&
!(offset >= GICDOFF(cpendsgir) && offset < GICDOFF(cpendsgir) + 16) &&
!(offset >= GICDOFF(spendsgir) && offset < GICDOFF(spendsgir) + 16)
) {
if ((offset & 3) != 0 || sz != 4) {
dumpUnhandledDataAbort(dabtIss, addr, "GICD non-word aligned MMIO");
} else {
oops = false;
}
} else {
if (sz != 1 && sz != 4) {
dumpUnhandledDataAbort(dabtIss, addr, "GICD 16 or 64-bit access");
} else if (sz == 4 && (offset & 3) != 0) {
dumpUnhandledDataAbort(dabtIss, addr, "GICD misaligned MMIO");
} else {
oops = false;
}
}
recursiveSpinlockLock(&g_irqManager.lock);
if (dabtIss.wnr && !oops) {
handleVgicMmioWrite(frame, dabtIss, offset);
} else if (!oops) {
handleVgicMmioRead(frame, dabtIss, offset);
}
vgicUpdateState();
2019-08-17 23:40:47 +01:00
recursiveSpinlockUnlock(&g_irqManager.lock);
}
// lock needs to be held by caller
// note, irqId >= 16
void vgicEnqueuePhysicalIrq(u16 irqId)
{
VirqState *state = vgicGetVirqState(currentCoreCtx->coreId, irqId);
vgicSetVirqPendingState(state, true);
2019-08-17 23:40:47 +01:00
vgicEnqueueVirqState(&g_virqPendingQueue, state);
}
void vgicInit(void)
{
if (currentCoreCtx->isBootCore) {
g_virqPendingQueue.first = g_virqPendingQueue.last = vgicGetQueueEnd();
for (u32 i = 0; i < 512 - 32 + 32 * 4; i++) {
g_virqStates[i].listNext = g_virqStates[i].listPrev = VIRQLIST_INVALID_ID;
g_virqStates[i].priority = 0x1F;
2019-08-17 23:40:47 +01:00
}
}
2019-12-26 00:33:38 +00:00
// Deassert vIRQ line, just in case
// Enable a few maintenance interrupts
ArmGicV2HypervisorControlRegister hcr = {
.vgrp1eie = true,
.vgrp0eie = true,
.lrenpie = true,
.en = true,
};
g_irqManager.gic.gich->hcr = hcr;
2019-08-17 23:40:47 +01:00
}