forked from Bananymous/banan-os
43 lines
784 B
C++
43 lines
784 B
C++
#pragma once
|
|
|
|
#include <kernel/Device/Device.h>
|
|
|
|
namespace Kernel::Input
|
|
{
|
|
|
|
class PS2Device : public CharacterDevice
|
|
{
|
|
public:
|
|
virtual ~PS2Device() {}
|
|
virtual void on_byte(uint8_t) = 0;
|
|
|
|
public:
|
|
PS2Device()
|
|
: CharacterDevice(Mode::IRUSR | Mode::IRGRP, 0, 0)
|
|
{ }
|
|
};
|
|
|
|
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);
|
|
|
|
static void device0_irq();
|
|
static void device1_irq();
|
|
|
|
private:
|
|
PS2Device* m_devices[2] { nullptr, nullptr };
|
|
};
|
|
|
|
} |