2020-01-18 09:38:21 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2019-01-11 02:28:53 +01:00
|
|
|
#pragma once
|
|
|
|
|
2019-05-28 11:53:16 +02:00
|
|
|
#include <AK/CircularQueue.h>
|
2019-04-03 12:36:40 +02:00
|
|
|
#include <Kernel/Devices/CharacterDevice.h>
|
2020-02-22 19:53:03 +02:00
|
|
|
#include <Kernel/Interrupts/IRQHandler.h>
|
2019-05-28 11:53:16 +02:00
|
|
|
#include <Kernel/MousePacket.h>
|
2019-01-11 02:28:53 +01:00
|
|
|
|
2020-02-16 01:27:42 +01:00
|
|
|
namespace Kernel {
|
|
|
|
|
2020-01-22 22:23:50 +01:00
|
|
|
class PS2MouseDevice final : public IRQHandler
|
2019-05-28 11:53:16 +02:00
|
|
|
, public CharacterDevice {
|
2019-01-11 02:28:53 +01:00
|
|
|
public:
|
|
|
|
PS2MouseDevice();
|
|
|
|
virtual ~PS2MouseDevice() override;
|
|
|
|
|
2019-01-11 03:52:09 +01:00
|
|
|
static PS2MouseDevice& the();
|
|
|
|
|
2019-01-12 05:20:56 +01:00
|
|
|
// ^CharacterDevice
|
2019-11-04 14:03:14 +01:00
|
|
|
virtual bool can_read(const FileDescription&) const override;
|
2019-07-03 21:17:35 +02:00
|
|
|
virtual ssize_t read(FileDescription&, u8*, ssize_t) override;
|
|
|
|
virtual ssize_t write(FileDescription&, const u8*, ssize_t) override;
|
2019-11-04 14:03:14 +01:00
|
|
|
virtual bool can_write(const FileDescription&) const override { return true; }
|
2019-01-11 02:28:53 +01:00
|
|
|
|
2020-03-05 19:13:55 +02:00
|
|
|
virtual const char* purpose() const override { return class_name(); }
|
|
|
|
|
2019-01-12 05:20:56 +01:00
|
|
|
private:
|
|
|
|
// ^IRQHandler
|
2020-02-04 03:00:50 +02:00
|
|
|
void handle_vmmouse_absolute_pointer();
|
2020-02-22 19:53:03 +02:00
|
|
|
virtual void handle_irq(RegisterState&) override;
|
2019-01-11 02:28:53 +01:00
|
|
|
|
2019-01-21 02:33:01 +01:00
|
|
|
// ^CharacterDevice
|
|
|
|
virtual const char* class_name() const override { return "PS2MouseDevice"; }
|
|
|
|
|
2019-01-11 02:28:53 +01:00
|
|
|
void initialize();
|
2019-08-12 20:49:17 +10:00
|
|
|
void check_device_presence();
|
|
|
|
void initialize_device();
|
2019-01-11 02:28:53 +01:00
|
|
|
void prepare_for_input();
|
|
|
|
void prepare_for_output();
|
2019-07-03 21:17:35 +02:00
|
|
|
void mouse_write(u8);
|
|
|
|
u8 mouse_read();
|
|
|
|
void wait_then_write(u8 port, u8 data);
|
|
|
|
u8 wait_then_read(u8 port);
|
2019-03-05 13:59:44 +01:00
|
|
|
void parse_data_packet();
|
2019-05-13 19:48:14 +02:00
|
|
|
void expect_ack();
|
2019-01-11 02:28:53 +01:00
|
|
|
|
2019-08-12 20:49:17 +10:00
|
|
|
bool m_device_present { false };
|
2019-03-05 13:59:44 +01:00
|
|
|
CircularQueue<MousePacket, 100> m_queue;
|
2019-07-03 21:17:35 +02:00
|
|
|
u8 m_data_state { 0 };
|
|
|
|
u8 m_data[4];
|
2019-05-13 19:48:14 +02:00
|
|
|
bool m_has_wheel { false };
|
2019-01-11 02:28:53 +01:00
|
|
|
};
|
2020-02-16 01:27:42 +01:00
|
|
|
|
|
|
|
}
|