qcedev_smmu.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Qti (or) Qualcomm Technologies Inc CE device driver.
  4. *
  5. * Copyright (c) 2018-2020, The Linux Foundation. All rights reserved.
  6. */
  7. #ifndef _DRIVERS_CRYPTO_PARSE_H_
  8. #define _DRIVERS_CRYPTO_PARSE_H_
  9. #include <linux/dma-iommu.h>
  10. #include <linux/dma-buf.h>
  11. #include <linux/dma-direction.h>
  12. #include <linux/iommu.h>
  13. #include <linux/msm_dma_iommu_mapping.h>
  14. #include <linux/msm_ion.h>
  15. #include <linux/of.h>
  16. #include <linux/of_platform.h>
  17. #include <linux/slab.h>
  18. #include <linux/types.h>
  19. struct context_bank_info {
  20. struct list_head list;
  21. const char *name;
  22. u32 buffer_type;
  23. u32 start_addr;
  24. u32 size;
  25. bool is_secure;
  26. struct device *dev;
  27. struct dma_iommu_mapping *mapping;
  28. };
  29. enum qcedev_mem_type {
  30. MEM_ION,
  31. };
  32. struct qcedev_mem_client {
  33. enum qcedev_mem_type mtype;
  34. };
  35. struct dma_mapping_info {
  36. struct device *dev;
  37. struct dma_iommu_mapping *mapping;
  38. struct sg_table *table;
  39. struct dma_buf_attachment *attach;
  40. struct dma_buf *buf;
  41. };
  42. struct qcedev_ion_buf_info {
  43. struct dma_mapping_info mapping_info;
  44. dma_addr_t iova;
  45. unsigned long mapped_buf_size;
  46. int ion_fd;
  47. };
  48. struct qcedev_reg_buf_info {
  49. struct list_head list;
  50. union {
  51. struct qcedev_ion_buf_info ion_buf;
  52. };
  53. atomic_t ref_count;
  54. };
  55. struct qcedev_buffer_list {
  56. struct list_head list;
  57. struct mutex lock;
  58. };
  59. int qcedev_parse_context_bank(struct platform_device *pdev);
  60. struct qcedev_mem_client *qcedev_mem_new_client(enum qcedev_mem_type mtype);
  61. void qcedev_mem_delete_client(struct qcedev_mem_client *mem_client);
  62. int qcedev_check_and_map_buffer(void *qce_hndl,
  63. int fd, unsigned int offset, unsigned int fd_size,
  64. unsigned long long *vaddr);
  65. int qcedev_check_and_unmap_buffer(void *handle, int fd);
  66. int qcedev_unmap_all_buffers(void *handle);
  67. extern struct qcedev_reg_buf_info *global_binfo_in;
  68. extern struct qcedev_reg_buf_info *global_binfo_out;
  69. extern struct qcedev_reg_buf_info *global_binfo_res;
  70. #endif