2020-01-29 06:09:47 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020 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 <mesosphere.hpp>
|
|
|
|
|
|
|
|
namespace ams::kern {
|
|
|
|
|
2020-02-08 03:16:09 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
template<typename F>
|
|
|
|
ALWAYS_INLINE void DoOnEachCoreInOrder(s32 core_id, F f) {
|
|
|
|
cpu::SynchronizeAllCores();
|
|
|
|
for (size_t i = 0; i < cpu::NumCores; i++) {
|
|
|
|
if (static_cast<s32>(i) == core_id) {
|
|
|
|
f();
|
|
|
|
}
|
|
|
|
cpu::SynchronizeAllCores();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-01-29 06:09:47 +00:00
|
|
|
NORETURN void HorizonKernelMain(s32 core_id) {
|
2020-01-29 22:26:24 +00:00
|
|
|
/* Setup the Core Local Region, and note that we're initializing. */
|
2020-01-31 09:53:30 +00:00
|
|
|
Kernel::InitializeCoreLocalRegion(core_id);
|
2020-01-29 22:26:24 +00:00
|
|
|
Kernel::SetState(Kernel::State::Initializing);
|
|
|
|
|
|
|
|
/* Ensure that all cores get to this point before proceeding. */
|
2020-01-29 06:09:47 +00:00
|
|
|
cpu::SynchronizeAllCores();
|
2020-01-29 22:26:24 +00:00
|
|
|
|
2020-01-30 06:06:25 +00:00
|
|
|
/* Initialize the main and idle thread for each core. */
|
2020-02-08 03:16:09 +00:00
|
|
|
DoOnEachCoreInOrder(core_id, [=]() ALWAYS_INLINE_LAMBDA {
|
|
|
|
Kernel::InitializeMainAndIdleThreads(core_id);
|
|
|
|
});
|
2020-01-30 06:06:25 +00:00
|
|
|
|
2020-01-30 09:41:59 +00:00
|
|
|
if (core_id == 0) {
|
2020-02-15 03:58:57 +00:00
|
|
|
/* Initialize the carveout and the system resource limit. */
|
|
|
|
KSystemControl::InitializePhase1();
|
2020-02-06 09:05:35 +00:00
|
|
|
|
2020-02-07 04:36:26 +00:00
|
|
|
/* Initialize the memory manager and the KPageBuffer slabheap. */
|
2020-02-07 01:40:57 +00:00
|
|
|
{
|
|
|
|
const auto &metadata_region = KMemoryLayout::GetMetadataPoolRegion();
|
|
|
|
Kernel::GetMemoryManager().Initialize(metadata_region.GetAddress(), metadata_region.GetSize());
|
2020-02-07 04:36:26 +00:00
|
|
|
init::InitializeKPageBufferSlabHeap();
|
2020-02-07 01:40:57 +00:00
|
|
|
}
|
|
|
|
|
2020-02-07 12:58:35 +00:00
|
|
|
/* Copy the Initial Process Binary to safe memory. */
|
|
|
|
CopyInitialProcessBinaryToKernelMemory();
|
|
|
|
|
2020-02-09 09:16:13 +00:00
|
|
|
/* Print out information about the kernel. */
|
|
|
|
Kernel::PrintLayout();
|
|
|
|
|
2020-02-07 12:58:35 +00:00
|
|
|
/* Initialize the KObject Slab Heaps. */
|
2020-01-30 09:41:59 +00:00
|
|
|
init::InitializeSlabHeaps();
|
2020-02-07 12:58:35 +00:00
|
|
|
|
|
|
|
/* Initialize the Dynamic Slab Heaps. */
|
|
|
|
{
|
|
|
|
const auto &pt_heap_region = KMemoryLayout::GetPageTableHeapRegion();
|
|
|
|
Kernel::InitializeResourceManagers(pt_heap_region.GetAddress(), pt_heap_region.GetSize());
|
|
|
|
}
|
2020-01-30 09:41:59 +00:00
|
|
|
}
|
|
|
|
|
2020-02-08 03:16:09 +00:00
|
|
|
/* Initialize the supervisor page table for each core. */
|
|
|
|
DoOnEachCoreInOrder(core_id, [=]() ALWAYS_INLINE_LAMBDA {
|
2020-02-09 11:45:45 +00:00
|
|
|
KPageTable::Initialize(core_id);
|
|
|
|
Kernel::GetKernelPageTable().Initialize(core_id);
|
2020-02-08 03:16:09 +00:00
|
|
|
});
|
|
|
|
|
2020-02-10 10:26:00 +00:00
|
|
|
/* Activate the supervisor page table for each core. */
|
2020-02-08 03:16:09 +00:00
|
|
|
DoOnEachCoreInOrder(core_id, [=]() ALWAYS_INLINE_LAMBDA {
|
2020-02-20 04:43:19 +00:00
|
|
|
Kernel::GetKernelPageTable().ActivateForInit();
|
2020-02-08 03:16:09 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
/* NOTE: Kernel calls on each core a nullsub here on retail kernel. */
|
|
|
|
|
|
|
|
/* Register the main/idle threads and initialize the interrupt task manager. */
|
|
|
|
DoOnEachCoreInOrder(core_id, [=]() ALWAYS_INLINE_LAMBDA {
|
|
|
|
KThread::Register(std::addressof(Kernel::GetMainThread(core_id)));
|
|
|
|
KThread::Register(std::addressof(Kernel::GetIdleThread(core_id)));
|
2020-02-10 10:26:00 +00:00
|
|
|
Kernel::GetInterruptTaskManager().Initialize();
|
2020-02-08 03:16:09 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
/* Activate the scheduler and enable interrupts. */
|
|
|
|
DoOnEachCoreInOrder(core_id, [=]() ALWAYS_INLINE_LAMBDA {
|
|
|
|
Kernel::GetScheduler().Activate();
|
|
|
|
KInterruptManager::EnableInterrupts();
|
|
|
|
});
|
|
|
|
|
|
|
|
/* Initialize cpu interrupt threads. */
|
2020-02-14 10:20:33 +00:00
|
|
|
cpu::InitializeInterruptThreads(core_id);
|
2020-02-08 03:16:09 +00:00
|
|
|
|
|
|
|
/* Initialize the DPC manager. */
|
|
|
|
KDpcManager::Initialize();
|
|
|
|
cpu::SynchronizeAllCores();
|
|
|
|
|
|
|
|
/* Perform more core-0 specific initialization. */
|
|
|
|
if (core_id == 0) {
|
2020-02-15 03:58:57 +00:00
|
|
|
/* Initialize the exit worker manager, so that threads and processes may exit cleanly. */
|
2020-02-14 10:56:42 +00:00
|
|
|
Kernel::GetWorkerTaskManager(KWorkerTaskManager::WorkerType_Exit).Initialize(KWorkerTaskManager::WorkerType_Exit, KWorkerTaskManager::ExitWorkerPriority);
|
2020-02-08 03:16:09 +00:00
|
|
|
|
2020-02-15 03:58:57 +00:00
|
|
|
/* Setup so that we may sleep later, and reserve memory for secure applets. */
|
|
|
|
KSystemControl::InitializePhase2();
|
2020-02-08 03:16:09 +00:00
|
|
|
|
2020-02-15 08:00:35 +00:00
|
|
|
/* Initialize the SMMU. */
|
|
|
|
KDeviceAddressSpace::Initialize();
|
2020-02-08 03:16:09 +00:00
|
|
|
|
2020-02-15 11:44:41 +00:00
|
|
|
/* Load the initial processes. */
|
|
|
|
CreateAndRunInitialProcesses();
|
2020-02-08 03:16:09 +00:00
|
|
|
|
|
|
|
/* We're done initializing! */
|
|
|
|
Kernel::SetState(Kernel::State::Initialized);
|
|
|
|
|
2020-02-20 04:42:21 +00:00
|
|
|
/* Resume all threads suspended while we initialized. */
|
|
|
|
KThread::ResumeThreadsSuspendedForInit();
|
2020-02-08 03:16:09 +00:00
|
|
|
}
|
2020-02-06 13:34:38 +00:00
|
|
|
cpu::SynchronizeAllCores();
|
2020-02-08 03:16:09 +00:00
|
|
|
|
|
|
|
/* Set the current thread priority to idle. */
|
|
|
|
GetCurrentThread().SetPriorityToIdle();
|
|
|
|
|
|
|
|
/* Exit the main thread. */
|
|
|
|
{
|
|
|
|
auto &main_thread = Kernel::GetMainThread(core_id);
|
|
|
|
main_thread.Open();
|
|
|
|
main_thread.Exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Main() is done, and we should never get to this point. */
|
|
|
|
MESOSPHERE_PANIC("Main Thread continued after exit.");
|
2020-01-29 06:09:47 +00:00
|
|
|
while (true) { /* ... */ }
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|