Project

General

Profile

Statistics
| Revision:

root / lab2 / timer.c @ 20

History | View | Annotate | Download (3.44 KB)

1
#include <lcom/lcf.h>
2
#include <lcom/timer.h>
3

    
4
#include <stdint.h>
5

    
6
#include "i8254.h"
7

    
8
int (timer_set_frequency)(uint8_t timer, uint32_t freq) {
9

    
10
    // Frequencies out this range are not supported (by limitation of hardware)
11
    if (freq > TIMER_FREQ || freq < TIMER_MIN_FREQ) return 1;
12

    
13
    uint8_t status = 0;
14
    if (timer_get_conf(timer, &status)) return 1;
15
    //Make command
16
    uint8_t write_cmd = 0;
17
    //Select timer
18
    switch(timer) {
19
        case 0: write_cmd |= TIMER_SEL0; break;
20
        case 1: write_cmd |= TIMER_SEL1; break;
21
        case 2: write_cmd |= TIMER_SEL2; break;
22
        default: return 1;               break;
23
    }
24
    //Change both LSB and MSB
25
    write_cmd |= TIMER_LSB_MSB;
26
    //Keep 4 least significant bits
27
    write_cmd |= (status & (TIMER_MODE_MASK | TIMER_BCD));
28
    //Write cmd
29
    if (sys_outb(TIMER_CTRL, write_cmd)) return 1;
30

    
31
    // counter_init = clock/freq
32
    uint16_t counter_init = (uint16_t)(TIMER_FREQ / freq);
33

    
34
    int timer_port = 0;
35
    switch(timer) {
36
        case 0: timer_port = TIMER_0; break;
37
        case 1: timer_port = TIMER_1; break;
38
        case 2: timer_port = TIMER_2; break;
39
        default: return 1;            break;
40
    }
41
    uint8_t lsb = 0, msb = 0;
42
    if (util_get_LSB(counter_init, &lsb)) return 1;
43
    if (util_get_MSB(counter_init, &msb)) return 1;
44

    
45
    if (sys_outb(timer_port, lsb)) return 1;
46
    if (sys_outb(timer_port, msb)) return 1;
47

    
48
    return 0;
49
}
50

    
51
int (timer_subscribe_int)(uint8_t *bit_no) {
52
    int hook_id = 2;
53
    if(sys_irqsetpolicy(TIMER0_IRQ, IRQ_REENABLE, &hook_id)) return 1;
54
    *bit_no = hook_id;
55
    return 0;
56
}
57

    
58
int (timer_unsubscribe_int)(uint8_t *bit_no) {
59
    int hook_id = *bit_no;
60
    if(sys_irqrmpolicy(&hook_id)) return 1;
61
    *bit_no = hook_id;
62
    return 0;
63
}
64

    
65
void (timer_int_handler)() {
66
    int no_interrupts = 0; //should be the global
67

    
68
    no_interrupts++;
69
}
70

    
71
int (timer_get_conf)(uint8_t timer, uint8_t *st) {
72
    // Write read-back command to TIMER_CTRL
73
    u32_t cmd = TIMER_RB_CMD | TIMER_RB_COUNT_ | TIMER_RB_SEL(timer);
74
    if(sys_outb(TIMER_CTRL, cmd)) return 1;
75

    
76
    int read_port;
77
    switch(timer) {
78
        case 0: read_port = TIMER_0; break;
79
        case 1: read_port = TIMER_1; break;
80
        case 2: read_port = TIMER_2; break;
81
        default: return 1;           break;
82
    }
83
    if(util_sys_inb(read_port, st)) return 1;
84
    return 0;
85
}
86

    
87
int (timer_display_conf)(uint8_t timer, uint8_t st, enum timer_status_field field) {
88
    union timer_status_field_val conf;
89
    uint8_t in_mode;
90
    switch(field){
91
        case tsf_all:
92
            conf.byte = st;
93
            break;
94
        case tsf_initial:
95
            in_mode = (st & TIMER_INMODE_MASK) >> TIMER_INMODE_POS;
96
            switch(in_mode){
97
                case 0: conf.in_mode = INVAL_val    ; break; //000
98
                case 1: conf.in_mode = LSB_only     ; break; //001
99
                case 2: conf.in_mode = MSB_only     ; break; //010
100
                case 3: conf.in_mode = MSB_after_LSB; break; //011
101
                default: return 1; break;
102
            }
103
            break;
104
        case tsf_mode:
105
            conf.count_mode = (st & TIMER_MODE_MASK)>>TIMER_MODE_POS;
106
            if(conf.count_mode == TIMER_MODE_2ALT || conf.count_mode == TIMER_MODE_3ALT)
107
                conf.count_mode &= TIMER_MODE_RED2;
108
            break;
109
        case tsf_base:
110
            conf.bcd = st & TIMER_BCD;
111
            break;
112
        default: return 1; break;
113
    }
114
    if(timer_print_config(timer, field, conf)) return 1;
115
    return 0;
116
}