shm.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.
  4. */
  5. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  6. #include <linux/firmware/qcom/qcom_tzmem.h>
  7. #include <linux/mm.h>
  8. #include "qcomtee.h"
  9. /**
  10. * define MAX_OUTBOUND_BUFFER_SIZE - Maximum size of outbound buffers.
  11. *
  12. * The size of outbound buffer depends on QTEE callback requests.
  13. */
  14. #define MAX_OUTBOUND_BUFFER_SIZE SZ_4K
  15. /**
  16. * define MAX_INBOUND_BUFFER_SIZE - Maximum size of the inbound buffer.
  17. *
  18. * The size of the inbound buffer depends on the user's requests,
  19. * specifically the number of IB and OB arguments. If an invocation
  20. * requires a size larger than %MAX_INBOUND_BUFFER_SIZE, the user should
  21. * consider using another form of shared memory with QTEE.
  22. */
  23. #define MAX_INBOUND_BUFFER_SIZE SZ_4M
  24. /**
  25. * qcomtee_msg_buffers_alloc() - Allocate inbound and outbound buffers.
  26. * @oic: context to use for the current invocation.
  27. * @u: array of arguments for the current invocation.
  28. *
  29. * It calculates the size of inbound and outbound buffers based on the
  30. * arguments in @u. It allocates the buffers from the teedev pool.
  31. *
  32. * Return: On success, returns 0. On error, returns < 0.
  33. */
  34. int qcomtee_msg_buffers_alloc(struct qcomtee_object_invoke_ctx *oic,
  35. struct qcomtee_arg *u)
  36. {
  37. struct tee_context *ctx = oic->ctx;
  38. struct tee_shm *shm;
  39. size_t size;
  40. int i;
  41. /* Start offset in a message for buffer arguments. */
  42. size = qcomtee_msg_buffer_args(struct qcomtee_msg_object_invoke,
  43. qcomtee_args_len(u));
  44. if (size > MAX_INBOUND_BUFFER_SIZE)
  45. return -EINVAL;
  46. /* Add size of IB arguments. */
  47. qcomtee_arg_for_each_input_buffer(i, u) {
  48. size = size_add(size, qcomtee_msg_offset_align(u[i].b.size));
  49. if (size > MAX_INBOUND_BUFFER_SIZE)
  50. return -EINVAL;
  51. }
  52. /* Add size of OB arguments. */
  53. qcomtee_arg_for_each_output_buffer(i, u) {
  54. size = size_add(size, qcomtee_msg_offset_align(u[i].b.size));
  55. if (size > MAX_INBOUND_BUFFER_SIZE)
  56. return -EINVAL;
  57. }
  58. shm = tee_shm_alloc_priv_buf(ctx, size);
  59. if (IS_ERR(shm))
  60. return PTR_ERR(shm);
  61. /* Allocate inbound buffer. */
  62. oic->in_shm = shm;
  63. shm = tee_shm_alloc_priv_buf(ctx, MAX_OUTBOUND_BUFFER_SIZE);
  64. if (IS_ERR(shm)) {
  65. tee_shm_free(oic->in_shm);
  66. return PTR_ERR(shm);
  67. }
  68. /* Allocate outbound buffer. */
  69. oic->out_shm = shm;
  70. oic->in_msg.addr = tee_shm_get_va(oic->in_shm, 0);
  71. oic->in_msg.size = tee_shm_get_size(oic->in_shm);
  72. oic->out_msg.addr = tee_shm_get_va(oic->out_shm, 0);
  73. oic->out_msg.size = tee_shm_get_size(oic->out_shm);
  74. /* QTEE assume unused buffers are zeroed. */
  75. memzero_explicit(oic->in_msg.addr, oic->in_msg.size);
  76. memzero_explicit(oic->out_msg.addr, oic->out_msg.size);
  77. return 0;
  78. }
  79. void qcomtee_msg_buffers_free(struct qcomtee_object_invoke_ctx *oic)
  80. {
  81. tee_shm_free(oic->in_shm);
  82. tee_shm_free(oic->out_shm);
  83. }
  84. /* Dynamic shared memory pool based on tee_dyn_shm_alloc_helper(). */
  85. static int qcomtee_shm_register(struct tee_context *ctx, struct tee_shm *shm,
  86. struct page **pages, size_t num_pages,
  87. unsigned long start)
  88. {
  89. return qcom_tzmem_shm_bridge_create(shm->paddr, shm->size,
  90. &shm->sec_world_id);
  91. }
  92. static int qcomtee_shm_unregister(struct tee_context *ctx, struct tee_shm *shm)
  93. {
  94. qcom_tzmem_shm_bridge_delete(shm->sec_world_id);
  95. return 0;
  96. }
  97. static int pool_op_alloc(struct tee_shm_pool *pool, struct tee_shm *shm,
  98. size_t size, size_t align)
  99. {
  100. return tee_dyn_shm_alloc_helper(shm, size, align, qcomtee_shm_register);
  101. }
  102. static void pool_op_free(struct tee_shm_pool *pool, struct tee_shm *shm)
  103. {
  104. tee_dyn_shm_free_helper(shm, qcomtee_shm_unregister);
  105. }
  106. static void pool_op_destroy_pool(struct tee_shm_pool *pool)
  107. {
  108. kfree(pool);
  109. }
  110. static const struct tee_shm_pool_ops pool_ops = {
  111. .alloc = pool_op_alloc,
  112. .free = pool_op_free,
  113. .destroy_pool = pool_op_destroy_pool,
  114. };
  115. struct tee_shm_pool *qcomtee_shm_pool_alloc(void)
  116. {
  117. struct tee_shm_pool *pool;
  118. pool = kzalloc_obj(*pool);
  119. if (!pool)
  120. return ERR_PTR(-ENOMEM);
  121. pool->ops = &pool_ops;
  122. return pool;
  123. }