aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/crypto/ccp/ccp_pmd_ops.c
blob: 6984913f175bcbb4b7d87a6476b1f255708ad6b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
/*   SPDX-License-Identifier: BSD-3-Clause
 *   Copyright(c) 2018 Advanced Micro Devices, Inc. All rights reserved.
 */

#include <string.h>

#include <rte_common.h>
#include <rte_cryptodev_pmd.h>
#include <rte_malloc.h>

#include "ccp_pmd_private.h"
#include "ccp_dev.h"
#include "ccp_crypto.h"

#define CCP_BASE_SYM_CRYPTO_CAPABILITIES				\
	{	/* SHA1 */						\
		.op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,			\
		{.sym = {						\
			.xform_type = RTE_CRYPTO_SYM_XFORM_AUTH,	\
			{.auth = {					\
				 .algo = RTE_CRYPTO_AUTH_SHA1,		\
				 .block_size = 64,			\
				 .key_size = {				\
					 .min = 0,			\
					 .max = 0,			\
					 .increment = 0			\
				 },					\
				 .digest_size = {			\
					 .min = 20,			\
					 .max = 20,			\
					 .increment = 0			\
				 },					\
				 .aad_size = { 0 }			\
			 }, }						\
		}, }							\
	},								\
	{	/* SHA1 HMAC */						\
		.op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,			\
		{.sym = {						\
			.xform_type = RTE_CRYPTO_SYM_XFORM_AUTH,	\
			{.auth = {					\
				 .algo = RTE_CRYPTO_AUTH_SHA1_HMAC,     \
				 .block_size = 64,                      \
				 .key_size = {                          \
					 .min = 1,                      \
					 .max = 64,                     \
					 .increment = 1                 \
				 },                                     \
				 .digest_size = {                       \
					 .min = 20,                     \
					 .max = 20,                     \
					 .increment = 0                 \
				 },                                     \
				 .aad_size = { 0 }                      \
			 }, }                                           \
		}, }                                                    \
	},                                                              \
	{	/* SHA224 */                                            \
		.op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,                     \
		{.sym = {                                               \
			.xform_type = RTE_CRYPTO_SYM_XFORM_AUTH,        \
			{.auth = {                                      \
				 .algo = RTE_CRYPTO_AUTH_SHA224,        \
				 .block_size = 64,                      \
				 .key_size = {                          \
					 .min = 0,                      \
					 .max = 0,			\
					 .increment = 0                 \
				 },                                     \
				 .digest_size = {                       \
					 .min = 28,                     \
					 .max = 28,                     \
					 .increment = 0                 \
				 },                                     \
				 .aad_size = { 0 }                      \
			 }, }                                           \
		}, }                                                    \
	},                                                              \
	{	/* SHA224 HMAC */                                       \
		.op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,                     \
		{.sym = {                                               \
			.xform_type = RTE_CRYPTO_SYM_XFORM_AUTH,        \
			{.auth = {                                      \
				 .algo = RTE_CRYPTO_AUTH_SHA224_HMAC,   \
				 .block_size = 64,                      \
				 .key_size = {                          \
					 .min = 1,                      \
					 .max = 64,                     \
					 .increment = 1                 \
				 },                                     \
				 .digest_size = {                       \
					 .min = 28,                     \
					 .max = 28,                     \
					 .increment = 0                 \
				 },                                     \
				 .aad_size = { 0 }                      \
			 }, }                                           \
		}, }                                                    \
	},                                                              \
	{	/* SHA3-224 */                                          \
		.op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,                     \
		{.sym = {                                               \
			.xform_type = RTE_CRYPTO_SYM_XFORM_AUTH,        \
			{.auth = {                                      \
				 .algo = RTE_CRYPTO_AUTH_SHA3_224,      \
				 .block_size = 144,                     \
				 .key_size = {                          \
					 .min = 0,                      \
					 .max = 0,                      \
					 .increment = 0                 \
				 },                                     \
				 .digest_size = {                       \
					 .min = 28,                     \
					 .max = 28,                     \
					 .increment = 0                 \
				 },                                     \
				 .aad_size = { 0 }                      \
			 }, }                                           \
		}, }							\
	},                                                              \
	{	/* SHA3-224  HMAC*/                                     \
		.op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,                     \
		{.sym = {                                               \
			.xform_type = RTE_CRYPTO_SYM_XFORM_AUTH,        \
			{.auth = {                                      \
				 .algo = RTE_CRYPTO_AUTH_SHA3_224_HMAC, \
				 .block_size = 144,                     \
				 .key_size = {                          \
					 .min = 1,                      \
					 .max = 144,                    \
					 .increment = 1                 \
				 },                                     \
				 .digest_size = {                       \
					 .min = 28,                     \
					 .max = 28,                     \
					 .increment = 0                 \
				 },                                     \
				 .aad_size = { 0 }                      \
			 }, }                                           \
		}, }                                                    \
	},                                                              \
	{	/* SHA256 */                                            \
		.op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,                     \
		{.sym = {                                               \
			.xform_type = RTE_CRYPTO_SYM_XFORM_AUTH,        \
			{.auth = {                                      \
				 .algo = RTE_CRYPTO_AUTH_SHA256,        \
				 .block_size = 64,                      \
				 .key_size = {                          \
					 .min = 0,                      \
					 .max = 0,                      \
					 .increment = 0                 \
				 },                                     \
				 .digest_size = {                       \
					 .min = 32,                     \
					 .max = 32,                     \
					 .increment = 0                 \
				 },                                     \
				 .aad_size = { 0 }                      \
			 }, }                                           \
		}, }                                                    \
	},                                                              \
	{	/* SHA256 HMAC */                                       \
		.op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,                     \
		{.sym = {                                               \
			.xform_type = RTE_CRYPTO_SYM_XFORM_AUTH,        \
			{.auth = {                                      \
				 .algo = RTE_CRYPTO_AUTH_SHA256_HMAC,   \
				 .block_size = 64,                      \
				 .key_size = {                          \
					 .min = 1,                      \
					 .max = 64,                     \
					 .increment = 1                 \
				 },                                     \
				 .digest_size = {                       \
					 .min = 32,                     \
					 .max = 32,                     \
					 .increment = 0                 \
				 },                                     \
				 .aad_size = { 0 }                      \
			 }, }                                           \
		}, }                                                    \
	},                                                              \
	{	/* SHA3-256 */                                          \
		.op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,                     \
		{.sym = {                                               \
			.xform_type = RTE_CRYPTO_SYM_XFORM_AUTH,        \
			{.auth = {                                      \
				 .algo = RTE_CRYPTO_AUTH_SHA3_256,      \
				 .block_size = 136,                     \
				 .key_size = {                          \
					 .min = 0,                      \
					 .max = 0,                      \
					 .increment = 0                 \
				 },                                     \
				 .digest_size = {                       \
					 .min = 32,                     \
					 .max = 32,                     \
					 .increment = 0                 \
				 },                                     \
				 .aad_size = { 0 }                      \
			 }, }                                           \
		}, }                                                    \
	},                                                              \
	{	/* SHA3-256-HMAC */                                     \
		.op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,                     \
		{.sym = {                                               \
			.xform_type = RTE_CRYPTO_SYM_XFORM_AUTH,        \
			{.auth = {                                      \
				 .algo = RTE_CRYPTO_AUTH_SHA3_256_HMAC, \
				 .block_size = 136,                     \
				 .key_size = {                          \
					 .min = 1,                      \
					 .max = 136,                    \
					 .increment = 1                 \
				 },                                     \
				 .digest_size = {                       \
					 .min = 32,                     \
					 .max = 32,                     \
					 .increment = 0                 \
				 },                                     \
				 .aad_size = { 0 }                      \
			 }, }						\
		}, }                                                    \
	},                                                              \
	{	/* SHA384 */                                            \
		.op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,                     \
		{.sym = {                                               \
			.xform_type = RTE_CRYPTO_SYM_XFORM_AUTH,        \
			{.auth = {                                      \
				 .algo = RTE_CRYPTO_AUTH_SHA384,        \
				 .block_size = 128,                     \
				 .key_size = {                          \
					 .min = 0,                      \
					 .max = 0,                      \
					 .increment = 0                 \
				 },                                     \
				 .digest_size = {                       \
					 .min = 48,                     \
					 .max = 48,                     \
					 .increment = 0                 \
				 },                                     \
				 .aad_size = { 0 }                      \
			 }, }                                           \
		}, }                                                    \
	},                                                              \
	{	/* SHA384 HMAC */                                       \
		.op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,                     \
		{.sym = {                                               \
			.xform_type = RTE_CRYPTO_SYM_XFORM_AUTH,        \
			{.auth = {                                      \
				 .algo = RTE_CRYPTO_AUTH_SHA384_HMAC,   \
				 .block_size = 128,                     \
				 .key_size = {                          \
					 .min = 1,                      \
					 .max = 128,                    \
					 .increment = 1                 \
				 },                                     \
				 .digest_size = {                       \
					 .min = 48,                     \
					 .max = 48,                     \
					 .increment = 0                 \
				 },                                     \
				 .aad_size = { 0 }                      \
			 }, }                                           \
		}, }                                                    \
	},                                                              \
	{	/* SHA3-384 */                                          \
		.op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,                     \
		{.sym = {                                               \
			.xform_type = RTE_CRYPTO_SYM_XFORM_AUTH,        \
			{.auth = {                                      \
				 .algo = RTE_CRYPTO_AUTH_SHA3_384,      \
				 .block_size = 104,                     \
				 .key_size = {                          \
					 .min = 0,                      \
					 .max = 0,                      \
					 .increment = 0                 \
				 },                                     \
				 .digest_size = {                       \
					 .min = 48,                     \
					 .max = 48,                     \
					 .increment = 0                 \
				 },                                     \
				 .aad_size = { 0 }                      \
			 }, }                                           \
		}, }                                                    \
	},                                                              \
	{	/* SHA3-384-HMAC */                                     \
		.op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,                     \
		{.sym = {                                               \
			.xform_type = RTE_CRYPTO_SYM_XFORM_AUTH,        \
			{.auth = {                                      \
				 .algo = RTE_CRYPTO_AUTH_SHA3_384_HMAC, \
				 .block_size = 104,                     \
				 .key_size = {                          \
					 .min = 1,                      \
					 .max = 104,                    \
					 .increment = 1                 \
				 },                                     \
				 .digest_size = {                       \
					 .min = 48,                     \
					 .max = 48,                     \
					 .increment = 0                 \
				 },                                     \
				 .aad_size = { 0 }                      \
			 }, }                                           \
		}, }                                                    \
	},                                                              \
	{	/* SHA512  */                                           \
		.op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,                     \
		{.sym = {                                               \
			.xform_type = RTE_CRYPTO_SYM_XFORM_AUTH,        \
			{.auth = {                                      \
				 .algo = RTE_CRYPTO_AUTH_SHA512,        \
				 .block_size = 128,                     \
				 .key_size = {                          \
					 .min = 0,                      \
					 .max = 0,                      \
					 .increment = 0                 \
				 },                                     \
				 .digest_size = {                       \
					 .min = 64,                     \
					 .max = 64,                     \
					 .increment = 0                 \
				 },                                     \
				 .aad_size = { 0 }			\
			 }, }                                           \
		}, }                                                    \
	},                                                              \
	{	/* SHA512 HMAC */                                       \
		.op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,                     \
		{.sym = {                                               \
			.xform_type = RTE_CRYPTO_SYM_XFORM_AUTH,        \
			{.auth = {                                      \
				 .algo = RTE_CRYPTO_AUTH_SHA512_HMAC,   \
				 .block_size = 128,                     \
				 .key_size = {                          \
					 .min = 1,                      \
					 .max = 128,                    \
					 .increment = 1                 \
				 },                                     \
				 .digest_size = {                       \
					 .min = 64,                     \
					 .max = 64,                     \
					 .increment = 0                 \
				 },                                     \
				 .aad_size = { 0 }                      \
			 }, }                                           \
		}, }                                                    \
	},                                                              \
	{	/* SHA3-512  */                                         \
		.op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,                     \
		{.sym = {                                               \
			.xform_type = RTE_CRYPTO_SYM_XFORM_AUTH,        \
			{.auth = {                                      \
				 .algo = RTE_CRYPTO_AUTH_SHA3_512,      \
				 .block_size = 72,                      \
				 .key_size = {                          \
					 .min = 0,                      \
					 .max = 0,                      \
					 .increment = 0                 \
				 },                                     \
				 .digest_size = {                       \
					 .min = 64,                     \
					 .max = 64,                     \
					 .increment = 0                 \
				 },                                     \
				 .aad_size = { 0 }                      \
			 }, }                                           \
		}, }                                                    \
	},                                                              \
	{	/* SHA3-512-HMAC  */                                    \
		.op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,                     \
		{.sym = {                                               \
			.xform_type = RTE_CRYPTO_SYM_XFORM_AUTH,        \
			{.auth = {                                      \
				 .algo = RTE_CRYPTO_AUTH_SHA3_512_HMAC, \
				 .block_size = 72,                      \
				 .key_size = {                          \
					 .min = 1,                      \
					 .max = 72,                     \
					 .increment = 1                 \
				 },                                     \
				 .digest_size = {                       \
					 .min = 64,                     \
					 .max = 64,                     \
					 .increment = 0                 \
				 },                                     \
				 .aad_size = { 0 }                      \
			}, }                                            \
		}, }                                                    \
	},                                                              \
	{	/*AES-CMAC */                                           \
		.op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,                     \
		{.sym = {                                               \
			.xform_type = RTE_CRYPTO_SYM_XFORM_AUTH,        \
			{.auth = {                                      \
				 .algo = RTE_CRYPTO_AUTH_AES_CMAC,      \
				 .block_size = 16,                      \
				 .key_size = {                          \
					 .min = 16,                     \
					 .max = 32,                     \
					 .increment = 8                 \
				 },                                     \
				 .digest_size = {                       \
					 .min = 16,                     \
					 .max = 16,                     \
					 .increment = 0                 \
				 },                                     \
			}, }                                            \
		}, }                                                    \
	},                                                              \
	{       /* AES ECB */                                           \
		.op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,                     \
		{.sym = {                                               \
			.xform_type = RTE_CRYPTO_SYM_XFORM_CIPHER,      \
			{.cipher = {                                    \
				.algo = RTE_CRYPTO_CIPHER_AES_ECB,      \
				.block_size = 16,                       \
				.key_size = {                           \
				   .min = 16,                           \
				   .max = 32,                           \
				   .increment = 8                       \
				},                                      \
				.iv_size = {                            \
				   .min = 0,                            \
				   .max = 0,                            \
				   .increment = 0                       \
				}                                       \
			}, }						\
		}, }                                                    \
	},                                                              \
	{       /* AES CBC */                                           \
		.op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,                     \
		{.sym = {                                               \
			.xform_type = RTE_CRYPTO_SYM_XFORM_CIPHER,      \
			{.cipher = {                                    \
				.algo = RTE_CRYPTO_CIPHER_AES_CBC,      \
				.block_size = 16,                       \
				.key_size = {                           \
					.min = 16,                      \
					.max = 32,                      \
					.increment = 8                  \
				},                                      \
				.iv_size = {                            \
					.min = 16,                      \
					.max = 16,                      \
					.increment = 0                  \
				}                                       \
			}, }                                            \
		}, }                                                    \
	},                                                              \
	{	/* AES CTR */                                           \
		.op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,                     \
		{.sym = {                                               \
			.xform_type = RTE_CRYPTO_SYM_XFORM_CIPHER,      \
			{.cipher = {                                    \
				.algo = RTE_CRYPTO_CIPHER_AES_CTR,      \
				.block_size = 16,                       \
				.key_size = {                           \
					.min = 16,                      \
					.max = 32,                      \
					.increment = 8                  \
				},                                      \
				.iv_size = {                            \
					.min = 16,                      \
					.max = 16,                      \
					.increment = 0                  \
				}                                       \
			}, }                                            \
		}, }                                                    \
	},                                                              \
	{	/* 3DES CBC */                                          \
		.op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,                     \
		{.sym = {                                               \
			.xform_type = RTE_CRYPTO_SYM_XFORM_CIPHER,      \
			{.cipher = {                                    \
				.algo = RTE_CRYPTO_CIPHER_3DES_CBC,     \
				.block_size = 8,                        \
				.key_size = {                           \
					.min = 16,                      \
					.max = 24,                      \
					.increment = 8                  \
				},                                      \
				.iv_size = {                            \
					.min = 8,                       \
					.max = 8,                       \
					.increment = 0                  \
				}                                       \
			}, }                                            \
		}, }                                                    \
	},                                                              \
	{       /* AES GCM */                                           \
		.op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,                     \
		{.sym = {                                               \
			.xform_type = RTE_CRYPTO_SYM_XFORM_AEAD,        \
			{.aead = {                                      \
				 .algo = RTE_CRYPTO_AEAD_AES_GCM,       \
				 .block_size = 16,                      \
				 .key_size = {                          \
					 .min = 16,                     \
					 .max = 32,                     \
					 .increment = 8                 \
				 },                                     \
				 .digest_size = {                       \
					 .min = 16,                     \
					 .max = 16,                     \
					 .increment = 0                 \
				 },                                     \
				 .aad_size = {                          \
					 .min = 0,                      \
					 .max = 65535,                  \
					 .increment = 1                 \
				 },                                     \
				 .iv_size = {                           \
					 .min = 12,                     \
					 .max = 16,                     \
					 .increment = 4                 \
				 },                                     \
			}, }                                            \
		}, }                                                    \
	}

