2022-03-22 20:46:16 +01:00
|
|
|
|
using Ryujinx.HLE.FileSystem;
|
2021-10-12 22:15:55 +02:00
|
|
|
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
|
|
|
using Ryujinx.HLE.HOS.Services.Spl.Types;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Spl
|
2019-09-19 02:45:11 +02:00
|
|
|
|
{
|
|
|
|
|
[Service("spl:")]
|
|
|
|
|
[Service("spl:es")]
|
|
|
|
|
[Service("spl:fs")]
|
|
|
|
|
[Service("spl:manu")]
|
|
|
|
|
[Service("spl:mig")]
|
2021-10-12 22:15:55 +02:00
|
|
|
|
[Service("spl:ssl")]
|
2019-09-19 02:45:11 +02:00
|
|
|
|
class IGeneralInterface : IpcService
|
|
|
|
|
{
|
|
|
|
|
public IGeneralInterface(ServiceCtx context) { }
|
2021-10-12 22:15:55 +02:00
|
|
|
|
|
|
|
|
|
[CommandHipc(0)]
|
|
|
|
|
// GetConfig(u32 config_item) -> u64 config_value
|
|
|
|
|
public ResultCode GetConfig(ServiceCtx context)
|
|
|
|
|
{
|
|
|
|
|
ConfigItem configItem = (ConfigItem)context.RequestData.ReadUInt32();
|
|
|
|
|
|
|
|
|
|
// NOTE: Nintendo explicitly blacklists package2 hash here, amusingly.
|
|
|
|
|
// This is not blacklisted in safemode, but we're never in safe mode...
|
|
|
|
|
if (configItem == ConfigItem.Package2Hash)
|
|
|
|
|
{
|
|
|
|
|
return ResultCode.InvalidArguments;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TODO: This should call svcCallSecureMonitor using arg 0xC3000002.
|
|
|
|
|
// Since it's currently not implemented we can use a private method for now.
|
|
|
|
|
SmcResult result = SmcGetConfig(context, out ulong configValue, configItem);
|
|
|
|
|
|
|
|
|
|
// Nintendo has some special handling here for hardware type/is_retail.
|
|
|
|
|
if (result == SmcResult.InvalidArgument)
|
|
|
|
|
{
|
|
|
|
|
switch (configItem)
|
|
|
|
|
{
|
|
|
|
|
case ConfigItem.HardwareType:
|
|
|
|
|
configValue = (ulong)HardwareType.Icosa;
|
|
|
|
|
result = SmcResult.Success;
|
|
|
|
|
break;
|
|
|
|
|
case ConfigItem.HardwareState:
|
|
|
|
|
configValue = (ulong)HardwareState.Development;
|
|
|
|
|
result = SmcResult.Success;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
context.ResponseData.Write(configValue);
|
|
|
|
|
|
|
|
|
|
return (ResultCode)((int)result << 9) | ResultCode.ModuleId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private SmcResult SmcGetConfig(ServiceCtx context, out ulong configValue, ConfigItem configItem)
|
|
|
|
|
{
|
|
|
|
|
configValue = default;
|
|
|
|
|
|
|
|
|
|
SystemVersion version = context.Device.System.ContentManager.GetCurrentFirmwareVersion();
|
|
|
|
|
MemorySize memorySize = context.Device.Configuration.MemoryConfiguration.ToKernelMemorySize();
|
|
|
|
|
|
|
|
|
|
switch (configItem)
|
|
|
|
|
{
|
|
|
|
|
case ConfigItem.DisableProgramVerification:
|
|
|
|
|
configValue = 0;
|
|
|
|
|
break;
|
|
|
|
|
case ConfigItem.DramId:
|
2022-11-16 23:27:42 +01:00
|
|
|
|
if (memorySize == MemorySize.MemorySize8GiB)
|
2021-10-12 22:15:55 +02:00
|
|
|
|
{
|
2022-11-16 23:27:42 +01:00
|
|
|
|
configValue = (ulong)DramId.IowaSamsung8GiB;
|
2021-10-12 22:15:55 +02:00
|
|
|
|
}
|
2022-11-16 23:27:42 +01:00
|
|
|
|
else if (memorySize == MemorySize.MemorySize6GiB)
|
2021-10-12 22:15:55 +02:00
|
|
|
|
{
|
2022-11-16 23:27:42 +01:00
|
|
|
|
configValue = (ulong)DramId.IcosaSamsung6GiB;
|
2021-10-12 22:15:55 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2022-11-16 23:27:42 +01:00
|
|
|
|
configValue = (ulong)DramId.IcosaSamsung4GiB;
|
2021-10-12 22:15:55 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case ConfigItem.SecurityEngineInterruptNumber:
|
|
|
|
|
return SmcResult.NotImplemented;
|
|
|
|
|
case ConfigItem.FuseVersion:
|
|
|
|
|
return SmcResult.NotImplemented;
|
|
|
|
|
case ConfigItem.HardwareType:
|
|
|
|
|
configValue = (ulong)HardwareType.Icosa;
|
|
|
|
|
break;
|
|
|
|
|
case ConfigItem.HardwareState:
|
|
|
|
|
configValue = (ulong)HardwareState.Production;
|
|
|
|
|
break;
|
|
|
|
|
case ConfigItem.IsRecoveryBoot:
|
|
|
|
|
configValue = 0;
|
|
|
|
|
break;
|
|
|
|
|
case ConfigItem.DeviceId:
|
|
|
|
|
return SmcResult.NotImplemented;
|
|
|
|
|
case ConfigItem.BootReason:
|
|
|
|
|
// This was removed in firmware 4.0.0.
|
|
|
|
|
return SmcResult.InvalidArgument;
|
|
|
|
|
case ConfigItem.MemoryMode:
|
|
|
|
|
configValue = (ulong)context.Device.Configuration.MemoryConfiguration;
|
|
|
|
|
break;
|
|
|
|
|
case ConfigItem.IsDevelopmentFunctionEnabled:
|
|
|
|
|
configValue = 0;
|
|
|
|
|
break;
|
|
|
|
|
case ConfigItem.KernelConfiguration:
|
|
|
|
|
return SmcResult.NotImplemented;
|
|
|
|
|
case ConfigItem.IsChargerHiZModeEnabled:
|
|
|
|
|
return SmcResult.NotImplemented;
|
|
|
|
|
case ConfigItem.QuestState:
|
|
|
|
|
return SmcResult.NotImplemented;
|
|
|
|
|
case ConfigItem.RegulatorType:
|
|
|
|
|
return SmcResult.NotImplemented;
|
|
|
|
|
case ConfigItem.DeviceUniqueKeyGeneration:
|
|
|
|
|
return SmcResult.NotImplemented;
|
|
|
|
|
case ConfigItem.Package2Hash:
|
|
|
|
|
return SmcResult.NotImplemented;
|
|
|
|
|
default:
|
|
|
|
|
return SmcResult.InvalidArgument;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return SmcResult.Success;
|
|
|
|
|
}
|
2019-09-19 02:45:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|