raw/ifpga: add APIs to get FPGA information
[dpdk.git] / drivers / common / cpt / cpt_common.h
index 5e2099a..7fea0ca 100644 (file)
@@ -5,28 +5,26 @@
 #ifndef _CPT_COMMON_H_
 #define _CPT_COMMON_H_
 
+#include <rte_mempool.h>
+
 /*
  * This file defines common macros and structs
  */
 
-/*
- * Macros to determine CPT model. Driver makefile will define CPT_MODEL
- * accordingly
- */
-#define CRYPTO_OCTEONTX                0x1
+#define TIME_IN_RESET_COUNT    5
 
-#define AE_TYPE 1
-#define SE_TYPE 2
+/* Default command timeout in seconds */
+#define DEFAULT_COMMAND_TIMEOUT        4
 
-struct cptvf_meta_info {
-       void *cptvf_meta_pool;
-       int cptvf_op_mlen;
-       int cptvf_op_sb_mlen;
-};
+#define CPT_COUNT_THOLD                32
+#define CPT_TIMER_THOLD                0x3F
 
-struct rid {
-       /** Request id of a crypto operation */
-       uintptr_t rid;
+#define MOD_INC(i, l)   ((i) == (l - 1) ? (i) = 0 : (i)++)
+
+struct cpt_qp_meta_info {
+       struct rte_mempool *pool;
+       int sg_mlen;
+       int lb_mlen;
 };
 
 /*
@@ -34,14 +32,33 @@ struct rid {
  *
  */
 struct pending_queue {
+       /** Pending requests count */
+       uint64_t pending_count;
+       /** Array of pending requests */
+       uintptr_t *req_queue;
        /** Tail of queue to be used for enqueue */
        uint16_t enq_tail;
        /** Head of queue to be used for dequeue */
        uint16_t deq_head;
-       /** Array of pending requests */
-       struct rid *rid_queue;
-       /** Pending requests count */
-       uint64_t pending_count;
 };
 
+struct cpt_request_info {
+       /** Data path fields */
+       uint64_t comp_baddr;
+       volatile uint64_t *completion_addr;
+       volatile uint64_t *alternate_caddr;
+       void *op;
+       struct {
+               uint64_t ei0;
+               uint64_t ei1;
+               uint64_t ei2;
+       } ist;
+       uint8_t *rptr;
+       const struct otx2_cpt_qp *qp;
+
+       /** Control path fields */
+       uint64_t time_out;
+       uint8_t extra_time;
+} __rte_aligned(8);
+
 #endif /* _CPT_COMMON_H_ */