BarinkOS/src/kernel/kernel.cpp

120 lines
3.5 KiB
C++
Raw Normal View History

#include "kernel.h"
#define GB4 524288
#define GB2 262144
2021-11-25 21:05:16 +00:00
int memcmp( const void* ptr1, const void* ptr2, size_t num);
extern "C" void kernel_main (void);
extern "C" void early_main(unsigned long magic, unsigned long addr){
2021-11-25 21:05:16 +00:00
/** initialize terminal interface */
2021-07-22 19:02:47 +00:00
kterm_init();
2021-11-25 21:05:16 +00:00
2021-07-22 19:02:47 +00:00
if (magic != MULTIBOOT_BOOTLOADER_MAGIC){
2021-10-23 11:26:15 +00:00
printf("Invalid magic number: 0x%x\n", magic);
2021-07-22 19:02:47 +00:00
return;
}
2021-11-25 21:05:16 +00:00
2021-10-23 11:26:15 +00:00
CheckMBT( (multiboot_info_t *) addr);
2021-07-22 19:02:47 +00:00
2021-10-23 11:26:15 +00:00
multiboot_info_t* mbt = (multiboot_info_t*) addr;
2021-07-22 19:02:47 +00:00
/* Are mmap_* valid? */
2021-10-23 11:26:15 +00:00
if (CHECK_FLAG(mbt->flags, 6)){
PhysicalMemoryManager_initialise( mbt->mmap_addr, GB2/* Seriously dangerous hardcoded memory value*/);
PhysicalMemoryManager_initialise_available_regions(mbt->mmap_addr, mbt->mmap_addr + mbt->mmap_length);
PhysicalMemoryManager_deinitialise_kernel();
extern uint8_t* kernel_begin;
extern uint8_t* kernel_end;
printf("Kernel MemoryMap:\n");
printf("kernel: 0x%x - 0x%x\n", &kernel_begin , &kernel_end);
2021-07-22 19:02:47 +00:00
}
2021-11-16 20:17:49 +00:00
initGDT();
2021-11-25 21:05:16 +00:00
kernel_main();
}
int memcmp( const void* ptr1, const void* ptr2, size_t num)
{
const unsigned char * cs = (const unsigned char*) ptr1;
const unsigned char * ct = (const unsigned char*) ptr2;
for (int i = 0 ; i < num ; i++, cs++, ct++ ){
if( *cs < *ct){
return -1;
} else if( *cs > *ct){
return 1;
}
}
return 0;
2021-05-12 22:03:00 +00:00
}
extern "C" void kernel_main (void) {
2021-05-12 22:03:00 +00:00
2021-11-06 20:56:42 +00:00
printf("call to init serial\n");
2021-07-22 19:02:47 +00:00
init_serial();
2021-11-25 21:05:16 +00:00
print_serial("Serial port initialized!");
// Enumerate the PCI bus
int devicesFound = 0;
// loop through all possible busses, devices and their functions;
for( int bus = 0 ; bus < 256 ; bus++)
{
for(int device = 0; device < 32 ; device ++)
{
for ( int function = 0; function < 8; function++)
{
uint64_t DeviceIdentify = ConfigReadWord(bus, device, function,0x0);
uint32_t VendorID = DeviceIdentify & 0xFFFF;
uint32_t DeviceID = DeviceIdentify >> 16;
if( DeviceID != 0xFFFF){
printf("bus: %d, device: %d, function %d \n");
printf("Device found!\n");
printf("DeviceID: 0x%x, VendorID: 0x%x\n", DeviceID, VendorID);
uint32_t classcodes = ConfigReadWord(bus, device, function, 0x8);
uint32_t classData = classcodes >> 16; // We only care for the last 2 bytes!
uint32_t deviceClass = classData >> 8;
uint32_t subclass = classData & 0xFF;
printf(" class: %d, subClass: %d\n\n", deviceClass, subclass);
devicesFound++;
}
}
}
}
printf("Found %d devices!", devicesFound);
2021-07-22 19:02:47 +00:00
2021-11-06 20:56:42 +00:00
while (true){
//Read time indefinetely
2021-11-25 21:05:16 +00:00
//read_rtc();
//printf( "UTC time: %02d-%02d-%02d %02d:%02d:%02d [ Formatted as YY-MM-DD h:mm:ss]\r" ,year, month, day, hour, minute, second);
delay(1000);
}
}