Hi,
One issue I see is that you have apss.dtb linked to fw_payload.bin but
your platform.c does not have fw_platform_init() to inform location of
apss.dtb.
Try following changes:
1) Add these lines in your
objects.mk
platform-padding-apss.o = 2048
platform-varprefix-apss.o = dt_apss
2) Add below code in your platform.c
extern const char dt_apss_start[];
unsigned long fw_platform_init(unsigned long arg0, unsigned long arg1,
unsigned long arg2, unsigned long arg3, unsigned long arg4)
{
return (unsigned long)&dt_apss_start[0];
}
Regards,
Anup
> --
> You received this message because you are subscribed to the Google Groups "RISC-V SW Dev" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to
sw-dev+un...@groups.riscv.org.
> To view this discussion on the web visit
https://groups.google.com/a/groups.riscv.org/d/msgid/sw-dev/f7d65c57-4341-4b1a-9ff4-76f08e00cc2cn%40groups.riscv.org.