mirror of
https://github.com/riscv-software-src/opensbi.git
synced 2025-08-24 23:41:23 +01:00
platform: generic: Add support for specify coldboot harts in DT
Added support for the generic platform to specify the set of coldboot hart in DT. If not specified in DT, all harts are allowed to coldboot as before. The functions related to sbi_hartmask are not available before coldboot, so I used bitmap, and added a new bitmap_test() function to test whether a certain bit of the bitmap is set. Signed-off-by: Cheng Yang <yangcheng.work@foxmail.com> Reviewed-by: Anup Patel <anup@brainfault.org>
This commit is contained in:
@@ -385,6 +385,21 @@ int fdt_reserved_memory_fixup(void *fdt)
|
||||
return 0;
|
||||
}
|
||||
|
||||
void fdt_config_fixup(void *fdt)
|
||||
{
|
||||
int chosen_offset, config_offset;
|
||||
|
||||
chosen_offset = fdt_path_offset(fdt, "/chosen");
|
||||
if (chosen_offset < 0)
|
||||
return;
|
||||
|
||||
config_offset = fdt_node_offset_by_compatible(fdt, chosen_offset, "opensbi,config");
|
||||
if (chosen_offset < 0)
|
||||
return;
|
||||
|
||||
fdt_nop_node(fdt, config_offset);
|
||||
}
|
||||
|
||||
void fdt_fixups(void *fdt)
|
||||
{
|
||||
fdt_aplic_fixup(fdt);
|
||||
@@ -398,4 +413,6 @@ void fdt_fixups(void *fdt)
|
||||
#ifndef CONFIG_FDT_FIXUPS_PRESERVE_PMU_NODE
|
||||
fdt_pmu_fixup(fdt);
|
||||
#endif
|
||||
|
||||
fdt_config_fixup(fdt);
|
||||
}
|
||||
|
Reference in New Issue
Block a user