#define CCP_EXTRA_SYM_CRYPTO_CAPABILITIES				\
	{	/* MD5 HMAC */						\
		.op = RTE_CRYPTO_OP_TYPE_SYMMETRIC,			\
		{.sym = {						\
			.xform_type = RTE_CRYPTO_SYM_XFORM_AUTH,	\
			{.auth = {					\
				 .algo = RTE_CRYPTO_AUTH_MD5_HMAC,	\
				 .block_size = 64,			\
				 .key_size = {				\
					 .min = 1,			\
					 .max = 64,			\
					 .increment = 1			\
				 },					\
				 .digest_size = {			\
					 .min = 16,			\
					 .max = 16,			\
					 .increment = 0			\
				 },					\
				 .aad_size = { 0 }			\
			}, }						\
		}, }							\
	}

static const struct rte_cryptodev_capabilities ccp_crypto_cap[] = {
	CCP_BASE_SYM_CRYPTO_CAPABILITIES,
	RTE_CRYPTODEV_END_OF_CAPABILITIES_LIST()
};

static const struct rte_cryptodev_capabilities ccp_crypto_cap_complete[] = {
	CCP_EXTRA_SYM_CRYPTO_CAPABILITIES,
	CCP_BASE_SYM_CRYPTO_CAPABILITIES,
	RTE_CRYPTODEV_END_OF_CAPABILITIES_LIST()
};

