caamalg_desc.h 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*
  2. * Shared descriptors for aead, ablkcipher algorithms
  3. *
  4. * Copyright 2016 NXP
  5. */
  6. #ifndef _CAAMALG_DESC_H_
  7. #define _CAAMALG_DESC_H_
  8. /* length of descriptors text */
  9. #define DESC_AEAD_BASE (4 * CAAM_CMD_SZ)
  10. #define DESC_AEAD_ENC_LEN (DESC_AEAD_BASE + 11 * CAAM_CMD_SZ)
  11. #define DESC_AEAD_DEC_LEN (DESC_AEAD_BASE + 15 * CAAM_CMD_SZ)
  12. #define DESC_AEAD_GIVENC_LEN (DESC_AEAD_ENC_LEN + 7 * CAAM_CMD_SZ)
  13. /* Note: Nonce is counted in cdata.keylen */
  14. #define DESC_AEAD_CTR_RFC3686_LEN (4 * CAAM_CMD_SZ)
  15. #define DESC_AEAD_NULL_BASE (3 * CAAM_CMD_SZ)
  16. #define DESC_AEAD_NULL_ENC_LEN (DESC_AEAD_NULL_BASE + 11 * CAAM_CMD_SZ)
  17. #define DESC_AEAD_NULL_DEC_LEN (DESC_AEAD_NULL_BASE + 13 * CAAM_CMD_SZ)
  18. #define DESC_GCM_BASE (3 * CAAM_CMD_SZ)
  19. #define DESC_GCM_ENC_LEN (DESC_GCM_BASE + 16 * CAAM_CMD_SZ)
  20. #define DESC_GCM_DEC_LEN (DESC_GCM_BASE + 12 * CAAM_CMD_SZ)
  21. #define DESC_RFC4106_BASE (3 * CAAM_CMD_SZ)
  22. #define DESC_RFC4106_ENC_LEN (DESC_RFC4106_BASE + 13 * CAAM_CMD_SZ)
  23. #define DESC_RFC4106_DEC_LEN (DESC_RFC4106_BASE + 13 * CAAM_CMD_SZ)
  24. #define DESC_RFC4543_BASE (3 * CAAM_CMD_SZ)
  25. #define DESC_RFC4543_ENC_LEN (DESC_RFC4543_BASE + 11 * CAAM_CMD_SZ)
  26. #define DESC_RFC4543_DEC_LEN (DESC_RFC4543_BASE + 12 * CAAM_CMD_SZ)
  27. #define DESC_ABLKCIPHER_BASE (3 * CAAM_CMD_SZ)
  28. #define DESC_ABLKCIPHER_ENC_LEN (DESC_ABLKCIPHER_BASE + \
  29. 20 * CAAM_CMD_SZ)
  30. #define DESC_ABLKCIPHER_DEC_LEN (DESC_ABLKCIPHER_BASE + \
  31. 15 * CAAM_CMD_SZ)
  32. void cnstr_shdsc_aead_null_encap(u32 * const desc, struct alginfo *adata,
  33. unsigned int icvsize);
  34. void cnstr_shdsc_aead_null_decap(u32 * const desc, struct alginfo *adata,
  35. unsigned int icvsize);
  36. void cnstr_shdsc_aead_encap(u32 * const desc, struct alginfo *cdata,
  37. struct alginfo *adata, unsigned int icvsize,
  38. const bool is_rfc3686, u32 *nonce,
  39. const u32 ctx1_iv_off);
  40. void cnstr_shdsc_aead_decap(u32 * const desc, struct alginfo *cdata,
  41. struct alginfo *adata, unsigned int ivsize,
  42. unsigned int icvsize, const bool geniv,
  43. const bool is_rfc3686, u32 *nonce,
  44. const u32 ctx1_iv_off);
  45. void cnstr_shdsc_aead_givencap(u32 * const desc, struct alginfo *cdata,
  46. struct alginfo *adata, unsigned int ivsize,
  47. unsigned int icvsize, const bool is_rfc3686,
  48. u32 *nonce, const u32 ctx1_iv_off);
  49. void cnstr_shdsc_gcm_encap(u32 * const desc, struct alginfo *cdata,
  50. unsigned int icvsize);
  51. void cnstr_shdsc_gcm_decap(u32 * const desc, struct alginfo *cdata,
  52. unsigned int icvsize);
  53. void cnstr_shdsc_rfc4106_encap(u32 * const desc, struct alginfo *cdata,
  54. unsigned int icvsize);
  55. void cnstr_shdsc_rfc4106_decap(u32 * const desc, struct alginfo *cdata,
  56. unsigned int icvsize);
  57. void cnstr_shdsc_rfc4543_encap(u32 * const desc, struct alginfo *cdata,
  58. unsigned int icvsize);
  59. void cnstr_shdsc_rfc4543_decap(u32 * const desc, struct alginfo *cdata,
  60. unsigned int icvsize);
  61. void cnstr_shdsc_ablkcipher_encap(u32 * const desc, struct alginfo *cdata,
  62. unsigned int ivsize, const bool is_rfc3686,
  63. const u32 ctx1_iv_off);
  64. void cnstr_shdsc_ablkcipher_decap(u32 * const desc, struct alginfo *cdata,
  65. unsigned int ivsize, const bool is_rfc3686,
  66. const u32 ctx1_iv_off);
  67. void cnstr_shdsc_ablkcipher_givencap(u32 * const desc, struct alginfo *cdata,
  68. unsigned int ivsize, const bool is_rfc3686,
  69. const u32 ctx1_iv_off);
  70. void cnstr_shdsc_xts_ablkcipher_encap(u32 * const desc, struct alginfo *cdata);
  71. void cnstr_shdsc_xts_ablkcipher_decap(u32 * const desc, struct alginfo *cdata);
  72. #endif /* _CAAMALG_DESC_H_ */