commit | bb3ab6cb55f2e60a9743d94ea5bb3390292184c6 | [log] [tgz] |
---|---|---|
author | Andrew Scull <ascull@google.com> | Mon Nov 26 20:38:49 2018 +0000 |
committer | Andrew Scull <ascull@google.com> | Wed Feb 20 15:59:30 2019 +0000 |
tree | 41a0cc394910ed5d20d1aef480df02f746ae6422 | |
parent | 1bb0aec3746ea326ef9c97628a590515d259e53d [diff] [blame] |
Get the cpu IDs from the FDT. These are the IDs used to identify cores in PSCI. Change-Id: I9e88a6c69f963864591e39f0191cdd5ce824ce6d
diff --git a/inc/hf/boot_params.h b/inc/hf/boot_params.h index db57d56..43d969a 100644 --- a/inc/hf/boot_params.h +++ b/inc/hf/boot_params.h
@@ -31,6 +31,8 @@ }; struct boot_params { + uint64_t cpu_ids[MAX_CPUS]; + size_t cpu_count; struct mem_range mem_ranges[MAX_MEM_RANGES]; size_t mem_ranges_count; paddr_t initrd_begin;