bond/x64/src/hal/init.c

56 lines
1.3 KiB
C
Raw Normal View History

2016-05-24 07:27:26 +00:00
/* Copyright 2016 secXsQuared
* Distributed under GPL license
* See COPYING under root for details
*/
2017-02-23 02:36:00 +00:00
#include "print.h"
#include "mem.h"
#include "intr.h"
#include "hal_arch.h"
#include "sxtdlib.h"
#include "s_boot.h"
2015-04-21 00:19:06 +00:00
extern char HAL_KERNEL_START_VADDR[];
extern char HAL_KERNEL_END_VADDR[];
2017-02-01 03:26:08 +00:00
static void KABI _hal_obtain_cpu_info(boot_info_t *hal_info)
2015-04-21 00:19:06 +00:00
{
if(hal_info == NULL)
return;
uint32_t eax = 0, ebx = 0, ecx = 0, edx = 0;
hal_cpuid(&eax,&ebx,&ecx,&edx);
2017-02-01 03:26:08 +00:00
lb_mem_copy(&ebx, &hal_info->cpu_vd_str[0], sizeof(uint32_t));
lb_mem_copy(&edx, &hal_info->cpu_vd_str[4], sizeof(uint32_t));
lb_mem_copy(&ecx, &hal_info->cpu_vd_str[8], sizeof(uint32_t));
hal_info->cpu_vd_str[12] = 0;
}
2017-02-01 03:26:08 +00:00
void KABI hal_main(void *m_info)
{
2017-02-01 03:26:08 +00:00
if (m_info == NULL || (uint64_t) m_info & lb_bit_field_mask(0, 2))
return;
2016-06-05 23:37:29 +00:00
// init HAL infrastructures
hal_print_init();
hal_mem_init();
2016-06-05 23:37:29 +00:00
2017-02-01 03:26:08 +00:00
boot_info_t* boot_info = halloc(sizeof(boot_info_t));
// set up HAL def
boot_info->krnl_start = (uint64_t)HAL_KERNEL_START_VADDR;
boot_info->krnl_end = (uint64_t)HAL_KERNEL_END_VADDR;
// obtain cpu info
_hal_obtain_cpu_info(boot_info);
// init interrupt
if(hal_interrupt_init() != 0)
2016-06-05 23:37:29 +00:00
{
return;
2016-06-05 23:37:29 +00:00
}
// pass the control to the kernel
2016-08-27 05:13:54 +00:00
ke_main(boot_info);
return;
}