Re: [PATCH v3] dt-bindings: riscv: deprecate riscv,isa

2023-06-26 Thread Jessica Clarke
and a new > riscv,isa-base property to replace the aspect of riscv,isa that is > not represented by the new property - the base ISA implemented by a hart. > > As a starting point, add properties for extensions currently used in > Linux. > > Finally, mark riscv,isa as deprecat

[PATCH] riscv: dts: Sync important Unmatched pmic and qspi0 changes from Linux

2022-08-12 Thread Jessica Clarke
functionality present in Linux's that is not in U-Boot's so that it can be used without the OS providing its own bundled copy. Signed-off-by: Jessica Clarke --- arch/riscv/dts/hifive-unmatched-a00.dts | 15 ++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/arch/riscv/dts

Re: [RFC PATCH 1/1] efi_loader: Enable RISCV_EFI_BOOT_PROTOCOL support

2022-01-26 Thread Jessica Clarke
On 26 Jan 2022, at 11:06, Sunil V L wrote: > > This adds support for new RISCV_EFI_BOOT_PROTOCOL to > communicate the boot hart ID to bootloader/kernel on RISC-V > UEFI platforms. > > Signed-off-by: Sunil V L > --- > include/efi_api.h | 4 +++ > include/efi_loader.h | 2 ++ >

Re: [PATCH V2] mkimage: fix segfault on MacOS arm64

2022-01-24 Thread Jessica Clarke
> __cat(__start_, name) = (void *)__cat(pstart_, name); \ This now seems sensible to me, thanks for fixing my mess. Reviewed-by: Jessica Clarke (though you may want to clean up your commit message; "ased" is missing the leading b and you're still missing the verb "is", plus "mechasim" should be "mechanism" and it should be "due to the", not just "due") Jess

Re: [PATCH] mkimage: fix segfault on MacOS arm64

2022-01-11 Thread Jessica Clarke
On 2 Dec 2021, at 22:16, Sergey V. Lobanov wrote: > > mkimage segfaults due ASLR mechasim on MacOS arm64 > > It is required to use _dyld_get_image_vmaddr_slide() > to prevent segfault on MacOS arm64 > > This patch ased on the discussion >

[PATCH] Support building on macOS/arm64

2021-03-20 Thread Jessica Clarke
sections not data sections and so cannot have dynamic relocations. Instead, move the sections to __DATA and drop disabling PIE. Signed-off-by: Jessica Clarke --- Makefile | 5 - tools/imagetool.h | 4 ++-- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile