2020-01-18 11:38:21 +03: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 04:28:53 +03:00
|
|
|
#pragma once
|
|
|
|
|
2019-05-28 12:53:16 +03:00
|
|
|
#include <AK/CircularQueue.h>
|
2019-04-03 13:36:40 +03:00
|
|
|
#include <Kernel/Devices/CharacterDevice.h>
|
2020-01-23 00:23:50 +03:00
|
|
|
#include <Kernel/IRQHandler.h>
|
2019-05-28 12:53:16 +03:00
|
|
|
#include <Kernel/MousePacket.h>
|
2019-01-11 04:28:53 +03:00
|
|
|
|
2020-01-23 00:23:50 +03:00
|
|
|
class PS2MouseDevice final : public IRQHandler
|
2019-05-28 12:53:16 +03:00
|
|
|
, public CharacterDevice {
|
2019-01-11 04:28:53 +03:00
|
|
|
public:
|
|
|
|
PS2MouseDevice();
|
|
|
|
virtual ~PS2MouseDevice() override;
|
|
|
|
|
2019-01-11 05:52:09 +03:00
|
|
|
static PS2MouseDevice& the();
|
|
|
|
|
2019-01-12 07:20:56 +03:00
|
|
|
// ^CharacterDevice
|
2019-11-04 16:03:14 +03:00
|
|
|
virtual bool can_read(const FileDescription&) const override;
|
2019-07-03 22:17:35 +03:00
|
|
|
virtual ssize_t read(FileDescription&, u8*, ssize_t) override;
|
|
|
|
virtual ssize_t write(FileDescription&, const u8*, ssize_t) override;
|
2019-11-04 16:03:14 +03:00
|
|
|
virtual bool can_write(const FileDescription&) const override { return true; }
|
2019-01-11 04:28:53 +03:00
|
|
|
|
2019-01-12 07:20:56 +03:00
|
|
|
private:
|
|
|
|
// ^IRQHandler
|
2020-01-23 00:23:50 +03:00
|
|
|
virtual void handle_irq() override;
|
2019-01-11 04:28:53 +03:00
|
|
|
|
2019-01-21 04:33:01 +03:00
|
|
|
// ^CharacterDevice
|
|
|
|
virtual const char* class_name() const override { return "PS2MouseDevice"; }
|
|
|
|
|
2019-01-11 04:28:53 +03:00
|
|
|
void initialize();
|
2019-08-12 13:49:17 +03:00
|
|
|
void check_device_presence();
|
|
|
|
void initialize_device();
|
2019-01-11 04:28:53 +03:00
|
|
|
void prepare_for_input();
|
|
|
|
void prepare_for_output();
|
2019-07-03 22:17:35 +03: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 15:59:44 +03:00
|
|
|
void parse_data_packet();
|
2019-05-13 20:48:14 +03:00
|
|
|
void expect_ack();
|
2019-01-11 04:28:53 +03:00
|
|
|
|
2019-08-12 13:49:17 +03:00
|
|
|
bool m_device_present { false };
|
2019-03-05 15:59:44 +03:00
|
|
|
CircularQueue<MousePacket, 100> m_queue;
|
2019-07-03 22:17:35 +03:00
|
|
|
u8 m_data_state { 0 };
|
|
|
|
u8 m_data[4];
|
2019-05-13 20:48:14 +03:00
|
|
|
bool m_has_wheel { false };
|
2019-01-11 04:28:53 +03:00
|
|
|
};
|