From: Richard Gong <richard.g...@intel.com>

Exten FPGA manager driver to support FPGA bitstream authentication on
Intel SocFPGA platforms.

Signed-off-by: Richard Gong <richard.g...@intel.com>
---
 drivers/fpga/stratix10-soc.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/fpga/stratix10-soc.c b/drivers/fpga/stratix10-soc.c
index 657a70c..8a59365 100644
--- a/drivers/fpga/stratix10-soc.c
+++ b/drivers/fpga/stratix10-soc.c
@@ -185,7 +185,10 @@ static int s10_ops_write_init(struct fpga_manager *mgr,
        ctype.flags = 0;
        if (info->flags & FPGA_MGR_PARTIAL_RECONFIG) {
                dev_dbg(dev, "Requesting partial reconfiguration.\n");
-               ctype.flags |= BIT(COMMAND_RECONFIG_FLAG_PARTIAL);
+               ctype.flags |= FPGA_MGR_PARTIAL_RECONFIG;
+       } else if (info->flags & FPGA_MGR_BITSTREM_AUTHENTICATION) {
+               dev_dbg(dev, "Requesting bitstream authentication.\n");
+               ctype.flags |= FPGA_MGR_BITSTREM_AUTHENTICATION;
        } else {
                dev_dbg(dev, "Requesting full reconfiguration.\n");
        }
-- 
2.7.4

Reply via email to