1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) 2016 Cavium, Inc.
9 #include <linux/list.h>
10 #include "cpt_common.h"
12 /* Default command queue length */
13 #define CPT_CMD_QLEN 2046
14 #define CPT_CMD_QCHUNK_SIZE 1023
16 /* Default command timeout in seconds */
17 #define CPT_COMMAND_TIMEOUT 4
18 #define CPT_TIMER_THOLD 0xFFFF
19 #define CPT_NUM_QS_PER_VF 1
20 #define CPT_INST_SIZE 64
21 #define CPT_NEXT_CHUNK_PTR_SIZE 8
23 #define CPT_VF_MSIX_VECTORS 2
24 #define CPT_VF_INTR_MBOX_MASK BIT(0)
25 #define CPT_VF_INTR_DOVF_MASK BIT(1)
26 #define CPT_VF_INTR_IRDE_MASK BIT(2)
27 #define CPT_VF_INTR_NWRP_MASK BIT(3)
28 #define CPT_VF_INTR_SERR_MASK BIT(4)
29 #define DMA_DIRECT_DIRECT 0 /* Input DIRECT, Output DIRECT */
30 #define DMA_GATHER_SCATTER 1
34 * Enumeration cpt_vf_int_vec_e
36 * CPT VF MSI-X Vector Enumeration
37 * Enumerates the MSI-X interrupt vectors.
39 enum cpt_vf_int_vec_e
{
40 CPT_VF_INT_VEC_E_MISC
= 0x00,
41 CPT_VF_INT_VEC_E_DONE
= 0x01
44 struct command_chunk
{
47 u32 size
; /* Chunk size, max CPT_INST_CHUNK_MAX_SIZE */
48 struct hlist_node nextchunk
;
51 struct command_queue
{
52 spinlock_t lock
; /* command queue lock */
53 u32 idx
; /* Command queue host write idx */
54 u32 nchunks
; /* Number of command chunks */
55 struct command_chunk
*qhead
; /* Command queue head, instructions
58 struct hlist_head chead
;
61 struct command_qinfo
{
63 u32 qchunksize
; /* Command queue chunk size */
64 struct command_queue queue
[CPT_NUM_QS_PER_VF
];
67 struct pending_entry
{
68 u8 busy
; /* Entry status (free/busy) */
70 volatile u64
*completion_addr
; /* Completion address */
72 void (*callback
)(int, void *); /* Kernel ASYNC request callabck */
73 void *callback_arg
; /* Kernel ASYNC request callabck arg */
76 struct pending_queue
{
77 struct pending_entry
*head
; /* head of the queue */
78 u32 front
; /* Process work from here */
79 u32 rear
; /* Append new work here */
80 atomic64_t pending_count
;
81 spinlock_t lock
; /* Queue lock */
84 struct pending_qinfo
{
85 u32 nr_queues
; /* Number of queues supported */
86 u32 qlen
; /* Queue length */
87 struct pending_queue queue
[CPT_NUM_QS_PER_VF
];
90 #define for_each_pending_queue(qinfo, q, i) \
91 for (i = 0, q = &qinfo->queue[i]; i < qinfo->nr_queues; i++, \
95 u16 flags
; /* Flags to hold device status bits */
96 u8 vfid
; /* Device Index 0...CPT_MAX_VF_NUM */
97 u8 vftype
; /* VF type of SE_TYPE(1) or AE_TYPE(1) */
98 u8 vfgrp
; /* VF group (0 - 8) */
99 u8 node
; /* Operating node: Bits (46:44) in BAR0 address */
100 u8 priority
; /* VF priority ring: 1-High proirity round
101 * robin ring;0-Low priority round robin ring;
103 struct pci_dev
*pdev
; /* pci device handle */
104 void __iomem
*reg_base
; /* Register start address */
105 void *wqe_info
; /* BH worker info */
107 cpumask_var_t affinity_mask
[CPT_VF_MSIX_VECTORS
];
108 /* Command and Pending queues */
111 struct command_qinfo cqinfo
; /* Command queue information */
112 struct pending_qinfo pqinfo
; /* Pending queue information */
113 /* VF-PF mailbox communication */
118 int cptvf_send_vf_up(struct cpt_vf
*cptvf
);
119 int cptvf_send_vf_down(struct cpt_vf
*cptvf
);
120 int cptvf_send_vf_to_grp_msg(struct cpt_vf
*cptvf
);
121 int cptvf_send_vf_priority_msg(struct cpt_vf
*cptvf
);
122 int cptvf_send_vq_size_msg(struct cpt_vf
*cptvf
);
123 int cptvf_check_pf_ready(struct cpt_vf
*cptvf
);
124 void cptvf_handle_mbox_intr(struct cpt_vf
*cptvf
);
125 void cvm_crypto_exit(void);
126 int cvm_crypto_init(struct cpt_vf
*cptvf
);
127 void vq_post_process(struct cpt_vf
*cptvf
, u32 qno
);
128 void cptvf_write_vq_doorbell(struct cpt_vf
*cptvf
, u32 val
);
129 #endif /* __CPTVF_H */