2018-02-25 17:14:58 -08:00
|
|
|
using ChocolArm64.Events;
|
2018-02-04 15:08:20 -08:00
|
|
|
using ChocolArm64.Memory;
|
|
|
|
using ChocolArm64.State;
|
2018-10-17 10:15:50 -07:00
|
|
|
using Ryujinx.Common.Logging;
|
2018-09-18 16:36:43 -07:00
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-02-04 15:08:20 -08:00
|
|
|
using System;
|
2018-06-10 17:46:42 -07:00
|
|
|
using System.Collections.Generic;
|
2018-02-04 15:08:20 -08:00
|
|
|
|
2018-08-16 16:47:36 -07:00
|
|
|
namespace Ryujinx.HLE.HOS.Kernel
|
2018-02-04 15:08:20 -08:00
|
|
|
{
|
2018-08-15 11:59:51 -07:00
|
|
|
partial class SvcHandler
|
2018-02-04 15:08:20 -08:00
|
|
|
{
|
2018-02-18 11:28:07 -08:00
|
|
|
private delegate void SvcFunc(AThreadState ThreadState);
|
2018-02-17 13:36:08 -08:00
|
|
|
|
2018-02-13 18:43:08 -08:00
|
|
|
private Dictionary<int, SvcFunc> SvcFuncs;
|
2018-02-04 15:08:20 -08:00
|
|
|
|
2018-08-16 16:47:36 -07:00
|
|
|
private Switch Device;
|
2018-02-13 18:43:08 -08:00
|
|
|
private Process Process;
|
2018-09-18 16:36:43 -07:00
|
|
|
private Horizon System;
|
2018-02-04 15:08:20 -08:00
|
|
|
private AMemory Memory;
|
|
|
|
|
2018-09-18 16:36:43 -07:00
|
|
|
private struct HleIpcMessage
|
|
|
|
{
|
|
|
|
public KThread Thread { get; private set; }
|
|
|
|
public KSession Session { get; private set; }
|
|
|
|
public IpcMessage Message { get; private set; }
|
|
|
|
public long MessagePtr { get; private set; }
|
|
|
|
|
|
|
|
public HleIpcMessage(
|
|
|
|
KThread Thread,
|
|
|
|
KSession Session,
|
|
|
|
IpcMessage Message,
|
|
|
|
long MessagePtr)
|
|
|
|
{
|
|
|
|
this.Thread = Thread;
|
|
|
|
this.Session = Session;
|
|
|
|
this.Message = Message;
|
|
|
|
this.MessagePtr = MessagePtr;
|
|
|
|
}
|
|
|
|
}
|
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 11:53:23 -07:00
|
|
|
|
2018-03-11 21:04:52 -07:00
|
|
|
private static Random Rng;
|
|
|
|
|
2018-08-16 16:47:36 -07:00
|
|
|
public SvcHandler(Switch Device, Process Process)
|
2018-02-04 15:08:20 -08:00
|
|
|
{
|
2018-02-13 18:43:08 -08:00
|
|
|
SvcFuncs = new Dictionary<int, SvcFunc>()
|
|
|
|
{
|
|
|
|
{ 0x01, SvcSetHeapSize },
|
|
|
|
{ 0x03, SvcSetMemoryAttribute },
|
|
|
|
{ 0x04, SvcMapMemory },
|
2018-02-27 15:45:07 -08:00
|
|
|
{ 0x05, SvcUnmapMemory },
|
2018-02-13 18:43:08 -08:00
|
|
|
{ 0x06, SvcQueryMemory },
|
2018-02-15 04:16:16 -08:00
|
|
|
{ 0x07, SvcExitProcess },
|
2018-02-13 18:43:08 -08:00
|
|
|
{ 0x08, SvcCreateThread },
|
|
|
|
{ 0x09, SvcStartThread },
|
2018-03-11 21:04:52 -07:00
|
|
|
{ 0x0a, SvcExitThread },
|
2018-02-13 18:43:08 -08:00
|
|
|
{ 0x0b, SvcSleepThread },
|
|
|
|
{ 0x0c, SvcGetThreadPriority },
|
2018-02-25 10:58:16 -08:00
|
|
|
{ 0x0d, SvcSetThreadPriority },
|
2018-06-09 21:36:07 -07:00
|
|
|
{ 0x0e, SvcGetThreadCoreMask },
|
2018-02-25 10:58:16 -08:00
|
|
|
{ 0x0f, SvcSetThreadCoreMask },
|
2018-04-04 15:16:59 -07:00
|
|
|
{ 0x10, SvcGetCurrentProcessorNumber },
|
2018-09-23 11:11:46 -07:00
|
|
|
{ 0x11, SignalEvent64 },
|
|
|
|
{ 0x12, ClearEvent64 },
|
2018-02-13 18:43:08 -08:00
|
|
|
{ 0x13, SvcMapSharedMemory },
|
|
|
|
{ 0x14, SvcUnmapSharedMemory },
|
|
|
|
{ 0x15, SvcCreateTransferMemory },
|
|
|
|
{ 0x16, SvcCloseHandle },
|
2018-09-23 11:11:46 -07:00
|
|
|
{ 0x17, ResetSignal64 },
|
2018-02-13 18:43:08 -08: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 11:53:23 -07:00
|
|
|
{ 0x19, SvcCancelSynchronization },
|
2018-02-13 18:43:08 -08:00
|
|
|
{ 0x1a, SvcArbitrateLock },
|
|
|
|
{ 0x1b, SvcArbitrateUnlock },
|
|
|
|
{ 0x1c, SvcWaitProcessWideKeyAtomic },
|
|
|
|
{ 0x1d, SvcSignalProcessWideKey },
|
|
|
|
{ 0x1e, SvcGetSystemTick },
|
|
|
|
{ 0x1f, SvcConnectToNamedPort },
|
|
|
|
{ 0x21, SvcSendSyncRequest },
|
|
|
|
{ 0x22, SvcSendSyncRequestWithUserBuffer },
|
2018-02-25 10:58:16 -08:00
|
|
|
{ 0x25, SvcGetThreadId },
|
2018-02-13 18:43:08 -08:00
|
|
|
{ 0x26, SvcBreak },
|
|
|
|
{ 0x27, SvcOutputDebugString },
|
2018-04-19 12:18:30 -07:00
|
|
|
{ 0x29, SvcGetInfo },
|
2018-05-22 13:40:46 -07:00
|
|
|
{ 0x2c, SvcMapPhysicalMemory },
|
|
|
|
{ 0x2d, SvcUnmapPhysicalMemory },
|
2018-06-25 21:09:32 -07:00
|
|
|
{ 0x32, SvcSetThreadActivity },
|
2018-07-18 21:03:53 -07:00
|
|
|
{ 0x33, SvcGetThreadContext3 },
|
2018-09-18 16:36:43 -07:00
|
|
|
{ 0x34, SvcWaitForAddress },
|
2018-09-23 11:11:46 -07:00
|
|
|
{ 0x35, SvcSignalToAddress },
|
|
|
|
{ 0x45, CreateEvent64 }
|
2018-02-13 18:43:08 -08:00
|
|
|
};
|
|
|
|
|
2018-08-16 16:47:36 -07:00
|
|
|
this.Device = Device;
|
2018-02-13 18:43:08 -08:00
|
|
|
this.Process = Process;
|
2018-09-18 16:36:43 -07:00
|
|
|
this.System = Process.Device.System;
|
2018-02-13 18:43:08 -08:00
|
|
|
this.Memory = Process.Memory;
|
2018-02-04 15:08:20 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
static SvcHandler()
|
|
|
|
{
|
|
|
|
Rng = new Random();
|
|
|
|
}
|
|
|
|
|
2018-02-25 17:14:58 -08:00
|
|
|
public void SvcCall(object sender, AInstExceptionEventArgs e)
|
2018-02-04 15:08:20 -08:00
|
|
|
{
|
2018-02-18 11:28:07 -08:00
|
|
|
AThreadState ThreadState = (AThreadState)sender;
|
2018-02-04 15:08:20 -08:00
|
|
|
|
2018-06-25 21:14:18 -07:00
|
|
|
Process.GetThread(ThreadState.Tpidr).LastPc = e.Position;
|
|
|
|
|
2018-02-04 15:08:20 -08:00
|
|
|
if (SvcFuncs.TryGetValue(e.Id, out SvcFunc Func))
|
|
|
|
{
|
2018-10-17 10:15:50 -07:00
|
|
|
Logger.PrintDebug(LogClass.KernelSvc, $"{Func.Method.Name} called.");
|
2018-04-25 19:11:26 -07:00
|
|
|
|
2018-02-18 11:28:07 -08:00
|
|
|
Func(ThreadState);
|
2018-02-13 18:43:08 -08:00
|
|
|
|
2018-10-17 10:15:50 -07:00
|
|
|
Logger.PrintDebug(LogClass.KernelSvc, $"{Func.Method.Name} ended.");
|
2018-02-04 15:08:20 -08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-04-21 22:48:17 -07:00
|
|
|
Process.PrintStackTrace(ThreadState);
|
|
|
|
|
2018-08-16 16:47:36 -07:00
|
|
|
throw new NotImplementedException($"0x{e.Id:x4}");
|
2018-02-04 15:08:20 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|