2020-02-07 19:51:58 +00:00
|
|
|
/*
|
2021-10-04 19:59:10 +00:00
|
|
|
* Copyright (c) Atmosphère-NX
|
2020-02-07 19:51:58 +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/>.
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <mesosphere/kern_common.hpp>
|
|
|
|
#include <mesosphere/kern_k_auto_object.hpp>
|
|
|
|
#include <mesosphere/kern_slab_helpers.hpp>
|
|
|
|
#include <mesosphere/kern_k_readable_event.hpp>
|
|
|
|
#include <mesosphere/kern_k_interrupt_task.hpp>
|
|
|
|
|
|
|
|
namespace ams::kern {
|
|
|
|
|
2022-10-12 04:49:39 +00:00
|
|
|
class KInterruptEvent final : public KAutoObjectWithSlabHeapAndContainer<KInterruptEvent, KReadableEvent>, public KInterruptTask {
|
2020-02-07 19:51:58 +00:00
|
|
|
MESOSPHERE_AUTOOBJECT_TRAITS(KInterruptEvent, KReadableEvent);
|
2020-07-14 10:26:02 +00:00
|
|
|
private:
|
2020-12-18 01:18:47 +00:00
|
|
|
s32 m_interrupt_id;
|
2021-04-07 08:25:42 +00:00
|
|
|
s32 m_core_id;
|
2020-12-18 01:18:47 +00:00
|
|
|
bool m_is_initialized;
|
2020-02-07 19:51:58 +00:00
|
|
|
public:
|
2021-10-23 22:25:20 +00:00
|
|
|
constexpr explicit KInterruptEvent(util::ConstantInitializeTag) : KAutoObjectWithSlabHeapAndContainer<KInterruptEvent, KReadableEvent>(util::ConstantInitialize), m_interrupt_id(-1), m_core_id(-1), m_is_initialized(false) { /* ... */ }
|
|
|
|
|
|
|
|
explicit KInterruptEvent() : m_interrupt_id(-1), m_is_initialized(false) { /* ... */ }
|
2020-07-14 10:26:02 +00:00
|
|
|
|
|
|
|
Result Initialize(int32_t interrupt_name, ams::svc::InterruptType type);
|
2021-10-24 04:13:26 +00:00
|
|
|
void Finalize();
|
2020-07-14 10:26:02 +00:00
|
|
|
|
2021-10-25 03:41:38 +00:00
|
|
|
Result Reset();
|
|
|
|
|
|
|
|
Result Clear() {
|
|
|
|
MESOSPHERE_ASSERT_THIS();
|
|
|
|
|
|
|
|
/* Try to perform a reset, succeeding unconditionally. */
|
|
|
|
this->Reset();
|
|
|
|
|
2022-02-14 22:45:32 +00:00
|
|
|
R_SUCCEED();
|
2021-10-25 03:41:38 +00:00
|
|
|
}
|
2020-07-14 10:26:02 +00:00
|
|
|
|
2021-10-24 04:13:26 +00:00
|
|
|
bool IsInitialized() const { return m_is_initialized; }
|
2020-07-14 10:26:02 +00:00
|
|
|
|
2020-08-21 00:29:10 +00:00
|
|
|
static void PostDestroy(uintptr_t arg) { MESOSPHERE_UNUSED(arg); /* ... */ }
|
2020-07-14 10:26:02 +00:00
|
|
|
|
2020-12-18 01:18:47 +00:00
|
|
|
constexpr s32 GetInterruptId() const { return m_interrupt_id; }
|
2020-07-14 10:26:02 +00:00
|
|
|
|
|
|
|
virtual KInterruptTask *OnInterrupt(s32 interrupt_id) override;
|
|
|
|
virtual void DoTask() override;
|
2020-02-07 19:51:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|