qcedevi.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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. wait_queue_head_t wait_q;
  60. uint16_t state;
  61. bool timed_out;
  62. };
  63. /**********************************************************************
  64. * Register ourselves as a char device to be able to access the dev driver
  65. * from userspace.
  66. */
  67. #define QCEDEV_DEV "qce"
  68. struct qcedev_control {
  69. /* CE features supported by platform */
  70. struct msm_ce_hw_support platform_support;
  71. uint32_t ce_lock_count;
  72. uint32_t high_bw_req_count;
  73. /* CE features/algorithms supported by HW engine*/
  74. struct ce_hw_support ce_support;
  75. /* replaced msm_bus with interconnect path */
  76. struct icc_path *icc_path;
  77. /* average and peak bw values for interconnect */
  78. uint32_t icc_avg_bw;
  79. uint32_t icc_peak_bw;
  80. /* char device */
  81. struct cdev cdev;
  82. int minor;
  83. /* qce handle */
  84. void *qce;
  85. /* platform device */
  86. struct platform_device *pdev;
  87. unsigned int magic;
  88. struct list_head ready_commands;
  89. struct qcedev_async_req *active_command;
  90. spinlock_t lock;
  91. struct tasklet_struct done_tasklet;
  92. struct list_head context_banks;
  93. struct qcedev_mem_client *mem_client;
  94. };
  95. struct qcedev_handle {
  96. /* qcedev control handle */
  97. struct qcedev_control *cntl;
  98. /* qce internal sha context*/
  99. struct qcedev_sha_ctxt sha_ctxt;
  100. /* qcedev mapped buffer list */
  101. struct qcedev_buffer_list registeredbufs;
  102. };
  103. void qcedev_cipher_req_cb(void *cookie, unsigned char *icv,
  104. unsigned char *iv, int ret);
  105. void qcedev_sha_req_cb(void *cookie, unsigned char *digest,
  106. unsigned char *authdata, int ret);
  107. #endif /* __CRYPTO_MSM_QCEDEVI_H */