function name change in init.c

- bsp_boot_init to init_primary_cpu
- bsp_boot_post to init_primary_cpu_post

Tracked-On: #1842
Signed-off-by: Jason Chen CJ <jason.cj.chen@intel.com>
This commit is contained in:
Jason Chen CJ 2018-12-18 09:55:48 +08:00 committed by wenlingz
parent 5968da4635
commit 689c1c28c5
3 changed files with 5 additions and 5 deletions

View File

@ -162,7 +162,7 @@ after:
mov %eax,%gs // Was 32bit POC CLS mov %eax,%gs // Was 32bit POC CLS
/* continue with chipset level initialization */ /* continue with chipset level initialization */
call bsp_boot_init call init_primary_cpu
loop: loop:
jmp loop jmp loop

View File

@ -75,7 +75,7 @@ static void enter_guest_mode(uint16_t pcpu_id)
cpu_dead(); cpu_dead();
} }
static void bsp_boot_post(void) static void init_primary_cpu_post(void)
{ {
/* Perform any necessary BSP initialization */ /* Perform any necessary BSP initialization */
init_bsp(); init_bsp();
@ -96,7 +96,7 @@ static void bsp_boot_post(void)
/* NOTE: this function is using temp stack, and after SWITCH_TO(runtime_sp, to) /* NOTE: this function is using temp stack, and after SWITCH_TO(runtime_sp, to)
* it will switch to runtime stack. * it will switch to runtime stack.
*/ */
void bsp_boot_init(void) void init_primary_cpu(void)
{ {
uint64_t rsp; uint64_t rsp;
@ -105,7 +105,7 @@ void bsp_boot_init(void)
/* Switch to run-time stack */ /* Switch to run-time stack */
rsp = (uint64_t)(&get_cpu_var(stack)[CONFIG_STACK_SIZE - 1]); rsp = (uint64_t)(&get_cpu_var(stack)[CONFIG_STACK_SIZE - 1]);
rsp &= ~(CPU_STACK_ALIGN - 1UL); rsp &= ~(CPU_STACK_ALIGN - 1UL);
SWITCH_TO(rsp, bsp_boot_post); SWITCH_TO(rsp, init_primary_cpu_post);
} }
void init_secondary_cpu(void) void init_secondary_cpu(void)

View File

@ -8,7 +8,7 @@
/* hypervisor stack bottom magic('intl') */ /* hypervisor stack bottom magic('intl') */
#define SP_BOTTOM_MAGIC 0x696e746cUL #define SP_BOTTOM_MAGIC 0x696e746cUL
void bsp_boot_init(void); void init_primary_cpu(void);
void init_secondary_cpu(void); void init_secondary_cpu(void);
#endif /* INIT_H*/ #endif /* INIT_H*/