Project

General

Profile

Statistics
| Revision:

root / lab2 / timer.c @ 28

History | View | Annotate | Download (3.52 KB)

1 4 up20180655
#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 18 up20180655
10
    // Frequencies out this range are not supported (by limitation of hardware)
11 27 up20180655
    if (freq > TIMER_FREQ || freq < TIMER_MIN_FREQ) {
12
        printf("%s: Frequency out of range, must be between %d and %d.\n", __func__, TIMER_MIN_FREQ, TIMER_FREQ);
13
        return 1;
14
    }
15 18 up20180655
16 10 up20180655
    uint8_t status = 0;
17
    if (timer_get_conf(timer, &status)) return 1;
18
    //Make command
19
    uint8_t write_cmd = 0;
20
    //Select timer
21
    switch(timer) {
22 11 up20180655
        case 0: write_cmd |= TIMER_SEL0; break;
23
        case 1: write_cmd |= TIMER_SEL1; break;
24
        case 2: write_cmd |= TIMER_SEL2; break;
25
        default: return 1;               break;
26 10 up20180655
    }
27
    //Change both LSB and MSB
28
    write_cmd |= TIMER_LSB_MSB;
29
    //Keep 4 least significant bits
30
    write_cmd |= (status & (TIMER_MODE_MASK | TIMER_BCD));
31
    //Write cmd
32 11 up20180655
    if (sys_outb(TIMER_CTRL, write_cmd)) return 1;
33 10 up20180655
34 11 up20180655
    // counter_init = clock/freq
35 15 up20180655
    uint16_t counter_init = (uint16_t)(TIMER_FREQ / freq);
36 10 up20180655
37 11 up20180655
    int timer_port = 0;
38
    switch(timer) {
39 12 up20180655
        case 0: timer_port = TIMER_0; break;
40
        case 1: timer_port = TIMER_1; break;
41
        case 2: timer_port = TIMER_2; break;
42 15 up20180655
        default: return 1;            break;
43 11 up20180655
    }
44 15 up20180655
    uint8_t lsb = 0, msb = 0;
45
    if (util_get_LSB(counter_init, &lsb)) return 1;
46
    if (util_get_MSB(counter_init, &msb)) return 1;
47 11 up20180655
48 15 up20180655
    if (sys_outb(timer_port, lsb)) return 1;
49
    if (sys_outb(timer_port, msb)) return 1;
50 11 up20180655
51 15 up20180655
    return 0;
52 4 up20180655
}
53
54 27 up20180655
int hook_id;
55 22 up20180642
56 4 up20180655
int (timer_subscribe_int)(uint8_t *bit_no) {
57 27 up20180655
    hook_id = 2;
58 26 up20180642
    if(bit_no == NULL) return 1;
59 25 up20180655
    *bit_no = hook_id;
60 27 up20180655
    return sys_irqsetpolicy(TIMER0_IRQ, IRQ_REENABLE, &hook_id);
61 4 up20180655
}
62
63 22 up20180642
int (timer_unsubscribe_int)() {
64 19 up20180642
    if(sys_irqrmpolicy(&hook_id)) return 1;
65
    return 0;
66 4 up20180655
}
67
68 26 up20180642
int no_interrupts = 0;
69 4 up20180655
void (timer_int_handler)() {
70 20 up20180655
    no_interrupts++;
71 4 up20180655
}
72
73
int (timer_get_conf)(uint8_t timer, uint8_t *st) {
74 26 up20180642
    if(st == NULL) return 1;
75 9 up20180642
    // Write read-back command to TIMER_CTRL
76 5 up20180642
    u32_t cmd = TIMER_RB_CMD | TIMER_RB_COUNT_ | TIMER_RB_SEL(timer);
77 10 up20180655
    if(sys_outb(TIMER_CTRL, cmd)) return 1;
78 5 up20180642
    int read_port;
79 7 up20180655
    switch(timer) {
80 5 up20180642
        case 0: read_port = TIMER_0; break;
81
        case 1: read_port = TIMER_1; break;
82
        case 2: read_port = TIMER_2; break;
83 6 up20180642
        default: return 1;           break;
84 5 up20180642
    }
85
    if(util_sys_inb(read_port, st)) return 1;
86
    return 0;
87 4 up20180655
}
88
89 6 up20180642
int (timer_display_conf)(uint8_t timer, uint8_t st, enum timer_status_field field) {
90
    union timer_status_field_val conf;
91
    uint8_t in_mode;
92 16 up20180642
    switch(field){
93
        case tsf_all:
94
            conf.byte = st;
95
            break;
96
        case tsf_initial:
97
            in_mode = (st & TIMER_INMODE_MASK) >> TIMER_INMODE_POS;
98
            switch(in_mode){
99
                case 0: conf.in_mode = INVAL_val    ; break; //000
100
                case 1: conf.in_mode = LSB_only     ; break; //001
101
                case 2: conf.in_mode = MSB_only     ; break; //010
102
                case 3: conf.in_mode = MSB_after_LSB; break; //011
103
                default: return 1; break;
104
            }
105
            break;
106
        case tsf_mode:
107
            conf.count_mode = (st & TIMER_MODE_MASK)>>TIMER_MODE_POS;
108 17 up20180642
            if(conf.count_mode == TIMER_MODE_2ALT || conf.count_mode == TIMER_MODE_3ALT)
109 16 up20180642
                conf.count_mode &= TIMER_MODE_RED2;
110
            break;
111
        case tsf_base:
112
            conf.bcd = st & TIMER_BCD;
113
            break;
114
        default: return 1; break;
115 5 up20180642
    }
116 16 up20180642
    if(timer_print_config(timer, field, conf)) return 1;
117 6 up20180642
    return 0;
118
}