/* This file is part of jpcsp. Jpcsp is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Jpcsp 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 for more details. You should have received a copy of the GNU General Public License along with Jpcsp. If not, see <http://www.gnu.org/licenses/>. */ package jpcsp.HLE.modules; import static jpcsp.HLE.TPointer.NULL; import static jpcsp.HLE.kernel.types.SceKernelErrors.ERROR_INVALID_MODE; import static jpcsp.HLE.kernel.types.SceKernelErrors.ERROR_POWER_VMEM_IN_USE; import jpcsp.HLE.CanBeNull; import jpcsp.HLE.HLEFunction; import jpcsp.HLE.HLELogging; import jpcsp.HLE.HLEModule; import jpcsp.HLE.TPointer32; import jpcsp.HLE.Modules; import jpcsp.HLE.kernel.Managers; import jpcsp.HLE.kernel.types.SceKernelSemaInfo; import jpcsp.hardware.Screen; import org.apache.log4j.Logger; public class sceSuspendForUser extends HLEModule { public static Logger log = Modules.getLogger("sceSuspendForUser"); public static final int KERNEL_POWER_TICK_SUSPEND_AND_DISPLAY = 0; public static final int KERNEL_POWER_TICK_SUSPEND = 1; public static final int KERNEL_POWER_TICK_DISPLAY = 6; protected SceKernelSemaInfo volatileMemSema; protected static final int volatileMemSignal = 1; @Override public void start() { super.start(); volatileMemSema = Managers.semas.hleKernelCreateSema("ScePowerVmem", 0, volatileMemSignal, volatileMemSignal, NULL); } protected int hleKernelVolatileMemLock(int type, TPointer32 paddr, TPointer32 psize, boolean trylock) { if (type != 0) { log.warn(String.format("hleKernelVolatileMemLock bad param type=%d", type)); return ERROR_INVALID_MODE; } paddr.setValue(0x08400000); // Volatile mem is always at 0x08400000 psize.setValue(0x400000); // Volatile mem size is 4Megs if (trylock) { if (Managers.semas.hleKernelPollSema(volatileMemSema, volatileMemSignal) != 0) { // Volatile mem is already locked return ERROR_POWER_VMEM_IN_USE; } return 0; } // If the volatile mem is already locked, the current thread has to wait // until it is unlocked. return Managers.semas.hleKernelWaitSema(volatileMemSema, volatileMemSignal, TPointer32.NULL, false); } public int hleKernelPowerTick(int flag) { // The PSP is checking each of the lower 8 bits of the flag value to tick different // components. // Here we check only a few known bits... if ((flag & KERNEL_POWER_TICK_SUSPEND) == KERNEL_POWER_TICK_SUSPEND) { if (log.isTraceEnabled()) { log.trace("IGNORING:sceKernelPowerTick(KERNEL_POWER_TICK_SUSPEND)"); } } if ((flag & KERNEL_POWER_TICK_DISPLAY) == KERNEL_POWER_TICK_DISPLAY) { Screen.hleKernelPowerTick(); if (log.isTraceEnabled()) { log.trace("IGNORING:sceKernelPowerTick(KERNEL_POWER_TICK_DISPLAY)"); } } if (flag == KERNEL_POWER_TICK_SUSPEND_AND_DISPLAY) { Screen.hleKernelPowerTick(); if (log.isTraceEnabled()) { log.trace("IGNORING:sceKernelPowerTick(KERNEL_POWER_TICK_SUSPEND_AND_DISPLAY)"); } } return 0; } @HLELogging(level="trace") @HLEFunction(nid = 0xEADB1BD7, version = 150, checkInsideInterrupt = true) public int sceKernelPowerLock(int type) { return 0; } @HLELogging(level="trace") @HLEFunction(nid = 0x3AEE7261, version = 150, checkInsideInterrupt = true) public int sceKernelPowerUnlock(int type) { return 0; } @HLELogging(level="trace") @HLEFunction(nid = 0x090CCB3F, version = 150, checkInsideInterrupt = true) public int sceKernelPowerTick(int flag) { return hleKernelPowerTick(flag); } @HLEFunction(nid = 0x3E0271D3, version = 150, checkInsideInterrupt = true) public int sceKernelVolatileMemLock(int type, @CanBeNull TPointer32 paddr, @CanBeNull TPointer32 psize) { return hleKernelVolatileMemLock(type, paddr, psize, false); } @HLEFunction(nid = 0xA14F40B2, version = 150) public int sceKernelVolatileMemTryLock(int type, @CanBeNull TPointer32 paddr, @CanBeNull TPointer32 psize) { return hleKernelVolatileMemLock(type, paddr, psize, true); } @HLEFunction(nid = 0xA569E425, version = 150) public int sceKernelVolatileMemUnlock(int type) { if (type != 0) { log.warn(String.format("sceKernelVolatileMemUnlock bad param type=%d", type)); return ERROR_INVALID_MODE; } return Managers.semas.hleKernelSignalSema(volatileMemSema, volatileMemSignal); } }