Handle clock interrupt and cleaning code
This commit is contained in:
parent
958e2dae04
commit
8fee35522d
8 changed files with 79 additions and 17 deletions
|
@ -1,5 +1,5 @@
|
||||||
EXEC := bringelle
|
EXEC := bringelle
|
||||||
CC := gcc -c -m32 -fno-pie -fno-builtin -fno-stack-protector
|
CC := gcc -c -m32 -fno-pie -fno-builtin -fno-stack-protector -I ./
|
||||||
LD_SCRIPT := linker.ld
|
LD_SCRIPT := linker.ld
|
||||||
|
|
||||||
# Note that BOOT_OBJ do not match boot.S
|
# Note that BOOT_OBJ do not match boot.S
|
||||||
|
@ -10,15 +10,14 @@ UTILS_OBJ := $(addsuffix .o,$(basename $(shell find ./utils -name "*.[c|S]")))
|
||||||
|
|
||||||
all: $(EXEC)
|
all: $(EXEC)
|
||||||
|
|
||||||
$(EXEC): boot/boot.o $(UTILS_OBJ) bringelle.o
|
$(EXEC): boot/boot.o $(BOOT_OBJ) $(UTILS_OBJ) bringelle.o
|
||||||
ld -n -T $(LD_SCRIPT) -nostdlib -o bringelle $^
|
ld -n -T $(LD_SCRIPT) -nostdlib -o bringelle $^
|
||||||
|
|
||||||
%.o: %.S
|
%.o: %.S
|
||||||
as --32 -o $@ $^ -mx86-used-note=no
|
as --32 -o $@ $^
|
||||||
|
|
||||||
%.o: %.c
|
%.o: %.c
|
||||||
$(CC) -o $@ $<
|
$(CC) -o $@ $<
|
||||||
#objcopy --remove-section .note.gnu.property $@
|
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f $(EXEC)
|
rm -f $(EXEC)
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
#include "multiboot.h"
|
#include "multiboot.h"
|
||||||
|
#include "utils/mem.h"
|
||||||
|
|
||||||
|
/// See boot.S
|
||||||
extern u8* MB_INFO;
|
extern u8* MB_INFO;
|
||||||
|
|
||||||
char mb_load_tag(char **data, char type){
|
char mb_load_tag(char **data, char type){
|
||||||
|
@ -7,7 +9,8 @@ char mb_load_tag(char **data, char type){
|
||||||
char *c_tag_type=c_info_size+8;
|
char *c_tag_type=c_info_size+8;
|
||||||
char *c_tag_size=c_info_size+12;
|
char *c_tag_size=c_info_size+12;
|
||||||
|
|
||||||
for(int i=0;i<10;i++){
|
int max_size=*((int*)c_info_size);
|
||||||
|
while(((int)c_tag_type-(int)MB_INFO)<max_size){
|
||||||
int tag_type=*((int*)c_tag_type);
|
int tag_type=*((int*)c_tag_type);
|
||||||
int tag_size=*((int*)c_tag_size);
|
int tag_size=*((int*)c_tag_size);
|
||||||
if(tag_type==type){
|
if(tag_type==type){
|
||||||
|
@ -37,3 +40,15 @@ char mb_load_bl_name(MBI_TAG_BL_NAME *data){
|
||||||
}
|
}
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
char mb_load_fb(MBI_TAG_FB *data){
|
||||||
|
char *to_load;
|
||||||
|
if(!mb_load_tag(&to_load,8)){
|
||||||
|
asm("mov %0, %%ecx;aa:;jmp aa;"::"r"(to_load));
|
||||||
|
memcpy(to_load,data,8);
|
||||||
|
to_load+=8;
|
||||||
|
memcpy(to_load,&(data->framebuffer_addr),8);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
return 1;
|
||||||
|
}
|
|
@ -1,7 +1,7 @@
|
||||||
#ifndef MULTIBOOT_H
|
#ifndef MULTIBOOT_H
|
||||||
#define MULTIBOOT_H
|
#define MULTIBOOT_H
|
||||||
|
|
||||||
#include "types.h"
|
#include "utils/types.h"
|
||||||
|
|
||||||
typedef struct MBI_TAG_HEADER {
|
typedef struct MBI_TAG_HEADER {
|
||||||
u32 type;
|
u32 type;
|
||||||
|
@ -13,7 +13,6 @@ typedef struct MBI_TAG_BL_NAME {
|
||||||
u8 *name;
|
u8 *name;
|
||||||
} __attribute__((packed)) MBI_TAG_BL_NAME;
|
} __attribute__((packed)) MBI_TAG_BL_NAME;
|
||||||
|
|
||||||
|
|
||||||
typedef struct MBI_TAG_FB {
|
typedef struct MBI_TAG_FB {
|
||||||
MBI_TAG_HEADER header;
|
MBI_TAG_HEADER header;
|
||||||
u64 framebuffer_addr;
|
u64 framebuffer_addr;
|
||||||
|
@ -26,7 +25,17 @@ typedef struct MBI_TAG_FB {
|
||||||
u8 *color_infos;
|
u8 *color_infos;
|
||||||
}__attribute__((packed)) MBI_TAG_FB;
|
}__attribute__((packed)) MBI_TAG_FB;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parse Bootloader boot information structure
|
||||||
|
*/
|
||||||
char mb_load_tag(char **data, char type);
|
char mb_load_tag(char **data, char type);
|
||||||
|
/**
|
||||||
|
* Search for Bootloader name
|
||||||
|
*/
|
||||||
char mb_load_bl_name(MBI_TAG_BL_NAME *data);
|
char mb_load_bl_name(MBI_TAG_BL_NAME *data);
|
||||||
|
/**
|
||||||
|
* Search for FrameBuffer structure (TODO: Finish)
|
||||||
|
*/
|
||||||
|
char mb_load_fb(MBI_TAG_FB *data);
|
||||||
|
|
||||||
#endif
|
#endif
|
|
@ -2,22 +2,31 @@
|
||||||
#include "utils/asm.h"
|
#include "utils/asm.h"
|
||||||
#include "utils/pic.h"
|
#include "utils/pic.h"
|
||||||
#include "utils/8042.h"
|
#include "utils/8042.h"
|
||||||
#include "utils/multiboot.h"
|
#include "boot/multiboot.h"
|
||||||
|
|
||||||
extern char *name_addr;
|
extern char *name_addr;
|
||||||
|
|
||||||
void bringelle(){
|
void bringelle(){
|
||||||
|
clear();
|
||||||
|
printc("Booting Bringelle...\n",GREEN);
|
||||||
|
pic_enable_interrupt();
|
||||||
|
|
||||||
// clear();
|
// Search for bootloader informations
|
||||||
//print("Booting Bringelle...");
|
|
||||||
//pic_enable_interrupt();
|
|
||||||
print("Booting Bringelle...");
|
|
||||||
MBI_TAG_BL_NAME bl_infos;
|
MBI_TAG_BL_NAME bl_infos;
|
||||||
if(!mb_load_bl_name(&bl_infos)){
|
if(!mb_load_bl_name(&bl_infos)){
|
||||||
print(bl_infos.name);
|
print(bl_infos.name);
|
||||||
print(" detected!");
|
print(" detected!\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
while(1);
|
while(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void clock(){
|
||||||
|
static int tic=0;
|
||||||
|
static int sec=0;
|
||||||
|
tic++;
|
||||||
|
if(tic>=20){
|
||||||
|
tic=0;
|
||||||
|
sec++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -9,4 +9,5 @@
|
||||||
|
|
||||||
#define inb(port,dst) \
|
#define inb(port,dst) \
|
||||||
asm volatile ("inb %%dx, %%al": "=a" (dst) : "d" (port))
|
asm volatile ("inb %%dx, %%al": "=a" (dst) : "d" (port))
|
||||||
|
|
||||||
#endif
|
#endif
|
|
@ -18,15 +18,22 @@ asm (
|
||||||
"movb $0x20, %al \n\t"
|
"movb $0x20, %al \n\t"
|
||||||
"outb %al, $0x20 \n\t"
|
"outb %al, $0x20 \n\t"
|
||||||
"iret \n\t"
|
"iret \n\t"
|
||||||
|
"PIC_IRQ_CLOCK: \n\t"
|
||||||
|
"call clock \n\t"
|
||||||
|
"movb $0x20, %al \n\t"
|
||||||
|
"outb %al, $0x20 \n\t"
|
||||||
|
"iret \n\t"
|
||||||
);
|
);
|
||||||
|
|
||||||
extern u32 PIC_IRQ_DEFAULT,PIC_IRQ_PRINT;
|
extern u32 PIC_IRQ_DEFAULT,PIC_IRQ_PRINT,PIC_IRQ_CLOCK;
|
||||||
|
|
||||||
void pic_enable_interrupt(){
|
void pic_enable_interrupt(){
|
||||||
// Map first default 32 entries
|
// Map first default 32 entries
|
||||||
for(int i=0;i<100;i++){
|
for(int i=0;i<100;i++){
|
||||||
pic_add_idt_entry((IDT_ENTRY){0x08,(u32)&PIC_IRQ_DEFAULT,IDT_TYPE_1},i);
|
pic_add_idt_entry((IDT_ENTRY){0x08,(u32)&PIC_IRQ_DEFAULT,IDT_TYPE_1},i);
|
||||||
if(i==32)
|
if(i==32)
|
||||||
|
pic_add_idt_entry((IDT_ENTRY){0x08,(u32)&PIC_IRQ_CLOCK,IDT_TYPE_1},i);
|
||||||
|
if(i==33)
|
||||||
pic_add_idt_entry((IDT_ENTRY){0x08,(u32)&PIC_IRQ_PRINT,IDT_TYPE_1},i);
|
pic_add_idt_entry((IDT_ENTRY){0x08,(u32)&PIC_IRQ_PRINT,IDT_TYPE_1},i);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -48,6 +55,10 @@ void pic_enable_interrupt(){
|
||||||
outbj(0x21,0x01); // Default operating mode
|
outbj(0x21,0x01); // Default operating mode
|
||||||
outbj(0xA1,0x01); // Default operating mode
|
outbj(0xA1,0x01); // Default operating mode
|
||||||
|
|
||||||
|
// OCW: Masking
|
||||||
|
outbj(0x21,0);
|
||||||
|
|
||||||
|
|
||||||
asm("lidtl (IDTR)");
|
asm("lidtl (IDTR)");
|
||||||
asm("sti");
|
asm("sti");
|
||||||
}
|
}
|
||||||
|
@ -56,6 +67,5 @@ void pic_add_idt_entry(IDT_ENTRY entry, int id){
|
||||||
int descriptor[2];
|
int descriptor[2];
|
||||||
descriptor[0]=entry.offset & 0xFFFF | entry.segment << 16;
|
descriptor[0]=entry.offset & 0xFFFF | entry.segment << 16;
|
||||||
descriptor[1]=entry.type & 0xFFFF | entry.offset & 0xFFFF0000;
|
descriptor[1]=entry.type & 0xFFFF | entry.offset & 0xFFFF0000;
|
||||||
|
|
||||||
memcpy((void*)descriptor, (void *)(IDTR.base+(id*8)),8);
|
memcpy((void*)descriptor, (void *)(IDTR.base+(id*8)),8);
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,6 +20,17 @@ VIDEO_STATE VS={
|
||||||
};
|
};
|
||||||
|
|
||||||
void putchar(char c){
|
void putchar(char c){
|
||||||
|
// Handle newline here
|
||||||
|
if(c=='\n'){
|
||||||
|
VS.col=0;
|
||||||
|
VS.line+=1;
|
||||||
|
if(VS.line>=MAX_LINE){
|
||||||
|
VS.line=MAX_LINE-1;
|
||||||
|
scrollup();
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// Print char
|
// Print char
|
||||||
VS.mem[VS.col*2+MAX_COL*VS.line*2]=c;
|
VS.mem[VS.col*2+MAX_COL*VS.line*2]=c;
|
||||||
VS.mem[VS.col*2+MAX_COL*VS.line*2+1]=VS.fg|VS.bg<<4;
|
VS.mem[VS.col*2+MAX_COL*VS.line*2+1]=VS.fg|VS.bg<<4;
|
||||||
|
@ -44,6 +55,13 @@ void print(char *str){
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void printc(char* str,VIDEO_COLORS c){
|
||||||
|
VIDEO_COLORS backup=VS.fg;
|
||||||
|
VS.fg=c;
|
||||||
|
print(str);
|
||||||
|
VS.fg=backup;
|
||||||
|
}
|
||||||
|
|
||||||
void clear(){
|
void clear(){
|
||||||
for(char i=0;i<MAX_LINE;i++){
|
for(char i=0;i<MAX_LINE;i++){
|
||||||
scrollup();
|
scrollup();
|
||||||
|
|
|
@ -16,6 +16,7 @@ typedef struct VIDEO_STATE VIDEO_STATE;
|
||||||
*/
|
*/
|
||||||
void putchar(char);
|
void putchar(char);
|
||||||
void print(char*);
|
void print(char*);
|
||||||
|
void printc(char*,VIDEO_COLORS c);
|
||||||
void scrollup();
|
void scrollup();
|
||||||
void clear();
|
void clear();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue