mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 15:05:09 +00:00

This singleton simplifies many aspects that we struggled with before: 1. There's no need to make derived classes of Device expose the constructor as public anymore. The singleton is a friend of them, so he can call the constructor. This solves the issue with try_create_device helper neatly, hopefully for good. 2. Getting a reference of the NullDevice is now being done from this singleton, which means that NullDevice no longer needs to use its own singleton, and we can apply the try_create_device helper on it too :) 3. We can now defer registration completely after the Device constructor which means the Device constructor is merely assigning the major and minor numbers of the Device, and the try_create_device helper ensures it calls the after_inserting method immediately after construction. This creates a great opportunity to make registration more OOM-safe.
63 lines
1.4 KiB
C++
63 lines
1.4 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/CircularQueue.h>
|
|
#include <Kernel/API/MousePacket.h>
|
|
#include <Kernel/Devices/HID/I8042Controller.h>
|
|
#include <Kernel/Devices/HID/MouseDevice.h>
|
|
#include <Kernel/Interrupts/IRQHandler.h>
|
|
#include <Kernel/Random.h>
|
|
|
|
namespace Kernel {
|
|
class PS2MouseDevice : public IRQHandler
|
|
, public MouseDevice
|
|
, public I8042Device {
|
|
friend class DeviceManagement;
|
|
|
|
public:
|
|
static RefPtr<PS2MouseDevice> try_to_initialize(const I8042Controller&);
|
|
bool initialize();
|
|
|
|
virtual ~PS2MouseDevice() override;
|
|
|
|
virtual StringView purpose() const override { return class_name(); }
|
|
|
|
// ^I8042Device
|
|
virtual void irq_handle_byte_read(u8 byte) override;
|
|
virtual void enable_interrupts() override
|
|
{
|
|
enable_irq();
|
|
}
|
|
|
|
protected:
|
|
explicit PS2MouseDevice(const I8042Controller&);
|
|
|
|
// ^IRQHandler
|
|
virtual bool handle_irq(const RegisterState&) override;
|
|
|
|
struct RawPacket {
|
|
union {
|
|
u32 dword;
|
|
u8 bytes[4];
|
|
};
|
|
};
|
|
|
|
u8 read_from_device();
|
|
u8 send_command(u8 command);
|
|
u8 send_command(u8 command, u8 data);
|
|
MousePacket parse_data_packet(const RawPacket&);
|
|
void set_sample_rate(u8);
|
|
u8 get_device_id();
|
|
|
|
u8 m_data_state { 0 };
|
|
RawPacket m_data;
|
|
bool m_has_wheel { false };
|
|
bool m_has_five_buttons { false };
|
|
};
|
|
|
|
}
|