diff options
author | Alexandre Ghiti <alexandre.ghiti@canonical.com> | 2021-10-27 09:43:36 +0200 |
---|---|---|
committer | Anup Patel <anup@brainfault.org> | 2021-11-02 11:23:16 +0530 |
commit | c891acca172dfc60719419e19338508a83d97931 (patch) | |
tree | 04658a01d122f0fbaf81b91adce26e738c812659 /platform/kendryte | |
parent | 723aa88ff4cc44230cf871bda319905113003279 (diff) |
include: sbi_utils: Introduce an helper to get fdt base address
This simply adds an helper to get fdt address which is more explicit than
sbi_scratch_thishart_arg1_ptr.
Signed-off-by: Alexandre Ghiti <alexandre.ghiti@canonical.com>
Reviewed-by: Xiang W <wxjstz@126.com>
Reviewed-by: Anup Patel <anup.patel@wdc.com>
Diffstat (limited to 'platform/kendryte')
-rw-r--r-- | platform/kendryte/k210/platform.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/platform/kendryte/k210/platform.c b/platform/kendryte/k210/platform.c index e7caec3..ef848c7 100644 --- a/platform/kendryte/k210/platform.c +++ b/platform/kendryte/k210/platform.c @@ -13,6 +13,7 @@ #include <sbi/sbi_const.h> #include <sbi/sbi_platform.h> #include <sbi/sbi_system.h> +#include <sbi_utils/fdt/fdt_helper.h> #include <sbi_utils/fdt/fdt_fixup.h> #include <sbi_utils/ipi/aclint_mswi.h> #include <sbi_utils/irqchip/plic.h> @@ -120,7 +121,7 @@ static int k210_final_init(bool cold_boot) if (!cold_boot) return 0; - fdt = sbi_scratch_thishart_arg1_ptr(); + fdt = fdt_get_address(); fdt_cpu_fixup(fdt); fdt_fixups(fdt); |