mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 17:31:58 -05:00
0482f4e117
Linux did the same thing 18 years ago and their reasons for the change are similar to ours - https://github.com/torvalds/linux/commit/7d12e78 Most interrupt handlers (i.e. IRQ handlers) never used the register state reference anywhere so there's simply no need of passing it around. I didn't measure the performance boost but surely this change can't make things worse anyway.
46 lines
1.3 KiB
C++
46 lines
1.3 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
#include <Kernel/Arch/IRQController.h>
|
|
#include <Kernel/Interrupts/GenericInterruptHandler.h>
|
|
#include <Kernel/Library/LockRefPtr.h>
|
|
|
|
namespace Kernel {
|
|
|
|
class IRQHandler : public GenericInterruptHandler {
|
|
public:
|
|
virtual ~IRQHandler();
|
|
|
|
virtual bool handle_interrupt() override { return handle_irq(); }
|
|
virtual bool handle_irq() = 0;
|
|
|
|
void enable_irq();
|
|
void disable_irq();
|
|
|
|
virtual bool eoi() override;
|
|
|
|
virtual HandlerType type() const override { return HandlerType::IRQHandler; }
|
|
virtual StringView purpose() const override { return "IRQ Handler"sv; }
|
|
virtual StringView controller() const override { return m_responsible_irq_controller->model(); }
|
|
|
|
virtual size_t sharing_devices_count() const override { return 0; }
|
|
virtual bool is_shared_handler() const override { return false; }
|
|
void set_shared_with_others(bool status) { m_shared_with_others = status; }
|
|
|
|
protected:
|
|
void change_irq_number(u8 irq);
|
|
explicit IRQHandler(u8 irq);
|
|
|
|
private:
|
|
bool m_shared_with_others { false };
|
|
bool m_enabled { false };
|
|
NonnullLockRefPtr<IRQController> m_responsible_irq_controller;
|
|
};
|
|
|
|
}
|