mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-30 14:35:17 -04:00
fs: add skeleton dir for sysmodule code
Please note this isn't likely to immediately be the active ams project.
This commit is contained in:
parent
4c7fd70c10
commit
94de5bf4f4
10 changed files with 456 additions and 6 deletions
|
@ -0,0 +1,31 @@
|
|||
/*
|
||||
* Copyright (c) Atmosphère-NX
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms and conditions of the GNU General Public License,
|
||||
* version 2, as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
* more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#include <stratosphere.hpp>
|
||||
|
||||
namespace ams::fssrv {
|
||||
|
||||
namespace {
|
||||
|
||||
constinit bool g_is_debug_flag_enabled = false;
|
||||
|
||||
}
|
||||
|
||||
void SetDebugFlagEnabled(bool en) {
|
||||
/* Set global debug flag. */
|
||||
g_is_debug_flag_enabled = en;
|
||||
}
|
||||
|
||||
}
|
|
@ -22,6 +22,8 @@ namespace ams::fssystem {
|
|||
|
||||
namespace {
|
||||
|
||||
/* TODO: Heap sizes need to match FS, when this is FS in master rather than ams.mitm. */
|
||||
|
||||
/* Official FS has a 4.5 MB exp heap, a 6 MB buffer pool, an 8 MB device buffer manager heap, and a 14 MB buffer manager heap. */
|
||||
/* We don't need so much memory for ams.mitm (as we're servicing a much more limited context). */
|
||||
/* We'll give ourselves a 1.5 MB exp heap, a 1 MB buffer pool, a 1 MB device buffer manager heap, and a 1 MB buffer manager heap. */
|
||||
|
@ -68,6 +70,7 @@ namespace ams::fssystem {
|
|||
alignas(os::MemoryPageSize) u8 g_device_buffer[DeviceBufferSize];
|
||||
|
||||
alignas(os::MemoryPageSize) u8 g_buffer_pool[BufferPoolSize];
|
||||
|
||||
util::TypedStorage<mem::StandardAllocator> g_buffer_allocator;
|
||||
util::TypedStorage<fssrv::MemoryResourceFromStandardAllocator> g_allocator;
|
||||
|
||||
|
@ -87,14 +90,23 @@ namespace ams::fssystem {
|
|||
}
|
||||
|
||||
void InitializeForFileSystemProxy() {
|
||||
/* TODO FS-REIMPL: fssystem::RegisterServiceContext */
|
||||
/* TODO FS-REIMPL: Setup MainThreadStackUsageReporter. */
|
||||
|
||||
/* TODO FS-REIMPL: spl::InitializeForFs(); */
|
||||
/* Register service context for main thread. */
|
||||
fssystem::ServiceContext context;
|
||||
fssystem::RegisterServiceContext(std::addressof(context));
|
||||
|
||||
/* Initialize spl library. */
|
||||
spl::InitializeForFs();
|
||||
/* TODO FS-REIMPL: spl::SetIsAvailableAccessKeyHandler(fssrv::IsAvailableAccessKey) */
|
||||
|
||||
/* Determine whether we're prod or dev. */
|
||||
bool is_prod = !spl::IsDevelopment();
|
||||
bool is_development_function_enabled = spl::IsDevelopmentFunctionEnabled();
|
||||
|
||||
/* Set debug flags. */
|
||||
fssrv::SetDebugFlagEnabled(is_development_function_enabled);
|
||||
|
||||
/* Setup our crypto configuration. */
|
||||
SetUpKekAccessKeys(is_prod);
|
||||
|
||||
|
@ -106,6 +118,7 @@ namespace ams::fssystem {
|
|||
util::ConstructAt(g_allocator, GetPointer(g_buffer_allocator));
|
||||
|
||||
/* Set allocators. */
|
||||
/* TODO FS-REIMPL: sf::SetGlobalDefaultMemoryResource() */
|
||||
fs::SetAllocator(AllocateForFileSystemProxy, DeallocateForFileSystemProxy);
|
||||
fssystem::InitializeAllocator(AllocateForFileSystemProxy, DeallocateForFileSystemProxy);
|
||||
|
||||
|
@ -114,11 +127,16 @@ namespace ams::fssystem {
|
|||
util::ConstructAt(g_buffer_manager);
|
||||
GetReference(g_buffer_manager).Initialize(MaxCacheCount, reinterpret_cast<uintptr_t>(g_buffer_manager_heap), BufferManagerHeapSize, BlockSize);
|
||||
|
||||
/* TODO FS-REIMPL: Memory Report Creators, fssrv::SetMemoryReportCreator */
|
||||
/* TODO FS-REIMPL: os::AllocateMemoryBlock(...); */
|
||||
/* TODO FS-REIMPL: fssrv::storage::CreateDeviceAddressSpace(...); */
|
||||
fssystem::InitializeBufferPool(reinterpret_cast<char *>(g_device_buffer), DeviceBufferSize);
|
||||
|
||||
/* TODO FS-REIMPL: Create Pooled Threads, fssystem::RegisterThreadPool. */
|
||||
/* TODO FS-REIMPL: Create Pooled Threads/Stack Usage Reporter, fssystem::RegisterThreadPool. */
|
||||
|
||||
/* TODO FS-REIMPL: fssrv::GetFileSystemProxyServices(), some service creation. */
|
||||
|
||||
/* Initialize fs creators. */
|
||||
/* TODO FS-REIMPL: Revise for accuracy. */
|
||||
util::ConstructAt(g_rom_fs_creator, GetPointer(g_allocator));
|
||||
util::ConstructAt(g_partition_fs_creator);
|
||||
util::ConstructAt(g_storage_on_nca_creator, GetPointer(g_allocator), *GetNcaCryptoConfiguration(is_prod), is_prod, GetPointer(g_buffer_manager));
|
||||
|
@ -131,18 +149,33 @@ namespace ams::fssystem {
|
|||
.storage_on_nca_creator = GetPointer(g_storage_on_nca_creator),
|
||||
};
|
||||
|
||||
/* TODO FS-REIMPL: Revise above for latest firmware, all the new Services creation. */
|
||||
|
||||
/* TODO FS-REIMPL: Memory Report Creators, fssrv::SetMemoryReportCreator */
|
||||
|
||||
/* TODO FS-REIMPL: Sd Card detection, speed emulation. */
|
||||
|
||||
/* Initialize fssrv. TODO FS-REIMPL: More arguments, more actions taken. */
|
||||
fssrv::InitializeForFileSystemProxy(std::addressof(g_fs_creator_interfaces), GetPointer(g_buffer_manager), is_development_function_enabled);
|
||||
|
||||
/* TODO FS-REIMPL: GetFileSystemProxyServiceObject(), set current process, initialize global service object. */
|
||||
|
||||
/* Disable auto-abort in fs library code. */
|
||||
/* TODO: fs::SetEnabledAutoAbort(false); */
|
||||
|
||||
/* TODO FS-REIMPL: Initialize fsp server. */
|
||||
|
||||
/* NOTE: This is done in fsp server init, normally. */
|
||||
fssystem::InitializeBufferPool(reinterpret_cast<char *>(g_device_buffer), DeviceBufferSize);
|
||||
/* TODO FS-REIMPL: Cleanup calls. */
|
||||
|
||||
/* TODO FS-REIMPL: Spawn worker threads. */
|
||||
|
||||
/* TODO FS-REIMPL: Set mmc devices ready. */
|
||||
|
||||
/* TODO FS-REIMPL: fssrv::LoopPmEventServer(...); */
|
||||
|
||||
/* TODO FS-REIMPL: Wait/destroy threads. */
|
||||
|
||||
/* TODO FS-REIMPL: spl::Finalize(); */
|
||||
}
|
||||
|
||||
const ::ams::fssrv::fscreator::FileSystemCreatorInterfaces *GetFileSystemCreatorInterfaces() {
|
||||
|
|
|
@ -0,0 +1,48 @@
|
|||
/*
|
||||
* Copyright (c) Atmosphère-NX
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms and conditions of the GNU General Public License,
|
||||
* version 2, as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
* more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#include <stratosphere.hpp>
|
||||
|
||||
namespace ams::fssystem {
|
||||
|
||||
namespace {
|
||||
|
||||
os::SdkThreadLocalStorage g_tls_service_context;
|
||||
|
||||
}
|
||||
|
||||
void RegisterServiceContext(ServiceContext *context) {
|
||||
/* Check pre-conditions. */
|
||||
AMS_ASSERT(context != nullptr);
|
||||
AMS_ASSERT(g_tls_service_context.GetValue() == 0);
|
||||
|
||||
/* Register context. */
|
||||
g_tls_service_context.SetValue(reinterpret_cast<uintptr_t>(context));
|
||||
}
|
||||
|
||||
void UnregisterServiceContext() {
|
||||
/* Unregister context. */
|
||||
g_tls_service_context.SetValue(0);
|
||||
}
|
||||
|
||||
ServiceContext *GetServiceContext() {
|
||||
/* Get context. */
|
||||
auto * const context = reinterpret_cast<ServiceContext *>(g_tls_service_context.GetValue());
|
||||
AMS_ASSERT(context != nullptr);
|
||||
|
||||
return context;
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue