Project

General

Profile

Statistics
| Revision:

root / lab2 / timer.c @ 189

History | View | Annotate | Download (3.82 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) {
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

    
16
    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
        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;
26
    }
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
    if (sys_outb(TIMER_CTRL, write_cmd)) return 1;
33

    
34
    // counter_init = clock/freq
35
    uint16_t counter_init = (uint16_t)(TIMER_FREQ / freq);
36

    
37
    int timer_port = 0;
38
    switch(timer) {
39
        case 0: timer_port = TIMER_0; break;
40
        case 1: timer_port = TIMER_1; break;
41
        case 2: timer_port = TIMER_2; break;
42
        default: return 1;
43
    }
44
    uint8_t lsb = 0, msb = 0;
45
    /* Split the 16 bits word in two bytes */
46
    if (util_get_LSB(counter_init, &lsb)) return 1;
47
    if (util_get_MSB(counter_init, &msb)) return 1;
48

    
49
    /* Write the 8 LSB of the counter */
50
    if (sys_outb(timer_port, lsb)) return 1;
51
    /* Write the 8 MSB of the counter */
52
    if (sys_outb(timer_port, msb)) return 1;
53

    
54
    return 0;
55
}
56

    
57
int hook_id;
58

    
59
int (timer_subscribe_int)(uint8_t *bit_no) {
60
    if(bit_no == NULL) return 1;
61
    hook_id = 2;
62
    *bit_no = hook_id;
63
    /* Subscribe Timer 0 Interrupts */
64
    return sys_irqsetpolicy(TIMER0_IRQ, IRQ_REENABLE, &hook_id);
65
}
66

    
67
int (timer_unsubscribe_int)() {
68
    /* Unsubscribe Timer 0 Interrupts */
69
    if(sys_irqrmpolicy(&hook_id)) return 1;
70
    return 0;
71
}
72

    
73
int no_interrupts = 0;
74
void (timer_int_handler)() {
75
    no_interrupts++;
76
}
77

    
78
int (timer_get_conf)(uint8_t timer, uint8_t *st) {
79
    if(st == NULL) return 1;
80
    // Write read-back command to TIMER_CTRL
81
    u32_t cmd = TIMER_RB_CMD | TIMER_RB_COUNT_ | TIMER_RB_SEL(timer);
82
    if(sys_outb(TIMER_CTRL, cmd)) return 1;
83
    int read_port;
84
    switch(timer) {
85
        case 0: read_port = TIMER_0; break;
86
        case 1: read_port = TIMER_1; break;
87
        case 2: read_port = TIMER_2; break;
88
        default: return 1;
89
    }
90
    if(util_sys_inb(read_port, st)) return 1;
91
    return 0;
92
}
93

    
94
int (timer_display_conf)(uint8_t timer, uint8_t st, enum timer_status_field field) {
95
    union timer_status_field_val conf;
96
    uint8_t in_mode;
97
    switch(field){
98
        case tsf_all:
99
            conf.byte = st; /* Full Status Byte */
100
            break;
101
        case tsf_initial:
102
            /* Counter Initial Value Loading Mode */
103
            in_mode = (st & TIMER_INMODE_MASK) >> TIMER_INMODE_POS;
104
            switch(in_mode){
105
                case 0: conf.in_mode = INVAL_val    ; break; //000
106
                case 1: conf.in_mode = LSB_only     ; break; //001
107
                case 2: conf.in_mode = MSB_only     ; break; //010
108
                case 3: conf.in_mode = MSB_after_LSB; break; //011
109
                default: return 1;
110
            }
111
            break;
112
        case tsf_mode:
113
            /* Counting Mode */
114
            conf.count_mode = (st & TIMER_MODE_MASK)>>TIMER_MODE_POS;
115
            if(conf.count_mode == TIMER_MODE_2ALT || conf.count_mode == TIMER_MODE_3ALT)
116
                conf.count_mode &= TIMER_MODE_RED2;
117
            break;
118
        case tsf_base:
119
            /* Representation of Counter Initial Value */
120
            conf.bcd = st & TIMER_BCD;
121
            break;
122
        default: return 1;
123
    }
124
    if(timer_print_config(timer, field, conf)) return 1;
125
    return 0;
126
}