You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
490 B
21 lines
490 B
#ifndef __CPU_OPS_COMMON_H__
|
|
#define __CPU_OPS_COMMON_H__
|
|
|
|
#include <rthw.h>
|
|
#include <rtthread.h>
|
|
#include <mmu.h>
|
|
#include "entry_point.h"
|
|
|
|
static inline rt_uint64_t get_secondary_entry_pa(void)
|
|
{
|
|
rt_uint64_t secondary_entry_pa = (rt_uint64_t)rt_kmem_v2p(_secondary_cpu_entry);
|
|
|
|
if (!secondary_entry_pa)
|
|
{
|
|
LOG_E("Failed to translate 'secondary_entry_pa' to physical address");
|
|
return 0;
|
|
}
|
|
return secondary_entry_pa;
|
|
}
|
|
|
|
#endif /* __CPU_OPS_COMMON_H__ */ |