From: Oleksandr Suvorov Date: Fri, 22 Jul 2022 14:16:09 +0000 (+0300) Subject: spl: fit: pass real compatible flags to fpga_load() X-Git-Tag: v2022.10~71^2~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=71f1a5392aadb5b6a43523b46040dea2ffbdd2ba;p=platform%2Fkernel%2Fu-boot.git spl: fit: pass real compatible flags to fpga_load() Convert taken FPGA image "compatible" string to a binary compatible flag and pass it to an FPGA driver. Signed-off-by: Oleksandr Suvorov Tested-by: Ricardo Salveti Tested-by: Adrian Fiergolski Link: https://lore.kernel.org/r/20220722141614.297383-9-oleksandr.suvorov@foundries.io Signed-off-by: Michal Simek --- diff --git a/common/spl/spl_fit.c b/common/spl/spl_fit.c index 3c5a919..a35be52 100644 --- a/common/spl/spl_fit.c +++ b/common/spl/spl_fit.c @@ -588,10 +588,15 @@ static int spl_fit_upload_fpga(struct spl_fit_info *ctx, int node, (u32)fpga_image->load_addr, fpga_image->size); compatible = fdt_getprop(ctx->fit, node, "compatible", NULL); - if (!compatible) + if (!compatible) { warn_deprecated("'fpga' image without 'compatible' property"); - else if (strcmp(compatible, "u-boot,fpga-legacy")) - printf("Ignoring compatible = %s property\n", compatible); + } else { + if (CONFIG_IS_ENABLED(FPGA_LOAD_SECURE)) + flags = fpga_compatible2flag(devnum, compatible); + if (strcmp(compatible, "u-boot,fpga-legacy")) + debug("Ignoring compatible = %s property\n", + compatible); + } ret = fpga_load(devnum, (void *)fpga_image->load_addr, fpga_image->size, BIT_FULL, flags);