You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ((scratch->fw_start& (scratch->fw_rw_offset-1)) !=0) {
My values are as follows:
scratch->fw_start: 0x80020000
scratch->fw_rw_offset: 0x40000
The alignment is I guess checked in order to make a NAPOT PMP region out of it. But I think that is something that should be checked in build time rather then runtime.
So I guess my only option is to put OpenSBI at either address 0x80000000 or 0x80040000 (text segment). Or is there another solution?
The text was updated successfully, but these errors were encountered:
I pulled the recent master of OpenSBI and I now get the following error:
fw_start and fw_rw_offset not aligned
I checked and the error comes from here:
opensbi/lib/sbi/sbi_domain.c
Line 752 in 322b598
My values are as follows:
scratch->fw_start: 0x80020000
scratch->fw_rw_offset: 0x40000
The alignment is I guess checked in order to make a NAPOT PMP region out of it. But I think that is something that should be checked in build time rather then runtime.
So I guess my only option is to put OpenSBI at either address 0x80000000 or 0x80040000 (text segment). Or is there another solution?
The text was updated successfully, but these errors were encountered: