2018-02-04 17:08:20 -06:00
|
|
|
using ChocolArm64.State;
|
2018-04-24 13:57:39 -05:00
|
|
|
using Ryujinx.Core.Logging;
|
2018-02-20 14:09:23 -06:00
|
|
|
using Ryujinx.Core.OsHle.Handles;
|
2018-04-18 21:52:23 -05:00
|
|
|
using System.Threading;
|
2018-02-04 17:08:20 -06:00
|
|
|
|
2018-04-04 14:07:44 -05:00
|
|
|
using static Ryujinx.Core.OsHle.ErrorCode;
|
|
|
|
|
2018-04-18 21:52:23 -05:00
|
|
|
namespace Ryujinx.Core.OsHle.Kernel
|
2018-02-04 17:08:20 -06:00
|
|
|
{
|
|
|
|
partial class SvcHandler
|
|
|
|
{
|
2018-02-18 13:28:07 -06:00
|
|
|
private void SvcCreateThread(AThreadState ThreadState)
|
2018-02-04 17:08:20 -06:00
|
|
|
{
|
2018-02-18 13:28:07 -06:00
|
|
|
long EntryPoint = (long)ThreadState.X1;
|
|
|
|
long ArgsPtr = (long)ThreadState.X2;
|
|
|
|
long StackTop = (long)ThreadState.X3;
|
|
|
|
int Priority = (int)ThreadState.X4;
|
|
|
|
int ProcessorId = (int)ThreadState.X5;
|
2018-02-04 17:08:20 -06:00
|
|
|
|
2018-04-18 21:52:23 -05:00
|
|
|
if (ProcessorId == -2)
|
2018-02-04 17:08:20 -06:00
|
|
|
{
|
2018-04-18 21:52:23 -05:00
|
|
|
//TODO: Get this value from the NPDM file.
|
|
|
|
ProcessorId = 0;
|
2018-02-04 17:08:20 -06:00
|
|
|
}
|
|
|
|
|
2018-04-18 21:52:23 -05:00
|
|
|
int Handle = Process.MakeThread(
|
|
|
|
EntryPoint,
|
|
|
|
StackTop,
|
|
|
|
ArgsPtr,
|
|
|
|
Priority,
|
|
|
|
ProcessorId);
|
|
|
|
|
|
|
|
ThreadState.X0 = 0;
|
|
|
|
ThreadState.X1 = (ulong)Handle;
|
2018-02-04 17:08:20 -06:00
|
|
|
}
|
|
|
|
|
2018-02-18 13:28:07 -06:00
|
|
|
private void SvcStartThread(AThreadState ThreadState)
|
2018-02-04 17:08:20 -06:00
|
|
|
{
|
2018-02-18 13:28:07 -06:00
|
|
|
int Handle = (int)ThreadState.X0;
|
2018-02-04 17:08:20 -06:00
|
|
|
|
2018-04-18 21:52:23 -05:00
|
|
|
KThread CurrThread = Process.HandleTable.GetData<KThread>(Handle);
|
2018-02-04 17:08:20 -06:00
|
|
|
|
2018-04-18 21:52:23 -05:00
|
|
|
if (CurrThread != null)
|
2018-02-04 17:08:20 -06:00
|
|
|
{
|
2018-04-18 21:52:23 -05:00
|
|
|
Process.Scheduler.StartThread(CurrThread);
|
|
|
|
|
|
|
|
Process.Scheduler.Yield(Process.GetThread(ThreadState.Tpidr));
|
2018-02-04 17:08:20 -06:00
|
|
|
|
2018-03-05 13:18:37 -06:00
|
|
|
ThreadState.X0 = 0;
|
2018-02-04 17:08:20 -06:00
|
|
|
}
|
2018-04-18 21:52:23 -05:00
|
|
|
else
|
|
|
|
{
|
2018-04-24 13:57:39 -05:00
|
|
|
Ns.Log.PrintWarning(LogClass.KernelSvc, $"Invalid thread handle 0x{Handle:x8}!");
|
2018-02-04 17:08:20 -06:00
|
|
|
|
2018-04-18 21:52:23 -05:00
|
|
|
ThreadState.X0 = MakeError(ErrorModule.Kernel, KernelErr.InvalidHandle);
|
|
|
|
}
|
2018-02-04 17:08:20 -06:00
|
|
|
}
|
|
|
|
|
2018-03-11 23:04:52 -05:00
|
|
|
private void SvcExitThread(AThreadState ThreadState)
|
|
|
|
{
|
2018-03-19 13:58:46 -05:00
|
|
|
KThread CurrThread = Process.GetThread(ThreadState.Tpidr);
|
|
|
|
|
2018-03-11 23:04:52 -05:00
|
|
|
CurrThread.Thread.StopExecution();
|
|
|
|
}
|
|
|
|
|
2018-02-18 13:28:07 -06:00
|
|
|
private void SvcSleepThread(AThreadState ThreadState)
|
2018-04-04 14:07:44 -05:00
|
|
|
{
|
2018-04-19 02:06:23 -05:00
|
|
|
ulong Ns = ThreadState.X0;
|
2018-02-04 17:08:20 -06:00
|
|
|
|
2018-03-19 13:58:46 -05:00
|
|
|
KThread CurrThread = Process.GetThread(ThreadState.Tpidr);
|
2018-04-04 14:07:44 -05:00
|
|
|
|
2018-04-19 02:06:23 -05:00
|
|
|
if (Ns == 0)
|
2018-02-04 17:08:20 -06:00
|
|
|
{
|
2018-02-13 20:43:08 -06:00
|
|
|
Process.Scheduler.Yield(CurrThread);
|
2018-02-04 17:08:20 -06:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-04-18 21:52:23 -05:00
|
|
|
Process.Scheduler.Suspend(CurrThread.ProcessorId);
|
|
|
|
|
2018-04-19 02:06:23 -05:00
|
|
|
Thread.Sleep(NsTimeConverter.GetTimeMs(Ns));
|
2018-04-18 21:52:23 -05:00
|
|
|
|
|
|
|
Process.Scheduler.Resume(CurrThread);
|
2018-02-04 17:08:20 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-18 13:28:07 -06:00
|
|
|
private void SvcGetThreadPriority(AThreadState ThreadState)
|
2018-02-04 17:08:20 -06:00
|
|
|
{
|
2018-02-18 13:28:07 -06:00
|
|
|
int Handle = (int)ThreadState.X1;
|
2018-02-04 17:08:20 -06:00
|
|
|
|
2018-04-18 21:52:23 -05:00
|
|
|
KThread CurrThread = Process.HandleTable.GetData<KThread>(Handle);
|
2018-02-04 17:08:20 -06:00
|
|
|
|
2018-04-18 21:52:23 -05:00
|
|
|
if (CurrThread != null)
|
2018-02-04 17:08:20 -06:00
|
|
|
{
|
2018-03-05 13:18:37 -06:00
|
|
|
ThreadState.X0 = 0;
|
2018-04-21 14:07:16 -05:00
|
|
|
ThreadState.X1 = (ulong)CurrThread.ActualPriority;
|
2018-02-04 17:08:20 -06:00
|
|
|
}
|
2018-04-18 21:52:23 -05:00
|
|
|
else
|
|
|
|
{
|
2018-04-24 13:57:39 -05:00
|
|
|
Ns.Log.PrintWarning(LogClass.KernelSvc, $"Invalid thread handle 0x{Handle:x8}!");
|
2018-02-04 17:08:20 -06:00
|
|
|
|
2018-04-18 21:52:23 -05:00
|
|
|
ThreadState.X0 = MakeError(ErrorModule.Kernel, KernelErr.InvalidHandle);
|
|
|
|
}
|
2018-02-04 17:08:20 -06:00
|
|
|
}
|
2018-02-25 12:58:16 -06:00
|
|
|
|
|
|
|
private void SvcSetThreadPriority(AThreadState ThreadState)
|
|
|
|
{
|
2018-04-19 02:06:23 -05:00
|
|
|
int Handle = (int)ThreadState.X0;
|
|
|
|
int Priority = (int)ThreadState.X1;
|
2018-02-25 12:58:16 -06:00
|
|
|
|
2018-04-18 21:52:23 -05:00
|
|
|
KThread CurrThread = Process.HandleTable.GetData<KThread>(Handle);
|
2018-02-25 12:58:16 -06:00
|
|
|
|
2018-04-18 21:52:23 -05:00
|
|
|
if (CurrThread != null)
|
2018-02-25 12:58:16 -06:00
|
|
|
{
|
2018-04-21 14:07:16 -05:00
|
|
|
CurrThread.SetPriority(Priority);
|
2018-02-25 12:58:16 -06:00
|
|
|
|
2018-03-05 13:18:37 -06:00
|
|
|
ThreadState.X0 = 0;
|
2018-02-25 12:58:16 -06:00
|
|
|
}
|
2018-04-18 21:52:23 -05:00
|
|
|
else
|
|
|
|
{
|
2018-04-24 13:57:39 -05:00
|
|
|
Ns.Log.PrintWarning(LogClass.KernelSvc, $"Invalid thread handle 0x{Handle:x8}!");
|
2018-02-25 12:58:16 -06:00
|
|
|
|
2018-04-18 21:52:23 -05:00
|
|
|
ThreadState.X0 = MakeError(ErrorModule.Kernel, KernelErr.InvalidHandle);
|
|
|
|
}
|
2018-02-25 12:58:16 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
private void SvcSetThreadCoreMask(AThreadState ThreadState)
|
|
|
|
{
|
2018-03-05 13:18:37 -06:00
|
|
|
ThreadState.X0 = 0;
|
2018-02-25 12:58:16 -06:00
|
|
|
|
|
|
|
//TODO: Error codes.
|
|
|
|
}
|
|
|
|
|
2018-04-04 17:16:59 -05:00
|
|
|
private void SvcGetCurrentProcessorNumber(AThreadState ThreadState)
|
|
|
|
{
|
2018-04-18 21:52:23 -05:00
|
|
|
ThreadState.X0 = (ulong)Process.GetThread(ThreadState.Tpidr).ProcessorId;
|
2018-04-04 17:16:59 -05:00
|
|
|
}
|
|
|
|
|
2018-02-25 12:58:16 -06:00
|
|
|
private void SvcGetThreadId(AThreadState ThreadState)
|
|
|
|
{
|
2018-04-04 14:07:44 -05:00
|
|
|
int Handle = (int)ThreadState.X1;
|
2018-02-25 12:58:16 -06:00
|
|
|
|
2018-04-18 21:52:23 -05:00
|
|
|
KThread CurrThread = Process.HandleTable.GetData<KThread>(Handle);
|
2018-02-25 12:58:16 -06:00
|
|
|
|
2018-04-18 21:52:23 -05:00
|
|
|
if (CurrThread != null)
|
2018-02-25 12:58:16 -06:00
|
|
|
{
|
2018-03-05 13:18:37 -06:00
|
|
|
ThreadState.X0 = 0;
|
2018-04-18 21:52:23 -05:00
|
|
|
ThreadState.X1 = (ulong)CurrThread.ThreadId;
|
2018-02-25 12:58:16 -06:00
|
|
|
}
|
2018-04-04 14:07:44 -05:00
|
|
|
else
|
|
|
|
{
|
2018-04-24 13:57:39 -05:00
|
|
|
Ns.Log.PrintWarning(LogClass.KernelSvc, $"Invalid thread handle 0x{Handle:x8}!");
|
2018-04-19 14:18:30 -05:00
|
|
|
|
|
|
|
ThreadState.X0 = MakeError(ErrorModule.Kernel, KernelErr.InvalidHandle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void SvcSetThreadActivity(AThreadState ThreadState)
|
|
|
|
{
|
|
|
|
int Handle = (int)ThreadState.X0;
|
2018-04-21 23:21:49 -05:00
|
|
|
bool Active = (int)ThreadState.X1 == 0;
|
2018-04-19 14:18:30 -05:00
|
|
|
|
2018-04-21 23:21:49 -05:00
|
|
|
KThread Thread = Process.HandleTable.GetData<KThread>(Handle);
|
2018-04-19 14:18:30 -05:00
|
|
|
|
2018-04-21 23:21:49 -05:00
|
|
|
if (Thread != null)
|
2018-04-19 14:18:30 -05:00
|
|
|
{
|
2018-04-21 23:21:49 -05:00
|
|
|
Process.Scheduler.SetThreadActivity(Thread, Active);
|
2018-04-19 14:18:30 -05:00
|
|
|
|
|
|
|
ThreadState.X0 = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-04-24 13:57:39 -05:00
|
|
|
Ns.Log.PrintWarning(LogClass.KernelSvc, $"Invalid thread handle 0x{Handle:x8}!");
|
2018-02-25 12:58:16 -06:00
|
|
|
|
2018-04-04 14:07:44 -05:00
|
|
|
ThreadState.X0 = MakeError(ErrorModule.Kernel, KernelErr.InvalidHandle);
|
|
|
|
}
|
2018-02-25 12:58:16 -06:00
|
|
|
}
|
2018-02-04 17:08:20 -06:00
|
|
|
}
|
|
|
|
}
|