common.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /*
  2. * Copyright (c) 2010-2014, The Linux Foundation. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 and
  6. * only version 2 as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. */
  13. #ifndef _COMMON_H_
  14. #define _COMMON_H_
  15. #include <linux/crypto.h>
  16. #include <linux/types.h>
  17. #include <crypto/aes.h>
  18. #include <crypto/hash.h>
  19. /* key size in bytes */
  20. #define QCE_SHA_HMAC_KEY_SIZE 64
  21. #define QCE_MAX_CIPHER_KEY_SIZE AES_KEYSIZE_256
  22. /* IV length in bytes */
  23. #define QCE_AES_IV_LENGTH AES_BLOCK_SIZE
  24. /* max of AES_BLOCK_SIZE, DES3_EDE_BLOCK_SIZE */
  25. #define QCE_MAX_IV_SIZE AES_BLOCK_SIZE
  26. /* maximum nonce bytes */
  27. #define QCE_MAX_NONCE 16
  28. #define QCE_MAX_NONCE_WORDS (QCE_MAX_NONCE / sizeof(u32))
  29. /* burst size alignment requirement */
  30. #define QCE_MAX_ALIGN_SIZE 64
  31. /* cipher algorithms */
  32. #define QCE_ALG_DES BIT(0)
  33. #define QCE_ALG_3DES BIT(1)
  34. #define QCE_ALG_AES BIT(2)
  35. /* hash and hmac algorithms */
  36. #define QCE_HASH_SHA1 BIT(3)
  37. #define QCE_HASH_SHA256 BIT(4)
  38. #define QCE_HASH_SHA1_HMAC BIT(5)
  39. #define QCE_HASH_SHA256_HMAC BIT(6)
  40. #define QCE_HASH_AES_CMAC BIT(7)
  41. /* cipher modes */
  42. #define QCE_MODE_CBC BIT(8)
  43. #define QCE_MODE_ECB BIT(9)
  44. #define QCE_MODE_CTR BIT(10)
  45. #define QCE_MODE_XTS BIT(11)
  46. #define QCE_MODE_CCM BIT(12)
  47. #define QCE_MODE_MASK GENMASK(12, 8)
  48. /* cipher encryption/decryption operations */
  49. #define QCE_ENCRYPT BIT(13)
  50. #define QCE_DECRYPT BIT(14)
  51. #define IS_DES(flags) (flags & QCE_ALG_DES)
  52. #define IS_3DES(flags) (flags & QCE_ALG_3DES)
  53. #define IS_AES(flags) (flags & QCE_ALG_AES)
  54. #define IS_SHA1(flags) (flags & QCE_HASH_SHA1)
  55. #define IS_SHA256(flags) (flags & QCE_HASH_SHA256)
  56. #define IS_SHA1_HMAC(flags) (flags & QCE_HASH_SHA1_HMAC)
  57. #define IS_SHA256_HMAC(flags) (flags & QCE_HASH_SHA256_HMAC)
  58. #define IS_CMAC(flags) (flags & QCE_HASH_AES_CMAC)
  59. #define IS_SHA(flags) (IS_SHA1(flags) || IS_SHA256(flags))
  60. #define IS_SHA_HMAC(flags) \
  61. (IS_SHA1_HMAC(flags) || IS_SHA256_HMAC(flags))
  62. #define IS_CBC(mode) (mode & QCE_MODE_CBC)
  63. #define IS_ECB(mode) (mode & QCE_MODE_ECB)
  64. #define IS_CTR(mode) (mode & QCE_MODE_CTR)
  65. #define IS_XTS(mode) (mode & QCE_MODE_XTS)
  66. #define IS_CCM(mode) (mode & QCE_MODE_CCM)
  67. #define IS_ENCRYPT(dir) (dir & QCE_ENCRYPT)
  68. #define IS_DECRYPT(dir) (dir & QCE_DECRYPT)
  69. struct qce_alg_template {
  70. struct list_head entry;
  71. u32 crypto_alg_type;
  72. unsigned long alg_flags;
  73. const u32 *std_iv;
  74. union {
  75. struct crypto_alg crypto;
  76. struct ahash_alg ahash;
  77. } alg;
  78. struct qce_device *qce;
  79. };
  80. void qce_cpu_to_be32p_array(__be32 *dst, const u8 *src, unsigned int len);
  81. int qce_check_status(struct qce_device *qce, u32 *status);
  82. void qce_get_version(struct qce_device *qce, u32 *major, u32 *minor, u32 *step);
  83. int qce_start(struct crypto_async_request *async_req, u32 type, u32 totallen,
  84. u32 offset);
  85. #endif /* _COMMON_H_ */