|
@@ -53,12 +53,20 @@ enum fpga_mgr_states {
|
|
|
FPGA_MGR_STATE_OPERATING,
|
|
|
};
|
|
|
|
|
|
-/*
|
|
|
- * FPGA Manager flags
|
|
|
- * FPGA_MGR_PARTIAL_RECONFIG: do partial reconfiguration if supported
|
|
|
- * FPGA_MGR_EXTERNAL_CONFIG: FPGA has been configured prior to Linux booting
|
|
|
- * FPGA_MGR_BITSTREAM_LSB_FIRST: SPI bitstream bit order is LSB first
|
|
|
- * FPGA_MGR_COMPRESSED_BITSTREAM: FPGA bitstream is compressed
|
|
|
+/**
|
|
|
+ * DOC: FPGA Manager flags
|
|
|
+ *
|
|
|
+ * Flags used in the &fpga_image_info->flags field
|
|
|
+ *
|
|
|
+ * %FPGA_MGR_PARTIAL_RECONFIG: do partial reconfiguration if supported
|
|
|
+ *
|
|
|
+ * %FPGA_MGR_EXTERNAL_CONFIG: FPGA has been configured prior to Linux booting
|
|
|
+ *
|
|
|
+ * %FPGA_MGR_ENCRYPTED_BITSTREAM: indicates bitstream is encrypted
|
|
|
+ *
|
|
|
+ * %FPGA_MGR_BITSTREAM_LSB_FIRST: SPI bitstream bit order is LSB first
|
|
|
+ *
|
|
|
+ * %FPGA_MGR_COMPRESSED_BITSTREAM: FPGA bitstream is compressed
|
|
|
*/
|
|
|
#define FPGA_MGR_PARTIAL_RECONFIG BIT(0)
|
|
|
#define FPGA_MGR_EXTERNAL_CONFIG BIT(1)
|