static int
ccp_pmd_config(struct rte_cryptodev *dev __rte_unused,
	       struct rte_cryptodev_config *config __rte_unused)
{
	return 0;
}

static int
ccp_pmd_start(struct rte_cryptodev *dev)
{
	return ccp_dev_start(dev);
}

static void
ccp_pmd_stop(struct rte_cryptodev *dev __rte_unused)
{

}

static int
ccp_pmd_close(struct rte_cryptodev *dev __rte_unused)
{
	return 0;
}

static void
ccp_pmd_stats_get(struct rte_cryptodev *dev,
		  struct rte_cryptodev_stats *stats)
{
	int qp_id;

	for (qp_id = 0; qp_id < dev->data->nb_queue_pairs; qp_id++) {
		struct ccp_qp *qp = dev->data->queue_pairs[qp_id];

		stats->enqueued_count += qp->qp_stats.enqueued_count;
		stats->dequeued_count += qp->qp_stats.dequeued_count;

		stats->enqueue_err_count += qp->qp_stats.enqueue_err_count;
		stats->dequeue_err_count += qp->qp_stats.dequeue_err_count;
	}

}

static void
ccp_pmd_stats_reset(struct rte_cryptodev *dev)
{
	int qp_id;

	for (qp_id = 0; qp_id < dev->data->nb_queue_pairs; qp_id++) {
		struct ccp_qp *qp = dev->data->queue_pairs[qp_id];

		memset(&qp->qp_stats, 0, sizeof(qp->qp_stats));
	}
}

