[PATCH v1 2/2] drivers: fpga: Follow mainline to pass compatible flags to fpga_load

muhammad.hazim.izzat.zamri at altera.com muhammad.hazim.izzat.zamri at altera.com
Wed Mar 12 17:04:58 CET 2025


From: Muhammad Hazim Izzat Zamri <muhammad.hazim.izzat.zamri at altera.com>

Introducing additional flag to check whether an FPGA driver is able to
load a particular FPGA bitstream image.

Generally, flag variable is used to enable or disable certain features,
specify additional parameters (such as error handling), or modify how
the function operates.

Hence, in this function flags is an integer that can be used to pass
configuration options to the fpga_load function. Here, it's
initialized to 0, meaning no special options are enabled, but it could
modify the flags to influence the function's behavior.

Signed-off-by: Muhammad Hazim Izzat Zamri <muhammad.hazim.izzat.zamri at altera.com>
---
 drivers/fpga/altera.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/fpga/altera.c b/drivers/fpga/altera.c
index 136ccfc2de..64fda3a307 100644
--- a/drivers/fpga/altera.c
+++ b/drivers/fpga/altera.c
@@ -70,8 +70,9 @@ int fpga_loadbitstream(int devnum, char *fpgadata, size_t size,
 		       bitstream_type bstype)
 {
 	int ret_val;
+	int flags = 0;

-	ret_val = fpga_load(devnum, (void *)fpgadata, size, bstype);
+	ret_val = fpga_load(devnum, (void *)fpgadata, size, bstype, flags);

 	/*
 	 * Enable the HPS to FPGA bridges when FPGA load is completed
--
2.25.1



More information about the U-Boot mailing list