mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-08-17 21:57:52 +00:00
fee603f0b9
- KProcess::Run() and CreateThread() SVC now write the current thread handle to TLS+0x110 - KPageTableBase::LockForMapDeviceAddressSpace now checks for a new KPageTableBase boolean, m_allowed_exec_device_mapping - Stub `am` + `acc` + `settings` cmd module that needs to work for qlaunch Thanks to: @alula and @yellows8 Source for changes: https://github.com/Atmosphere-NX/Atmosphere/pull/2744, https://switchbrew.org/, https://yls8.mtheall.com/ Co-authored-by: PavelBARABANOV <pavelbarabanov94@gmail.com> Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/3761 Reviewed-by: CamilleLaVey <camillelavey99@gmail.com>
62 lines
2.0 KiB
C++
62 lines
2.0 KiB
C++
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include "common/bit_field.h"
|
|
#include "common/common_types.h"
|
|
#include "common/literals.h"
|
|
|
|
namespace Kernel::Svc {
|
|
|
|
constexpr inline u32 ConvertToSvcMajorVersion(u32 sdk) {
|
|
return sdk + 4;
|
|
}
|
|
constexpr inline u32 ConvertToSdkMajorVersion(u32 svc) {
|
|
return svc - 4;
|
|
}
|
|
|
|
constexpr inline u32 ConvertToSvcMinorVersion(u32 sdk) {
|
|
return sdk;
|
|
}
|
|
constexpr inline u32 ConvertToSdkMinorVersion(u32 svc) {
|
|
return svc;
|
|
}
|
|
|
|
union KernelVersion {
|
|
u32 value;
|
|
BitField<0, 4, u32> minor_version;
|
|
BitField<4, 13, u32> major_version;
|
|
};
|
|
|
|
constexpr inline u32 EncodeKernelVersion(u32 major, u32 minor) {
|
|
return decltype(KernelVersion::minor_version)::FormatValue(minor) |
|
|
decltype(KernelVersion::major_version)::FormatValue(major);
|
|
}
|
|
|
|
constexpr inline u32 GetKernelMajorVersion(u32 encoded) {
|
|
return decltype(KernelVersion::major_version)::ExtractValue(encoded);
|
|
}
|
|
|
|
constexpr inline u32 GetKernelMinorVersion(u32 encoded) {
|
|
return decltype(KernelVersion::minor_version)::ExtractValue(encoded);
|
|
}
|
|
|
|
// Nintendo doesn't support programs targeting SVC versions < 3.0.
|
|
constexpr inline u32 RequiredKernelMajorVersion = 3;
|
|
constexpr inline u32 RequiredKernelMinorVersion = 0;
|
|
constexpr inline u32 RequiredKernelVersion =
|
|
EncodeKernelVersion(RequiredKernelMajorVersion, RequiredKernelMinorVersion);
|
|
|
|
// This is the highest SVC version supported, to be updated on new kernel releases.
|
|
// NOTE: Official kernel versions have SVC major = SDK major + 4, SVC minor = SDK minor.
|
|
constexpr inline u32 SupportedKernelMajorVersion = ConvertToSvcMajorVersion(22);
|
|
constexpr inline u32 SupportedKernelMinorVersion = ConvertToSvcMinorVersion(2);
|
|
constexpr inline u32 SupportedKernelVersion =
|
|
EncodeKernelVersion(SupportedKernelMajorVersion, SupportedKernelMinorVersion);
|
|
|
|
} // namespace Kernel::Svc
|