2019-12-13 09:21:43 +00:00
|
|
|
/*
|
2020-01-24 10:10:40 +00:00
|
|
|
* Copyright (c) 2018-2020 Atmosphère-NX
|
2019-12-13 09:21:43 +00:00
|
|
|
*
|
|
|
|
* 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-01-29 22:26:24 +00:00
|
|
|
void KInterruptTaskManager::TaskQueue::Enqueue(KInterruptTask *task) {
|
2020-02-10 10:26:00 +00:00
|
|
|
MESOSPHERE_ASSERT(task->GetNextTask() == nullptr);
|
|
|
|
MESOSPHERE_ASSERT(task != this->head);
|
|
|
|
MESOSPHERE_ASSERT(task != this->tail);
|
|
|
|
|
2020-01-29 22:26:24 +00:00
|
|
|
/* Insert the task into the queue. */
|
|
|
|
if (this->tail != nullptr) {
|
|
|
|
this->tail->SetNextTask(task);
|
|
|
|
} else {
|
|
|
|
this->head = task;
|
|
|
|
}
|
2019-12-13 09:21:43 +00:00
|
|
|
|
2020-01-29 22:26:24 +00:00
|
|
|
this->tail = task;
|
2019-12-13 09:21:43 +00:00
|
|
|
}
|
|
|
|
|
2020-01-29 22:26:24 +00:00
|
|
|
void KInterruptTaskManager::TaskQueue::Dequeue() {
|
2020-02-10 10:26:00 +00:00
|
|
|
MESOSPHERE_ASSERT(this->head != nullptr);
|
|
|
|
MESOSPHERE_ASSERT(this->tail != nullptr);
|
|
|
|
|
|
|
|
/* Pop the task from the front of the queue. */
|
2020-01-29 22:26:24 +00:00
|
|
|
if (this->head == this->tail) {
|
|
|
|
this->head = nullptr;
|
|
|
|
this->tail = nullptr;
|
|
|
|
} else {
|
|
|
|
this->head = this->head->GetNextTask();
|
|
|
|
}
|
2019-12-13 09:21:43 +00:00
|
|
|
}
|
|
|
|
|
2020-02-10 10:26:00 +00:00
|
|
|
void KInterruptTaskManager::ThreadFunction(uintptr_t arg) {
|
|
|
|
reinterpret_cast<KInterruptTaskManager *>(arg)->ThreadFunctionImpl();
|
|
|
|
}
|
|
|
|
|
|
|
|
void KInterruptTaskManager::ThreadFunctionImpl() {
|
|
|
|
MESOSPHERE_ASSERT_THIS();
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
/* Get a task. */
|
|
|
|
KInterruptTask *task = nullptr;
|
|
|
|
{
|
|
|
|
KScopedInterruptDisable di;
|
|
|
|
|
|
|
|
task = this->task_queue.GetHead();
|
|
|
|
if (task == nullptr) {
|
|
|
|
this->thread->SetState(KThread::ThreadState_Waiting);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
this->task_queue.Dequeue();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Do the task. */
|
|
|
|
task->DoTask();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void KInterruptTaskManager::Initialize() {
|
|
|
|
/* Reserve a thread from the system limit. */
|
|
|
|
MESOSPHERE_ABORT_UNLESS(Kernel::GetSystemResourceLimit().Reserve(ams::svc::LimitableResource_ThreadCountMax, 1));
|
|
|
|
|
|
|
|
/* Create and initialize the thread. */
|
|
|
|
this->thread = KThread::Create();
|
|
|
|
MESOSPHERE_ABORT_UNLESS(this->thread != nullptr);
|
|
|
|
MESOSPHERE_R_ABORT_UNLESS(KThread::InitializeHighPriorityThread(this->thread, ThreadFunction, reinterpret_cast<uintptr_t>(this)));
|
|
|
|
KThread::Register(this->thread);
|
|
|
|
|
|
|
|
/* Run the thread. */
|
|
|
|
this->thread->Run();
|
|
|
|
}
|
|
|
|
|
|
|
|
void KInterruptTaskManager::EnqueueTask(KInterruptTask *task) {
|
|
|
|
MESOSPHERE_ASSERT(!KInterruptManager::AreInterruptsEnabled());
|
|
|
|
|
2020-02-21 21:05:16 +00:00
|
|
|
/* Enqueue the task and signal the scheduler. */
|
|
|
|
this->task_queue.Enqueue(task);
|
|
|
|
Kernel::GetScheduler().SetInterruptTaskThreadRunnable();
|
2020-02-10 10:26:00 +00:00
|
|
|
}
|
|
|
|
|
2019-12-13 09:21:43 +00:00
|
|
|
}
|