/* * 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 . */ #pragma once #include "gicv2.h" #include "spinlock.h" #include "exceptions.h" #include "utils.h" #include "platform/interrupt_config.h" #include "memory_map.h" #define IRQ_PRIORITY_HOST 0 #define IRQ_PRIORITY_GUEST 1 #define IRQ_CFGR_SHIFT(id) (2*((id) % 16)) typedef struct IrqManager { RecursiveSpinlock lock; u16 numSharedInterrupts; u8 priorityShift; u8 numPriorityLevels; u8 numCpuInterfaces; u8 numListRegisters; } IrqManager; typedef enum ThermosphereSgi { ThermosphereSgi_ExecuteFunction = 0, ThermosphereSgi_VgicUpdate = 1, ThermosphereSgi_DebugPause = 2, ThermosphereSgi_Max, } ThermosphereSgi; static volatile ArmGicV2Distributor *const gicd = (volatile ArmGicV2Distributor *)MEMORY_MAP_VA_GICD; static volatile ArmGicV2Controller *const gicc = (volatile ArmGicV2Controller *)MEMORY_MAP_VA_GICC; static volatile ArmGicV2VirtualInterfaceController *const gich = (volatile ArmGicV2VirtualInterfaceController *)MEMORY_MAP_VA_GICH; extern IrqManager g_irqManager; void initIrq(void); void configureInterrupt(u16 id, u8 prio, bool isLevelSensitive); bool irqIsGuest(u16 id); void irqSetAffinity(u16 id, u8 affinityMask); static inline void generateSgiForAllOthers(ThermosphereSgi id) { gicd->sgir = (1 << 24) | ((u32)id & 0xF); } static inline void generateSgiForSelf(ThermosphereSgi id) { gicd->sgir = (2 << 24) | ((u32)id & 0xF); } static inline void generateSgiForList(ThermosphereSgi id, u32 list) { gicd->sgir = (0 << 24) | (list << 16) | ((u32)id & 0xF); } static inline void generateSgiForAll(ThermosphereSgi id) { generateSgiForList(id, MASK(g_irqManager.numCpuInterfaces)); }