Project

General

Profile

Statistics
| Revision:

root / lab4 / keyboard.c @ 383

History | View | Annotate | Download (1.43 KB)

1 68 up20180642
#include <lcom/lcf.h>
2
3
#include "keyboard.h"
4
5
#include "kbc.h"
6
#include "kbc_macros.h"
7
#include "utils.h"
8
#include "errors.h"
9
10
int (subscribe_kbc_interrupt)(uint8_t interrupt_bit, int *interrupt_id) {
11
    if (interrupt_id == NULL) return NULL_PTR;
12
    *interrupt_id = interrupt_bit;
13
    if(sys_irqsetpolicy(KBC_IRQ, IRQ_REENABLE | IRQ_EXCLUSIVE, interrupt_id)) return SBCR_ERROR;
14
    return SUCCESS;
15
}
16
17
int done = 1;
18
int sz = 1;
19
int got_error_keyboard = SUCCESS;
20
21
void (kbc_ih)(void) {
22
    if(done) sz = 1;
23
    else     sz++;
24
    uint8_t status = 0;
25
    got_error_keyboard = SUCCESS;
26
    if ((got_error_keyboard = util_sys_inb(STATUS_REG, &status))) return;
27
    if (status & (TIME_OUT_REC | PARITY_ERROR)) {
28
        got_error_keyboard = 1;
29
        return;
30
    }
31
    if ((status & OUT_BUF_FUL) == 0 || (status & AUX_MOUSE) != 0) {
32 90 up20180655
        got_error_keyboard = READ_ERROR;
33 68 up20180642
        return;
34
    }
35
    uint8_t byte = 0;
36
    if ((got_error_keyboard = util_sys_inb(OUTPUT_BUF, &byte))) return;
37
38
    scancode[sz-1] = byte;
39
    done = !(TWO_BYTE_CODE == byte);
40
}
41
42
int (keyboard_poll)(uint8_t bytes[], uint8_t *size){
43
    int ret = 0;
44
    if(bytes == NULL || size == NULL) return NULL_PTR;
45
    uint8_t c;
46
    if((ret = kbc_read_byte(&c))) return ret;
47
    if(c == TWO_BYTE_CODE){
48
        if((ret = kbc_read_byte(&bytes[1]))) return ret;
49
        bytes[0] = c;
50
        *size = 2;
51
    }else{
52
        bytes[1] = 0;
53
        bytes[0] = c;
54
        *size = 1;
55
    }
56
    return SUCCESS;
57
}