0746b83edf
* Rename CommandAttribute as CommandHIpcAttribute to prepare for 12.x changes * Implement inital support for TIPC and adds SM command ids * *Ipc to *ipc * Missed a ref in last commit... * CommandAttributeTIpc to CommandAttributeTipc * Addresses comment and fixes some bugs around TIPC doesn't have any padding requirements as buffer C isn't a thing Fix for RegisterService inverting two argument only on TIPC
103 lines
No EOL
4.5 KiB
C#
103 lines
No EOL
4.5 KiB
C#
using Ryujinx.HLE.HOS.Ipc;
|
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
using Ryujinx.HLE.HOS.Kernel.Threading;
|
|
using Ryujinx.HLE.HOS.Services.Bluetooth.BluetoothDriver;
|
|
using Ryujinx.HLE.HOS.Services.Settings;
|
|
using System;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Bluetooth
|
|
{
|
|
[Service("btdrv")]
|
|
class IBluetoothDriver : IpcService
|
|
{
|
|
#pragma warning disable CS0414
|
|
private string _unknownLowEnergy;
|
|
#pragma warning restore CS0414
|
|
|
|
public IBluetoothDriver(ServiceCtx context) { }
|
|
|
|
[CommandHipc(46)]
|
|
// InitializeBluetoothLe() -> handle<copy>
|
|
public ResultCode InitializeBluetoothLe(ServiceCtx context)
|
|
{
|
|
NxSettings.Settings.TryGetValue("bluetooth_debug!skip_boot", out object debugMode);
|
|
|
|
int initializeEventHandle;
|
|
|
|
if ((bool)debugMode)
|
|
{
|
|
if (BluetoothEventManager.InitializeBleDebugEventHandle == 0)
|
|
{
|
|
BluetoothEventManager.InitializeBleDebugEvent = new KEvent(context.Device.System.KernelContext);
|
|
|
|
if (context.Process.HandleTable.GenerateHandle(BluetoothEventManager.InitializeBleDebugEvent.ReadableEvent, out BluetoothEventManager.InitializeBleDebugEventHandle) != KernelResult.Success)
|
|
{
|
|
throw new InvalidOperationException("Out of handles!");
|
|
}
|
|
}
|
|
|
|
if (BluetoothEventManager.UnknownBleDebugEventHandle == 0)
|
|
{
|
|
BluetoothEventManager.UnknownBleDebugEvent = new KEvent(context.Device.System.KernelContext);
|
|
|
|
if (context.Process.HandleTable.GenerateHandle(BluetoothEventManager.UnknownBleDebugEvent.ReadableEvent, out BluetoothEventManager.UnknownBleDebugEventHandle) != KernelResult.Success)
|
|
{
|
|
throw new InvalidOperationException("Out of handles!");
|
|
}
|
|
}
|
|
|
|
if (BluetoothEventManager.RegisterBleDebugEventHandle == 0)
|
|
{
|
|
BluetoothEventManager.RegisterBleDebugEvent = new KEvent(context.Device.System.KernelContext);
|
|
|
|
if (context.Process.HandleTable.GenerateHandle(BluetoothEventManager.RegisterBleDebugEvent.ReadableEvent, out BluetoothEventManager.RegisterBleDebugEventHandle) != KernelResult.Success)
|
|
{
|
|
throw new InvalidOperationException("Out of handles!");
|
|
}
|
|
}
|
|
|
|
initializeEventHandle = BluetoothEventManager.InitializeBleDebugEventHandle;
|
|
}
|
|
else
|
|
{
|
|
_unknownLowEnergy = "low_energy";
|
|
|
|
if (BluetoothEventManager.InitializeBleEventHandle == 0)
|
|
{
|
|
BluetoothEventManager.InitializeBleEvent = new KEvent(context.Device.System.KernelContext);
|
|
|
|
if (context.Process.HandleTable.GenerateHandle(BluetoothEventManager.InitializeBleEvent.ReadableEvent, out BluetoothEventManager.InitializeBleEventHandle) != KernelResult.Success)
|
|
{
|
|
throw new InvalidOperationException("Out of handles!");
|
|
}
|
|
}
|
|
|
|
if (BluetoothEventManager.UnknownBleEventHandle == 0)
|
|
{
|
|
BluetoothEventManager.UnknownBleEvent = new KEvent(context.Device.System.KernelContext);
|
|
|
|
if (context.Process.HandleTable.GenerateHandle(BluetoothEventManager.UnknownBleEvent.ReadableEvent, out BluetoothEventManager.UnknownBleEventHandle) != KernelResult.Success)
|
|
{
|
|
throw new InvalidOperationException("Out of handles!");
|
|
}
|
|
}
|
|
|
|
if (BluetoothEventManager.RegisterBleEventHandle == 0)
|
|
{
|
|
BluetoothEventManager.RegisterBleEvent = new KEvent(context.Device.System.KernelContext);
|
|
|
|
if (context.Process.HandleTable.GenerateHandle(BluetoothEventManager.RegisterBleEvent.ReadableEvent, out BluetoothEventManager.RegisterBleEventHandle) != KernelResult.Success)
|
|
{
|
|
throw new InvalidOperationException("Out of handles!");
|
|
}
|
|
}
|
|
|
|
initializeEventHandle = BluetoothEventManager.InitializeBleEventHandle;
|
|
}
|
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(initializeEventHandle);
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
}
|
|
} |