2018-02-26 02:14:58 +01:00
|
|
|
using ChocolArm64.Events;
|
2018-02-05 00:08:20 +01:00
|
|
|
using ChocolArm64.Memory;
|
|
|
|
using ChocolArm64.State;
|
2018-09-19 01:36:43 +02:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-11-28 23:18:09 +01:00
|
|
|
using Ryujinx.Common.Logging;
|
2018-02-05 00:08:20 +01:00
|
|
|
using System;
|
2018-06-11 02:46:42 +02:00
|
|
|
using System.Collections.Generic;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Kernel
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-08-15 20:59:51 +02:00
|
|
|
partial class SvcHandler
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
private delegate void SvcFunc(CpuThreadState threadState);
|
2018-02-17 22:36:08 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
private Dictionary<int, SvcFunc> _svcFuncs;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
private Switch _device;
|
|
|
|
private KProcess _process;
|
|
|
|
private Horizon _system;
|
|
|
|
private MemoryManager _memory;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-09-19 01:36:43 +02:00
|
|
|
private struct HleIpcMessage
|
|
|
|
{
|
2018-12-05 01:52:39 +01:00
|
|
|
public KThread Thread { get; private set; }
|
|
|
|
public KSession Session { get; private set; }
|
|
|
|
public IpcMessage Message { get; private set; }
|
|
|
|
public long MessagePtr { get; private set; }
|
2018-09-19 01:36:43 +02:00
|
|
|
|
|
|
|
public HleIpcMessage(
|
2018-12-06 12:16:24 +01:00
|
|
|
KThread thread,
|
|
|
|
KSession session,
|
|
|
|
IpcMessage message,
|
|
|
|
long messagePtr)
|
2018-09-19 01:36:43 +02:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
Thread = thread;
|
|
|
|
Session = session;
|
|
|
|
Message = message;
|
|
|
|
MessagePtr = messagePtr;
|
2018-09-19 01:36:43 +02:00
|
|
|
}
|
|
|
|
}
|
NvServices refactoring (#120)
* Initial implementation of NvMap/NvHostCtrl
* More work on NvHostCtrl
* Refactoring of nvservices, move GPU Vmm, make Vmm per-process, refactor most gpu devices, move Gpu to Core, fix CbBind
* Implement GetGpuTime, support CancelSynchronization, fix issue on InsertWaitingMutex, proper double buffering support (again, not working properly for commercial games, only hb)
* Try to fix perf regression reading/writing textures, moved syncpts and events to a UserCtx class, delete global state when the process exits, other minor tweaks
* Remove now unused code, add comment about probably wrong result codes
2018-05-07 20:53:23 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
public SvcHandler(Switch device, KProcess process)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
_svcFuncs = new Dictionary<int, SvcFunc>
|
2018-02-14 03:43:08 +01:00
|
|
|
{
|
|
|
|
{ 0x01, SvcSetHeapSize },
|
|
|
|
{ 0x03, SvcSetMemoryAttribute },
|
|
|
|
{ 0x04, SvcMapMemory },
|
2018-02-28 00:45:07 +01:00
|
|
|
{ 0x05, SvcUnmapMemory },
|
2018-02-14 03:43:08 +01:00
|
|
|
{ 0x06, SvcQueryMemory },
|
2018-02-15 13:16:16 +01:00
|
|
|
{ 0x07, SvcExitProcess },
|
2018-11-28 23:18:09 +01:00
|
|
|
{ 0x08, CreateThread64 },
|
2018-02-14 03:43:08 +01:00
|
|
|
{ 0x09, SvcStartThread },
|
2018-03-12 05:04:52 +01:00
|
|
|
{ 0x0a, SvcExitThread },
|
2018-02-14 03:43:08 +01:00
|
|
|
{ 0x0b, SvcSleepThread },
|
|
|
|
{ 0x0c, SvcGetThreadPriority },
|
2018-02-25 19:58:16 +01:00
|
|
|
{ 0x0d, SvcSetThreadPriority },
|
2018-06-10 06:36:07 +02:00
|
|
|
{ 0x0e, SvcGetThreadCoreMask },
|
2018-11-28 23:18:09 +01:00
|
|
|
{ 0x0f, SetThreadCoreMask64 },
|
2018-04-05 00:16:59 +02:00
|
|
|
{ 0x10, SvcGetCurrentProcessorNumber },
|
2018-09-23 20:11:46 +02:00
|
|
|
{ 0x11, SignalEvent64 },
|
|
|
|
{ 0x12, ClearEvent64 },
|
2018-02-14 03:43:08 +01:00
|
|
|
{ 0x13, SvcMapSharedMemory },
|
|
|
|
{ 0x14, SvcUnmapSharedMemory },
|
|
|
|
{ 0x15, SvcCreateTransferMemory },
|
|
|
|
{ 0x16, SvcCloseHandle },
|
2018-09-23 20:11:46 +02:00
|
|
|
{ 0x17, ResetSignal64 },
|
2018-02-14 03:43:08 +01:00
|
|
|
{ 0x18, SvcWaitSynchronization },
|
NvServices refactoring (#120)
* Initial implementation of NvMap/NvHostCtrl
* More work on NvHostCtrl
* Refactoring of nvservices, move GPU Vmm, make Vmm per-process, refactor most gpu devices, move Gpu to Core, fix CbBind
* Implement GetGpuTime, support CancelSynchronization, fix issue on InsertWaitingMutex, proper double buffering support (again, not working properly for commercial games, only hb)
* Try to fix perf regression reading/writing textures, moved syncpts and events to a UserCtx class, delete global state when the process exits, other minor tweaks
* Remove now unused code, add comment about probably wrong result codes
2018-05-07 20:53:23 +02:00
|
|
|
{ 0x19, SvcCancelSynchronization },
|
2018-02-14 03:43:08 +01:00
|
|
|
{ 0x1a, SvcArbitrateLock },
|
|
|
|
{ 0x1b, SvcArbitrateUnlock },
|
|
|
|
{ 0x1c, SvcWaitProcessWideKeyAtomic },
|
|
|
|
{ 0x1d, SvcSignalProcessWideKey },
|
|
|
|
{ 0x1e, SvcGetSystemTick },
|
|
|
|
{ 0x1f, SvcConnectToNamedPort },
|
|
|
|
{ 0x21, SvcSendSyncRequest },
|
|
|
|
{ 0x22, SvcSendSyncRequestWithUserBuffer },
|
2018-11-28 23:18:09 +01:00
|
|
|
{ 0x24, GetProcessId64 },
|
2018-02-25 19:58:16 +01:00
|
|
|
{ 0x25, SvcGetThreadId },
|
2018-02-14 03:43:08 +01:00
|
|
|
{ 0x26, SvcBreak },
|
|
|
|
{ 0x27, SvcOutputDebugString },
|
2018-11-28 23:18:09 +01:00
|
|
|
{ 0x29, GetInfo64 },
|
2018-05-22 22:40:46 +02:00
|
|
|
{ 0x2c, SvcMapPhysicalMemory },
|
|
|
|
{ 0x2d, SvcUnmapPhysicalMemory },
|
2018-06-26 06:09:32 +02:00
|
|
|
{ 0x32, SvcSetThreadActivity },
|
2018-07-19 06:03:53 +02:00
|
|
|
{ 0x33, SvcGetThreadContext3 },
|
2018-09-19 01:36:43 +02:00
|
|
|
{ 0x34, SvcWaitForAddress },
|
2018-09-23 20:11:46 +02:00
|
|
|
{ 0x35, SvcSignalToAddress },
|
2018-11-28 23:18:09 +01:00
|
|
|
{ 0x45, CreateEvent64 },
|
|
|
|
{ 0x65, GetProcessList64 },
|
|
|
|
{ 0x6f, GetSystemInfo64 },
|
|
|
|
{ 0x70, CreatePort64 },
|
|
|
|
{ 0x71, ManageNamedPort64 }
|
2018-02-14 03:43:08 +01:00
|
|
|
};
|
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
_device = device;
|
|
|
|
_process = process;
|
|
|
|
_system = device.System;
|
|
|
|
_memory = process.CpuMemory;
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
|
2018-10-31 02:43:02 +01:00
|
|
|
public void SvcCall(object sender, InstExceptionEventArgs e)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
CpuThreadState threadState = (CpuThreadState)sender;
|
2018-02-05 00:08:20 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
if (_svcFuncs.TryGetValue(e.Id, out SvcFunc func))
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-12-06 12:16:24 +01:00
|
|
|
Logger.PrintDebug(LogClass.KernelSvc, $"{func.Method.Name} called.");
|
2018-04-26 04:11:26 +02:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
func(threadState);
|
2018-02-14 03:43:08 +01:00
|
|
|
|
2018-12-06 12:16:24 +01:00
|
|
|
Logger.PrintDebug(LogClass.KernelSvc, $"{func.Method.Name} ended.");
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-11-28 23:18:09 +01:00
|
|
|
//Process.PrintStackTrace(ThreadState);
|
2018-04-22 07:48:17 +02:00
|
|
|
|
2018-08-17 01:47:36 +02:00
|
|
|
throw new NotImplementedException($"0x{e.Id:x4}");
|
2018-02-05 00:08:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|