static void
ccp_pmd_info_get(struct rte_cryptodev *dev,
		 struct rte_cryptodev_info *dev_info)
{
	struct ccp_private *internals = dev->data->dev_private;

	if (dev_info != NULL) {
		dev_info->driver_id = dev->driver_id;
		dev_info->feature_flags = dev->feature_flags;
		dev_info->capabilities = ccp_crypto_cap;
		if (internals->auth_opt == 1)
			dev_info->capabilities = ccp_crypto_cap_complete;
		dev_info->max_nb_queue_pairs = internals->max_nb_qpairs;
		/* No limit of number of sessions */
		dev_info->sym.max_nb_sessions = 0;
	}
}

static int
ccp_pmd_qp_release(struct rte_cryptodev *dev, uint16_t qp_id)
{
	struct ccp_qp *qp;

	if (dev->data->queue_pairs[qp_id] != NULL) {
		qp = (struct ccp_qp *)dev->data->queue_pairs[qp_id];
		rte_ring_free(qp->processed_pkts);
		rte_mempool_free(qp->batch_mp);
		rte_free(qp);
		dev->data->queue_pairs[qp_id] = NULL;
	}
	return 0;
}

static int
ccp_pmd_qp_set_unique_name(struct rte_cryptodev *dev,
		struct ccp_qp *qp)
{
	unsigned int n = snprintf(qp->name, sizeof(qp->name),
			"ccp_pmd_%u_qp_%u",
			dev->data->dev_id, qp->id);

