about summary refs log blame commit diff stats
path: root/tools/iso/kernel.soso/timer.c
blob: 9739633469fc3872f7c978be618bdaa266d5b014 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                               
                                                   

                       
                                                                      



                             
                             


                            
                           


                                         
                                


                            
                        


                             
                         


                              
                                         










                                             
                        

                          
#include "timer.h"
#include "isr.h"
#include "screen.h"
#include "process.h"
#include "common.h"

#define TIMER_FREQ 1000

uint32 gSystemTickCount = 0;

BOOL gSchedulerEnabled = FALSE;

//called from assembly
void handleTimerIRQ(TimerInt_Registers registers) {
    gSystemTickCount++;

    if (/*gSystemTickCount % 10 == 0 &&*/ gSchedulerEnabled == TRUE) {
        schedule(&registers);
    }
}

uint32 getSystemTickCount() {
    return gSystemTickCount;
}

uint32 getUptimeSeconds() {
    return gSystemTickCount / TIMER_FREQ;
}

uint32 getUptimeMilliseconds() {
    return gSystemTickCount;
}

void enableScheduler() {
    gSchedulerEnabled = TRUE;
}

void disableScheduler() {
    gSchedulerEnabled = FALSE;
}

static void initTimer(uint32 frequency) {
    uint32 divisor = 1193180 / frequency;

    outb(0x43, 0x36);

    uint8 l = (uint8)(divisor & 0xFF);
    uint8 h = (uint8)( (divisor>>8) & 0xFF );

    outb(0x40, l);
    outb(0x40, h);
}

void initializeTimer() {
    initTimer(TIMER_FREQ);
}