sortix-mirror/kernel/kb/ps2.h

86 lines
2.1 KiB
C
Raw Normal View History

2012-08-01 18:53:51 +00:00
/*******************************************************************************
2015-04-30 22:07:06 +00:00
Copyright(C) Jonas 'Sortie' Termansen 2011, 2012, 2014, 2015.
This file is part of Sortix.
Sortix is free software: you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
version.
Sortix is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
details.
You should have received a copy of the GNU General Public License along with
Sortix. If not, see <http://www.gnu.org/licenses/>.
kb/ps2.h
2015-04-30 22:07:06 +00:00
PS2 Keyboard.
2012-08-01 18:53:51 +00:00
*******************************************************************************/
#ifndef SORTIX_KB_PS2_H
#define SORTIX_KB_PS2_H
#include <stddef.h>
#include <stdint.h>
2012-08-01 18:53:51 +00:00
#include <sortix/kernel/kthread.h>
#include <sortix/kernel/keyboard.h>
2015-04-30 22:07:06 +00:00
#include <sortix/kernel/ps2.h>
namespace Sortix {
2015-04-30 22:07:06 +00:00
class PS2Keyboard : public Keyboard, public PS2Device
{
public:
2015-04-30 22:07:06 +00:00
PS2Keyboard();
virtual ~PS2Keyboard();
virtual int Read();
virtual size_t GetPending() const;
virtual bool HasPending() const;
virtual void SetOwner(KeyboardOwner* owner, void* user);
2015-04-30 22:07:06 +00:00
virtual void PS2DeviceInitialize(void* send_ctx, bool (*send)(void*, uint8_t),
uint8_t* id, size_t id_size);
virtual void PS2DeviceOnByte(uint8_t byte);
private:
2015-04-30 22:07:06 +00:00
void OnKeyboardKey(int kbkey);
void UpdateLEDs(int ledval);
bool PushKey(int key);
int PopKey();
void NotifyOwner();
private:
2015-04-30 22:07:06 +00:00
mutable kthread_mutex_t kblock;
int* queue;
size_t queuelength;
size_t queueoffset;
size_t queueused;
KeyboardOwner* owner;
void* ownerptr;
2015-04-30 22:07:06 +00:00
void* send_ctx;
bool (*send)(void*, uint8_t);
enum
{
STATE_INIT = 0,
STATE_RESET_LED,
STATE_RESET_TYPEMATIC,
STATE_ENABLE_SCAN,
STATE_NORMAL,
STATE_NORMAL_ESCAPED,
} state;
size_t tries;
uint8_t leds;
2015-04-30 22:07:06 +00:00
uint8_t id[2];
size_t id_size;
};
} // namespace Sortix
#endif