mirror of
https://github.com/andreili/katapult.git
synced 2025-08-24 03:44:06 +02:00
armcm_boot: improve the boot code methods
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
parent
c510d532f4
commit
6c82de6e47
@ -21,15 +21,16 @@ extern uint32_t _stack_end;
|
|||||||
uint64_t
|
uint64_t
|
||||||
get_bootup_code(void)
|
get_bootup_code(void)
|
||||||
{
|
{
|
||||||
volatile uint64_t *req_code = (volatile void*)&_stack_end;
|
uint64_t *req_code = (void*)&_stack_end;
|
||||||
return *req_code;
|
return *req_code;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
set_bootup_code(uint64_t code)
|
set_bootup_code(uint64_t code)
|
||||||
{
|
{
|
||||||
volatile uint64_t *req_code = (volatile void*)&_stack_end;
|
uint64_t *req_code = (void*)&_stack_end;
|
||||||
*req_code = code;
|
*req_code = code;
|
||||||
|
barrier();
|
||||||
}
|
}
|
||||||
|
|
||||||
#define REQUEST_START_APP 0x7b06ec45a9a8243d
|
#define REQUEST_START_APP 0x7b06ec45a9a8243d
|
||||||
|
Loading…
x
Reference in New Issue
Block a user