2012-11-01 15:19:01 +00:00
|
|
|
// Copyright (c) 2012- PPSSPP Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
2012-11-04 22:01:49 +00:00
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
// This program is distributed in the hope that 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 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official git repository and contact information can be found at
|
|
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
enum PSPInterrupt {
|
|
|
|
PSP_GPIO_INTR = 4,
|
|
|
|
PSP_ATA_INTR = 5,
|
|
|
|
PSP_UMD_INTR = 6,
|
|
|
|
PSP_MSCM0_INTR = 7,
|
|
|
|
PSP_WLAN_INTR = 8,
|
|
|
|
PSP_AUDIO_INTR = 10,
|
|
|
|
PSP_I2C_INTR = 12,
|
|
|
|
PSP_SIRS_INTR = 14,
|
|
|
|
PSP_SYSTIMER0_INTR = 15,
|
|
|
|
PSP_SYSTIMER1_INTR = 16,
|
|
|
|
PSP_SYSTIMER2_INTR = 17,
|
|
|
|
PSP_SYSTIMER3_INTR = 18,
|
|
|
|
PSP_THREAD0_INTR = 19,
|
|
|
|
PSP_NAND_INTR = 20,
|
|
|
|
PSP_DMACPLUS_INTR = 21,
|
|
|
|
PSP_DMA0_INTR = 22,
|
|
|
|
PSP_DMA1_INTR = 23,
|
|
|
|
PSP_MEMLMD_INTR = 24,
|
|
|
|
PSP_GE_INTR = 25,
|
|
|
|
PSP_VBLANK_INTR = 30,
|
|
|
|
PSP_MECODEC_INTR = 31,
|
|
|
|
PSP_HPREMOTE_INTR = 36,
|
|
|
|
PSP_MSCM1_INTR = 60,
|
|
|
|
PSP_MSCM2_INTR = 61,
|
|
|
|
PSP_THREAD1_INTR = 65,
|
|
|
|
PSP_INTERRUPT_INTR = 66,
|
|
|
|
PSP_NUMBER_INTERRUPTS = 67
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// These are invented for PPSSPP:
|
|
|
|
enum PSPGeSubInterrupts {
|
|
|
|
PSP_GE_SUBINTR_FINISH = 14,
|
|
|
|
PSP_GE_SUBINTR_SIGNAL = 15
|
|
|
|
};
|
|
|
|
|
|
|
|
bool __IsInInterrupt();
|
|
|
|
void __InterruptsInit();
|
|
|
|
void __InterruptsShutdown();
|
2012-11-06 17:14:09 +00:00
|
|
|
void __TriggerInterrupt(PSPInterrupt intno, int subInterrupts = -1);
|
|
|
|
void __TriggerInterruptWithArg(PSPInterrupt intno, int subintr, int arg); // For GE "callbacks"
|
|
|
|
bool __RunOnePendingInterrupt();
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
void _sceKernelReturnFromInterrupt();
|
|
|
|
u32 sceKernelRegisterSubIntrHandler(u32 intrNumber, u32 subIntrNumber, u32 handler, u32 handlerArg);
|
|
|
|
|
|
|
|
void Register_Kernel_Library();
|
|
|
|
void Register_InterruptManager();
|
|
|
|
|