	if (n > sizeof(qp->name))
		return -1;

	return 0;
}

static struct rte_ring *
ccp_pmd_qp_create_batch_info_ring(struct ccp_qp *qp,
				  unsigned int ring_size, int socket_id)
{
	struct rte_ring *r;

	r = rte_ring_lookup(qp->name);
	if (r) {
		if (r->size >= ring_size) {
			CCP_LOG_INFO(
				"Reusing ring %s for processed packets",
				qp->name);
			return r;
		}
		CCP_LOG_INFO(
			"Unable to reuse ring %s for processed packets",
			 qp->name);
		return NULL;
	}

	return rte_ring_create(qp->name, ring_size, socket_id,
			RING_F_SP_ENQ | RING_F_SC_DEQ);
}

static int
ccp_pmd_qp_setup(struct rte_cryptodev *dev, uint16_t qp_id,
		 const struct rte_cryptodev_qp_conf *qp_conf,
		 int socket_id, struct rte_mempool *session_pool)
{
	struct ccp_private *internals = dev->data->dev_private;
	struct ccp_qp *qp;
	int retval = 0;

	if (qp_id >= internals->max_nb_qpairs) {
		CCP_LOG_ERR("Invalid qp_id %u, should be less than %u",
			    qp_id, internals->max_nb_qpairs);
		return (-EINVAL);
	}

	/* Free memory prior to re-allocation if needed. */
	if (dev->data->queue_pairs[qp_id] != NULL)
		ccp_pmd_qp_release(dev, qp_id);

	/* Allocate the queue pair data structure. */
	qp = rte_zmalloc_socket("CCP Crypto PMD Queue Pair", sizeof(*qp),
					RTE_CACHE_LINE_SIZE, socket_id);
	if (qp == NULL) {
		CCP_LOG_ERR("Failed to allocate queue pair memory");
		return (-ENOMEM);
	}

	qp->dev = dev;
	qp->id = qp_id;
	dev->data->queue_pairs[qp_id] = qp;

	retval = ccp_pmd_qp_set_unique_name(dev, qp);
	if (retval) {
		CCP_LOG_ERR("Failed to create unique name for ccp qp");
		goto qp_setup_cleanup;
	}

	qp->processed_pkts = ccp_pmd_qp_create_batch_info_ring(qp,
			qp_conf->nb_descriptors, socket_id);
	if (qp->processed_pkts == NULL) {
		CCP_LOG_ERR("Failed to create batch info ring");
		goto qp_setup_cleanup;
	}

	qp->sess_mp = session_pool;

	/* mempool for batch info */
	qp->batch_mp = rte_mempool_create(
				qp->name,
				qp_conf->nb_descriptors,
				sizeof(struct ccp_batch_info),
				RTE_CACHE_LINE_SIZE,
				0, NULL, NULL, NULL, NULL,
				SOCKET_ID_ANY, 0);
	if (qp->batch_mp == NULL)
		goto qp_setup_cleanup;
	memset(&qp->qp_stats, 0, sizeof(qp->qp_stats));
	return 0;

qp_setup_cleanup:
	dev->data->queue_pairs[qp_id] = NULL;
	if (qp)
		rte_free(qp);
	return -1;
}

