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