PiegOS/kernel/GDT/gdt.hpp

56 lines
794 B
C++
Raw Normal View History

2015-07-20 16:34:46 +04:00
#ifndef __GDT__
#define __GDT__
2015-07-20 19:29:29 +04:00
#include "../Helpers/types.hpp"
2015-07-20 16:34:46 +04:00
//Define GDT pointer
struct gdtPointerStruct{
u16 size;
u32 segment;
} __attribute__ ((packed));
//Define GDT descriptor
struct gdtDescriptorStruct{
u16 limit1;
u16 base1;
u8 base2;
2015-07-21 12:19:25 +04:00
u8 access;
2015-07-20 16:34:46 +04:00
u8 limit2 : 4;
2015-07-20 19:12:26 +04:00
u8 flags : 4;
2015-07-20 16:34:46 +04:00
u8 base3;
} __attribute__ ((packed));
//Typedef :
typedef struct gdtPointerStruct gdtPointerStruct;
typedef struct gdtDescriptorStruct gdtDescriptorStruct;
2015-07-20 16:58:34 +04:00
2015-07-21 12:19:25 +04:00
//Gdt class
2015-07-20 16:58:34 +04:00
class Gdt{
2015-07-21 12:19:25 +04:00
2015-07-20 16:58:34 +04:00
private:
2015-07-21 12:19:25 +04:00
2015-07-20 16:58:34 +04:00
//Data members
2015-07-21 12:19:25 +04:00
gdtDescriptorStruct m_Descriptors[4];
2015-07-20 16:58:34 +04:00
gdtPointerStruct m_Pointer;
2015-07-21 12:19:25 +04:00
2015-07-20 16:58:34 +04:00
//Methods
2015-07-20 19:12:26 +04:00
void initGdtDesc(u32 base, u32 limit, u8 access, u8 flags, gdtDescriptorStruct *Descriptor);
2015-07-20 16:58:34 +04:00
2015-07-21 12:19:25 +04:00
2015-07-20 16:58:34 +04:00
public:
2015-07-21 12:19:25 +04:00
2015-07-20 16:58:34 +04:00
//Constructor
Gdt();
2015-07-21 12:19:25 +04:00
2015-07-20 16:58:34 +04:00
//Destructor
~Gdt();
2015-07-21 12:19:25 +04:00
2015-07-20 16:58:34 +04:00
//Methods
void loadGdt();
2015-07-21 12:19:25 +04:00
2015-07-20 16:58:34 +04:00
};
2015-07-20 16:34:46 +04:00
#endif