static uint32_t
ccp_pmd_qp_count(struct rte_cryptodev *dev)
{
	return dev->data->nb_queue_pairs;
}

static unsigned
ccp_pmd_sym_session_get_size(struct rte_cryptodev *dev __rte_unused)
{
	return sizeof(struct ccp_session);
}

static int
ccp_pmd_sym_session_configure(struct rte_cryptodev *dev,
			  struct rte_crypto_sym_xform *xform,
			  struct rte_cryptodev_sym_session *sess,
			  struct rte_mempool *mempool)
{
	int ret;
	void *sess_private_data;
	struct ccp_private *internals;

	if (unlikely(sess == NULL || xform == NULL)) {
		CCP_LOG_ERR("Invalid session struct or xform");
		return -ENOMEM;
	}

	if (rte_mempool_get(mempool, &sess_private_data)) {
		CCP_LOG_ERR("Couldn't get object from session mempool");
		return -ENOMEM;
	}
	internals = (struct ccp_private *)dev->data->dev_private;
	ret = ccp_set_session_parameters(sess_private_data, xform, internals);
	if (ret != 0) {
		CCP_LOG_ERR("failed configure session parameters");

		/* Return session to mempool */
		rte_mempool_put(mempool, sess_private_data);
		return ret;
	}
	set_sym_session_private_data(sess, dev->driver_id,
				 sess_private_data);

