Page 2 of 2

Posted: Fri May 11, 2007 7:51 am
by david-h
I do the following things before I try to load the ISRs:

First, I set a GDT. One Null descriptor, a code and a Data segment.

Then, I set up the IDT:

Code: Select all

//Installs the IDT, called by main()
void IDT::install()
{
	 /* Sets the special IDT pointer up */
    idtp.limit = (sizeof (idt_entry) * 256) - 1;
    idtp.base = (unsigned int) &idt;

	//Load IDT´s into the processor
	idt_load();
}
idt_load() looks like this:

Code: Select all

global idt_load	  ; we want to call this in C++
extern idtp
idt_load:
	lidt [idtp]
	ret
And then I set up the ISR´s like this:

Code: Select all

void ISRs::install()
{
	IDT::set_gate(0, (unsigned)isr0, 0x08, 0x8E);
    IDT::set_gate(1, (unsigned)isr1, 0x08, 0x8E);
    IDT::set_gate(2, (unsigned)isr2, 0x08, 0x8E);
    IDT::set_gate(3, (unsigned)isr3, 0x08, 0x8E);
    IDT::set_gate(4, (unsigned)isr4, 0x08, 0x8E);
    IDT::set_gate(5, (unsigned)isr5, 0x08, 0x8E);
    IDT::set_gate(6, (unsigned)isr6, 0x08, 0x8E);
    IDT::set_gate(7, (unsigned)isr7, 0x08, 0x8E);

    IDT::set_gate(8, (unsigned)isr8, 0x08, 0x8E);
    IDT::set_gate(9, (unsigned)isr9, 0x08, 0x8E);
    IDT::set_gate(10, (unsigned)isr10, 0x08, 0x8E);
    IDT::set_gate(11, (unsigned)isr11, 0x08, 0x8E);
    IDT::set_gate(12, (unsigned)isr12, 0x08, 0x8E);
    IDT::set_gate(13, (unsigned)isr13, 0x08, 0x8E);
    IDT::set_gate(14, (unsigned)isr14, 0x08, 0x8E);
    IDT::set_gate(15, (unsigned)isr15, 0x08, 0x8E);

    IDT::set_gate(16, (unsigned)isr16, 0x08, 0x8E);
    IDT::set_gate(17, (unsigned)isr17, 0x08, 0x8E);
    IDT::set_gate(18, (unsigned)isr18, 0x08, 0x8E);
    IDT::set_gate(19, (unsigned)isr19, 0x08, 0x8E);
    IDT::set_gate(20, (unsigned)isr20, 0x08, 0x8E);
    IDT::set_gate(21, (unsigned)isr21, 0x08, 0x8E);
    IDT::set_gate(22, (unsigned)isr22, 0x08, 0x8E);
    IDT::set_gate(23, (unsigned)isr23, 0x08, 0x8E);

    IDT::set_gate(24, (unsigned)isr24, 0x08, 0x8E);
    IDT::set_gate(25, (unsigned)isr25, 0x08, 0x8E);
    IDT::set_gate(26, (unsigned)isr26, 0x08, 0x8E);
    IDT::set_gate(27, (unsigned)isr27, 0x08, 0x8E);
    IDT::set_gate(28, (unsigned)isr28, 0x08, 0x8E);
    IDT::set_gate(29, (unsigned)isr29, 0x08, 0x8E);
    IDT::set_gate(30, (unsigned)isr30, 0x08, 0x8E);
    IDT::set_gate(31, (unsigned)isr31, 0x08, 0x8E);
}

Posted: Fri May 11, 2007 8:02 am
by AJ
That's it then. Before STI, you need to set up your IRQ handlers.

Posted: Fri May 11, 2007 1:22 pm
by david-h
Well, thank you very much. But I have another strange problem now.
The mein-Function of kernel should call GDT::install(), IDT::install() and ISRs::install().

The namespaces and functions are defined like this:

Code: Select all

#ifndef _GDT_HEADER_
#define _GDT_HEADER_

//function is defined in Loader.asm
extern "C" void gdt_flush();

namespace GDT
{
	//registers a GDT
	void set_gate(int num, unsigned long base, unsigned long limit, unsigned char access, unsigned char gran);
	//installs default GDTs
	void install();
}

#endif
In the .cpp file they´re defined like this:

Code: Select all

void GDT::set_gate(...)
{
...
}

void GDT::install();
{
...
}
But this code doesn´t get called! I had a std::cout << "Test"; in it, but I never saw this output! And my Output-System works.

What for a problem do I have now again?

Posted: Mon May 14, 2007 2:25 am
by Combuster
have you checked that you aren't using any features mentioned on the C++ wiki page, because it looks like you are using global classes.
[edit]I meant "global objects". my mistake[/edit]

Posted: Tue May 15, 2007 6:54 am
by david-h
:?: I couldn´t find anything about global classes in the wiki entry.

If you mean global objects, I already have implemented support for them.

Posted: Thu May 17, 2007 3:21 am
by david-h
OK, I solved the problem. Like AJ said I had to set up my IRQ handlers. Everythings working fine now.