1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/cpumask.h>
3 #include <linux/dma-mapping.h>
4 #include <linux/dmapool.h>
5 #include <linux/delay.h>
7 #include <linux/kernel.h>
8 #include <linux/module.h>
9 #include <linux/pci_regs.h>
10 #include <linux/vmalloc.h>
11 #include <linux/pci.h>
13 #include "nitrox_dev.h"
14 #include "nitrox_common.h"
15 #include "nitrox_req.h"
16 #include "nitrox_csr.h"
18 #define CRYPTO_CTX_SIZE 256
20 /* command queue alignments */
21 #define PKT_IN_ALIGN 16
23 static int cmdq_common_init(struct nitrox_cmdq
*cmdq
)
25 struct nitrox_device
*ndev
= cmdq
->ndev
;
28 qsize
= (ndev
->qlen
) * cmdq
->instr_size
;
29 cmdq
->head_unaligned
= dma_zalloc_coherent(DEV(ndev
),
30 (qsize
+ PKT_IN_ALIGN
),
33 if (!cmdq
->head_unaligned
)
36 cmdq
->head
= PTR_ALIGN(cmdq
->head_unaligned
, PKT_IN_ALIGN
);
37 cmdq
->dma
= PTR_ALIGN(cmdq
->dma_unaligned
, PKT_IN_ALIGN
);
38 cmdq
->qsize
= (qsize
+ PKT_IN_ALIGN
);
40 spin_lock_init(&cmdq
->response_lock
);
41 spin_lock_init(&cmdq
->cmdq_lock
);
42 spin_lock_init(&cmdq
->backlog_lock
);
44 INIT_LIST_HEAD(&cmdq
->response_head
);
45 INIT_LIST_HEAD(&cmdq
->backlog_head
);
46 INIT_WORK(&cmdq
->backlog_qflush
, backlog_qflush_work
);
48 atomic_set(&cmdq
->pending_count
, 0);
49 atomic_set(&cmdq
->backlog_count
, 0);
53 static void cmdq_common_cleanup(struct nitrox_cmdq
*cmdq
)
55 struct nitrox_device
*ndev
= cmdq
->ndev
;
57 cancel_work_sync(&cmdq
->backlog_qflush
);
59 dma_free_coherent(DEV(ndev
), cmdq
->qsize
,
60 cmdq
->head_unaligned
, cmdq
->dma_unaligned
);
62 atomic_set(&cmdq
->pending_count
, 0);
63 atomic_set(&cmdq
->backlog_count
, 0);
65 cmdq
->dbell_csr_addr
= NULL
;
72 static void nitrox_cleanup_pkt_cmdqs(struct nitrox_device
*ndev
)
76 for (i
= 0; i
< ndev
->nr_queues
; i
++) {
77 struct nitrox_cmdq
*cmdq
= &ndev
->pkt_cmdqs
[i
];
79 cmdq_common_cleanup(cmdq
);
81 kfree(ndev
->pkt_cmdqs
);
82 ndev
->pkt_cmdqs
= NULL
;
85 static int nitrox_init_pkt_cmdqs(struct nitrox_device
*ndev
)
89 size
= ndev
->nr_queues
* sizeof(struct nitrox_cmdq
);
90 ndev
->pkt_cmdqs
= kzalloc(size
, GFP_KERNEL
);
94 for (i
= 0; i
< ndev
->nr_queues
; i
++) {
95 struct nitrox_cmdq
*cmdq
;
98 cmdq
= &ndev
->pkt_cmdqs
[i
];
101 cmdq
->instr_size
= sizeof(struct nps_pkt_instr
);
103 offset
= NPS_PKT_IN_INSTR_BAOFF_DBELLX(i
);
104 /* SE ring doorbell address for this queue */
105 cmdq
->dbell_csr_addr
= NITROX_CSR_ADDR(ndev
, offset
);
107 err
= cmdq_common_init(cmdq
);
114 nitrox_cleanup_pkt_cmdqs(ndev
);
118 static int create_crypto_dma_pool(struct nitrox_device
*ndev
)
122 /* Crypto context pool, 16 byte aligned */
123 size
= CRYPTO_CTX_SIZE
+ sizeof(struct ctx_hdr
);
124 ndev
->ctx_pool
= dma_pool_create("crypto-context",
125 DEV(ndev
), size
, 16, 0);
132 static void destroy_crypto_dma_pool(struct nitrox_device
*ndev
)
137 dma_pool_destroy(ndev
->ctx_pool
);
138 ndev
->ctx_pool
= NULL
;
142 * crypto_alloc_context - Allocate crypto context from pool
143 * @ndev: NITROX Device
145 void *crypto_alloc_context(struct nitrox_device
*ndev
)
151 vaddr
= dma_pool_alloc(ndev
->ctx_pool
, (GFP_ATOMIC
| __GFP_ZERO
), &dma
);
157 ctx
->pool
= ndev
->ctx_pool
;
159 ctx
->ctx_dma
= dma
+ sizeof(struct ctx_hdr
);
161 return ((u8
*)vaddr
+ sizeof(struct ctx_hdr
));
165 * crypto_free_context - Free crypto context to pool
166 * @ctx: context to free
168 void crypto_free_context(void *ctx
)
170 struct ctx_hdr
*ctxp
;
175 ctxp
= (struct ctx_hdr
*)((u8
*)ctx
- sizeof(struct ctx_hdr
));
176 dma_pool_free(ctxp
->pool
, ctxp
, ctxp
->dma
);
180 * nitrox_common_sw_init - allocate software resources.
181 * @ndev: NITROX device
183 * Allocates crypto context pools and command queues etc.
185 * Return: 0 on success, or a negative error code on error.
187 int nitrox_common_sw_init(struct nitrox_device
*ndev
)
191 /* per device crypto context pool */
192 err
= create_crypto_dma_pool(ndev
);
196 err
= nitrox_init_pkt_cmdqs(ndev
);
198 destroy_crypto_dma_pool(ndev
);
204 * nitrox_common_sw_cleanup - free software resources.
205 * @ndev: NITROX device
207 void nitrox_common_sw_cleanup(struct nitrox_device
*ndev
)
209 nitrox_cleanup_pkt_cmdqs(ndev
);
210 destroy_crypto_dma_pool(ndev
);