	return 0;
}

static void
ccp_pmd_sym_session_clear(struct rte_cryptodev *dev,
		      struct rte_cryptodev_sym_session *sess)
{
	uint8_t index = dev->driver_id;
	void *sess_priv = get_sym_session_private_data(sess, index);

	if (sess_priv) {
		struct rte_mempool *sess_mp = rte_mempool_from_obj(sess_priv);

		rte_mempool_put(sess_mp, sess_priv);
		memset(sess_priv, 0, sizeof(struct ccp_session));
		set_sym_session_private_data(sess, index, NULL);
	}
}

struct rte_cryptodev_ops ccp_ops = {
		.dev_configure		= ccp_pmd_config,
		.dev_start		= ccp_pmd_start,
		.dev_stop		= ccp_pmd_stop,
		.dev_close		= ccp_pmd_close,

		.stats_get		= ccp_pmd_stats_get,
		.stats_reset		= ccp_pmd_stats_reset,

		.dev_infos_get		= ccp_pmd_info_get,

		.queue_pair_setup	= ccp_pmd_qp_setup,
		.queue_pair_release	= ccp_pmd_qp_release,
		.queue_pair_count	= ccp_pmd_qp_count,

		.sym_session_get_size	= ccp_pmd_sym_session_get_size,
		.sym_session_configure	= ccp_pmd_sym_session_configure,
		.sym_session_clear	= ccp_pmd_sym_session_clear,
};

struct rte_cryptodev_ops *ccp_pmd_ops = &ccp_ops;