qcedevi.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * QTI crypto Driver
  4. *
  5. * Copyright (c) 2014-2021, The Linux Foundation. All rights reserved.
  6. */
  7. #ifndef __CRYPTO_MSM_QCEDEVI_H
  8. #define __CRYPTO_MSM_QCEDEVI_H
  9. #include <linux/interrupt.h>
  10. #include <linux/cdev.h>
  11. #include <crypto/hash.h>
  12. #include "linux/platform_data/qcom_crypto_device.h"
  13. #include "linux/fips_status.h"
  14. #include "qce.h"
  15. #include "qcedev_smmu.h"
  16. #define CACHE_LINE_SIZE 64
  17. #define CE_SHA_BLOCK_SIZE SHA256_BLOCK_SIZE
  18. enum qcedev_crypto_oper_type {
  19. QCEDEV_CRYPTO_OPER_CIPHER = 0,
  20. QCEDEV_CRYPTO_OPER_SHA = 1,
  21. QCEDEV_CRYPTO_OPER_OFFLOAD_CIPHER = 2,
  22. QCEDEV_CRYPTO_OPER_LAST
  23. };
  24. struct qcedev_handle;
  25. struct qcedev_cipher_req {
  26. struct skcipher_request creq;
  27. void *cookie;
  28. };
  29. struct qcedev_sha_req {
  30. struct ahash_request sreq;
  31. void *cookie;
  32. };
  33. struct qcedev_sha_ctxt {
  34. uint32_t auth_data[4];
  35. uint8_t digest[QCEDEV_MAX_SHA_DIGEST];
  36. uint32_t diglen;
  37. uint8_t trailing_buf[64];
  38. uint32_t trailing_buf_len;
  39. uint8_t first_blk;
  40. uint8_t last_blk;
  41. uint8_t authkey[QCEDEV_MAX_SHA_BLOCK_SIZE];
  42. bool init_done;
  43. };
  44. struct qcedev_async_req {
  45. struct list_head list;
  46. struct completion complete;
  47. enum qcedev_crypto_oper_type op_type;
  48. union {
  49. struct qcedev_cipher_op_req cipher_op_req;
  50. struct qcedev_sha_op_req sha_op_req;
  51. struct qcedev_offload_cipher_op_req offload_cipher_op_req;
  52. };
  53. union {
  54. struct qcedev_cipher_req cipher_req;
  55. struct qcedev_sha_req sha_req;
  56. };
  57. struct qcedev_handle *handle;
  58. int err;
  59. };
  60. /**********************************************************************
  61. * Register ourselves as a char device to be able to access the dev driver
  62. * from userspace.
  63. */
  64. #define QCEDEV_DEV "qce"
  65. struct qcedev_control {
  66. /* CE features supported by platform */
  67. struct msm_ce_hw_support platform_support;
  68. uint32_t ce_lock_count;
  69. uint32_t high_bw_req_count;
  70. /* CE features/algorithms supported by HW engine*/
  71. struct ce_hw_support ce_support;
  72. /* replaced msm_bus with interconnect path */
  73. struct icc_path *icc_path;
  74. /* char device */
  75. struct cdev cdev;
  76. int minor;
  77. /* qce handle */
  78. void *qce;
  79. /* platform device */
  80. struct platform_device *pdev;
  81. unsigned int magic;
  82. struct list_head ready_commands;
  83. struct qcedev_async_req *active_command;
  84. spinlock_t lock;
  85. struct tasklet_struct done_tasklet;
  86. struct list_head context_banks;
  87. struct qcedev_mem_client *mem_client;
  88. };
  89. struct qcedev_handle {
  90. /* qcedev control handle */
  91. struct qcedev_control *cntl;
  92. /* qce internal sha context*/
  93. struct qcedev_sha_ctxt sha_ctxt;
  94. /* qcedev mapped buffer list */
  95. struct qcedev_buffer_list registeredbufs;
  96. };
  97. void qcedev_cipher_req_cb(void *cookie, unsigned char *icv,
  98. unsigned char *iv, int ret);
  99. void qcedev_sha_req_cb(void *cookie, unsigned char *digest,
  100. unsigned char *authdata, int ret);
  101. #endif /* __CRYPTO_MSM_QCEDEVI_H */