about summary refs log tree commit diff stats
path: root/kernel.soso/mouse.c
blob: c7ca2d5c3c8f428c3d93af31e36a4e11adbfc5f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
#include "mouse.h"
#include "isr.h"
#include "common.h"
#include "device.h"
#include "alloc.h"
#include "devfs.h"
#include "list.h"
#include "fifobuffer.h"
#include "spinlock.h"

static void handleMouseInterrupt(Registers *regs);

static uint8 gMouseByteCounter = 0;

static void prepareForRead();
static void prepareForWrite();
static void writeMouse(uint8 data);
static void handleMouseInterrupt(Registers *regs);

static BOOL mouse_open(File *file, uint32 flags);
static void mouse_close(File *file);
static int32 mouse_read(File *file, uint32 size, uint8 *buffer);

#define MOUSE_PACKET_SIZE 3

uint8 gMousePacket[MOUSE_PACKET_SIZE];

static List* gReaders = NULL;

static Spinlock gReadersLock;

void initializeMouse()
{
    Device device;
    memset((uint8*)&device, 0, sizeof(Device));
    strcpy(device.name, "psaux");
    device.deviceType = FT_CharacterDevice;
    device.open = mouse_open;
    device.close = mouse_close;
    device.read = mouse_read;
    registerInterruptHandler(IRQ12, handleMouseInterrupt);

    registerDevice(&device);

    memset(gMousePacket, 0, MOUSE_PACKET_SIZE);

    gReaders = List_Create();

    Spinlock_Init(&gReadersLock);

    prepareForWrite();

    outb(0x64, 0x20); //get status command

    uint8 status = inb(0x60);
    status = status | 2; //enable IRQ12

    outb(0x64, 0x60); //set status command
    outb(0x60, status);

    outb(0x64, 0xA8); //enable Auxiliary Device command

    writeMouse(0xF4); //0xF4: Enable Packet Streaming
}

static BOOL mouse_open(File *file, uint32 flags)
{
    FifoBuffer* fifo = FifoBuffer_create(60);

    file->privateData = (void*)fifo;

    Spinlock_Lock(&gReadersLock);

    List_Append(gReaders, file);

    Spinlock_Unlock(&gReadersLock);

    return TRUE;
}

static void mouse_close(File *file)
{
    Spinlock_Lock(&gReadersLock);

    List_RemoveFirstOccurrence(gReaders, file);

    Spinlock_Unlock(&gReadersLock);

    FifoBuffer* fifo = (FifoBuffer*)file->privateData;

    FifoBuffer_destroy(fifo);
}

static int32 mouse_read(File *file, uint32 size, uint8 *buffer)
{
    FifoBuffer* fifo = (FifoBuffer*)file->privateData;

    while (FifoBuffer_getSize(fifo) < MOUSE_PACKET_SIZE)
    {
        file->thread->state = TS_WAITIO;
        file->thread->state_privateData = mouse_read;
        enableInterrupts();
        halt();
    }

    disableInterrupts();


    uint32 available = FifoBuffer_getSize(fifo);
    uint32 smaller = MIN(available, size);

    FifoBuffer_dequeue(fifo, buffer, smaller);

    return smaller;
}

static void prepareForRead()
{
    //https://wiki.osdev.org/Mouse_Input
    //Bytes cannot be read from port 0x60 until bit 0 (value=1) of port 0x64 is set

    int32 tryCount = 1000;

    uint8 data = 0;
    do
    {
        data = inb(0x64);
    } while (((data & 0x01) == 0) && --tryCount > 0);
}

static void prepareForWrite()
{
    //https://wiki.osdev.org/Mouse_Input
    //All output to port 0x60 or 0x64 must be preceded by waiting for bit 1 (value=2) of port 0x64 to become clear

    int32 tryCount = 1000;

    uint8 data = 0;
    do
    {
        data = inb(0x64);
    } while (((data & 0x02) != 0) && --tryCount > 0);
}

static void writeMouse(uint8 data)
{
    prepareForWrite();

    outb(0x64, 0xD4);

    prepareForWrite();

    outb(0x60, data);
}

static void handleMouseInterrupt(Registers *regs)
{
    uint8 status = 0;
    //0x20 (5th bit is mouse bit)
    //read from 0x64, if its mouse bit is 1 then data is available at 0x60!

    int32 tryCount = 1000;
    do
    {
        status = inb(0x64);
    } while (((status & 0x20) == 0) && --tryCount > 0);

    uint8 data = inb(0x60);

    gMousePacket[gMouseByteCounter] = data;

    gMouseByteCounter += 1;

    if (gMouseByteCounter == MOUSE_PACKET_SIZE)
    {
        gMouseByteCounter = 0;

        Spinlock_Lock(&gReadersLock);

        //Wake readers
        List_Foreach(n, gReaders)
        {
            File* file = n->data;

            FifoBuffer* fifo = (FifoBuffer*)file->privateData;

            FifoBuffer_enqueue(fifo, gMousePacket, MOUSE_PACKET_SIZE);

            if (file->thread->state == TS_WAITIO)
            {
                if (file->thread->state_privateData == mouse_read)
                {
                    file->thread->state = TS_RUN;
                    file->thread->state_privateData = NULL;
                }
            }
        }

        Spinlock_Unlock(&gReadersLock);
    }

    //printkf("mouse:%d\n", data);
}