forked from Bananymous/banan-os
42 lines
787 B
C++
42 lines
787 B
C++
#pragma once
|
|
|
|
#include <kernel/Device/Device.h>
|
|
#include <kernel/InterruptController.h>
|
|
|
|
namespace Kernel::Input
|
|
{
|
|
|
|
class PS2Device : public CharacterDevice, public Interruptable
|
|
{
|
|
public:
|
|
PS2Device();
|
|
virtual ~PS2Device() {}
|
|
|
|
virtual BAN::StringView name() const override { return m_name; }
|
|
|
|
private:
|
|
const BAN::String m_name;
|
|
};
|
|
|
|
class PS2Controller
|
|
{
|
|
public:
|
|
static BAN::ErrorOr<void> initialize();
|
|
static PS2Controller& get();
|
|
|
|
void send_byte(const PS2Device*, uint8_t);
|
|
|
|
private:
|
|
PS2Controller() = default;
|
|
BAN::ErrorOr<void> initialize_impl();
|
|
BAN::ErrorOr<void> initialize_device(uint8_t);
|
|
|
|
BAN::ErrorOr<void> reset_device(uint8_t);
|
|
BAN::ErrorOr<void> set_scanning(uint8_t, bool);
|
|
|
|
private:
|
|
PS2Device* m_devices[2] { nullptr, nullptr };
|
|
};
|
|
|
|
}
|