qcedevi.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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 32
  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_LAST
  22. };
  23. struct qcedev_handle;
  24. struct qcedev_cipher_req {
  25. struct skcipher_request creq;
  26. void *cookie;
  27. };
  28. struct qcedev_sha_req {
  29. struct ahash_request sreq;
  30. void *cookie;
  31. };
  32. struct qcedev_sha_ctxt {
  33. uint32_t auth_data[4];
  34. uint8_t digest[QCEDEV_MAX_SHA_DIGEST];
  35. uint32_t diglen;
  36. uint8_t trailing_buf[64];
  37. uint32_t trailing_buf_len;
  38. uint8_t first_blk;
  39. uint8_t last_blk;
  40. uint8_t authkey[QCEDEV_MAX_SHA_BLOCK_SIZE];
  41. bool init_done;
  42. };
  43. struct qcedev_async_req {
  44. struct list_head list;
  45. struct completion complete;
  46. enum qcedev_crypto_oper_type op_type;
  47. union {
  48. struct qcedev_cipher_op_req cipher_op_req;
  49. struct qcedev_sha_op_req sha_op_req;
  50. };
  51. union {
  52. struct qcedev_cipher_req cipher_req;
  53. struct qcedev_sha_req sha_req;
  54. };
  55. struct qcedev_handle *handle;
  56. int err;
  57. };
  58. /**********************************************************************
  59. * Register ourselves as a char device to be able to access the dev driver
  60. * from userspace.
  61. */
  62. #define QCEDEV_DEV "qce"
  63. struct qcedev_control {
  64. /* CE features supported by platform */
  65. struct msm_ce_hw_support platform_support;
  66. uint32_t ce_lock_count;
  67. uint32_t high_bw_req_count;
  68. /* CE features/algorithms supported by HW engine*/
  69. struct ce_hw_support ce_support;
  70. /* replaced msm_bus with interconnect path */
  71. struct icc_path *icc_path;
  72. /* char device */
  73. struct cdev cdev;
  74. int minor;
  75. /* qce handle */
  76. void *qce;
  77. /* platform device */
  78. struct platform_device *pdev;
  79. unsigned int magic;
  80. struct list_head ready_commands;
  81. struct qcedev_async_req *active_command;
  82. spinlock_t lock;
  83. struct tasklet_struct done_tasklet;
  84. struct list_head context_banks;
  85. struct qcedev_mem_client *mem_client;
  86. };
  87. struct qcedev_handle {
  88. /* qcedev control handle */
  89. struct qcedev_control *cntl;
  90. /* qce internal sha context*/
  91. struct qcedev_sha_ctxt sha_ctxt;
  92. /* qcedev mapped buffer list */
  93. struct qcedev_buffer_list registeredbufs;
  94. };
  95. void qcedev_cipher_req_cb(void *cookie, unsigned char *icv,
  96. unsigned char *iv, int ret);
  97. void qcedev_sha_req_cb(void *cookie, unsigned char *digest,
  98. unsigned char *authdata, int ret);
  99. #endif /* __CRYPTO_MSM_QCEDEVI_H */