IClientEnv.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /* SPDX-License-Identifier: GPL-2.0-only WITH Linux-syscall-note */
  2. /*
  3. *
  4. * Copyright (c) 2021 The Linux Foundation. All rights reserved.
  5. * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
  6. */
  7. #define IClientEnv_OP_open 0
  8. #define IClientEnv_OP_registerLegacy 1
  9. #define IClientEnv_OP_register 2
  10. #define IClientEnv_OP_registerWithWhitelist 3
  11. #define IClientEnv_OP_notifyDomainChange 4
  12. #define IClientEnv_OP_registerWithCredentials 5
  13. #define IClientEnv_OP_accept 6
  14. #define IClientEnv_OP_adciShutdown 7
  15. #include "smcinvoke_object.h"
  16. static inline int32_t
  17. IClientEnv_release(struct Object self)
  18. {
  19. return Object_invoke(self, Object_OP_release, 0, 0);
  20. }
  21. static inline int32_t
  22. IClientEnv_retain(struct Object self)
  23. {
  24. return Object_invoke(self, Object_OP_retain, 0, 0);
  25. }
  26. static inline int32_t
  27. IClientEnv_open(struct Object self, uint32_t uid_val, struct Object *obj_ptr)
  28. {
  29. union ObjectArg a[2];
  30. int32_t result;
  31. a[0].b = (struct ObjectBuf) { &uid_val, sizeof(uint32_t) };
  32. result = Object_invoke(self, IClientEnv_OP_open, a, ObjectCounts_pack(1, 0, 0, 1));
  33. *obj_ptr = a[1].o;
  34. return result;
  35. }
  36. static inline int32_t
  37. IClientEnv_registerLegacy(struct Object self, const void *credentials_ptr, size_t credentials_len,
  38. struct Object *clientEnv_ptr)
  39. {
  40. union ObjectArg a[2];
  41. int32_t result;
  42. a[0].bi = (struct ObjectBufIn) { credentials_ptr, credentials_len * 1 };
  43. result = Object_invoke(self, IClientEnv_OP_registerLegacy, a,
  44. ObjectCounts_pack(1, 0, 0, 1));
  45. *clientEnv_ptr = a[1].o;
  46. return result;
  47. }
  48. static inline int32_t
  49. IClientEnv_register(struct Object self, struct Object credentials_val,
  50. struct Object *clientEnv_ptr)
  51. {
  52. union ObjectArg a[2];
  53. int32_t result;
  54. a[0].o = credentials_val;
  55. result = Object_invoke(self, IClientEnv_OP_register, a,
  56. ObjectCounts_pack(0, 0, 1, 1));
  57. *clientEnv_ptr = a[1].o;
  58. return result;
  59. }
  60. static inline int32_t
  61. IClientEnv_registerWithWhitelist(struct Object self,
  62. struct Object credentials_val, const uint32_t *uids_ptr,
  63. size_t uids_len, struct Object *clientEnv_ptr)
  64. {
  65. union ObjectArg a[3];
  66. int32_t result;
  67. a[1].o = credentials_val;
  68. a[0].bi = (struct ObjectBufIn) { uids_ptr, uids_len *
  69. sizeof(uint32_t) };
  70. result = Object_invoke(self, IClientEnv_OP_registerWithWhitelist, a,
  71. ObjectCounts_pack(1, 0, 1, 1));
  72. *clientEnv_ptr = a[2].o;
  73. return result;
  74. }
  75. static inline int32_t
  76. IClientEnv_notifyDomainChange(struct Object self)
  77. {
  78. return Object_invoke(self, IClientEnv_OP_notifyDomainChange, 0, 0);
  79. }
  80. static inline int32_t
  81. IClientEnv_registerWithCredentials(struct Object self, struct Object
  82. credentials_val, struct Object *clientEnv_ptr)
  83. {
  84. union ObjectArg a[2]={{{0,0}}};
  85. int32_t result;
  86. a[0].o = credentials_val;
  87. result = Object_invoke(self, IClientEnv_OP_registerWithCredentials, a,
  88. ObjectCounts_pack(0, 0, 1, 1));
  89. *clientEnv_ptr = a[1].o;
  90. return result;
  91. }
  92. static inline int32_t
  93. IClientEnv_accept(struct Object self)
  94. {
  95. return Object_invoke(self, IClientEnv_OP_accept, 0, 0);
  96. }
  97. static inline int32_t
  98. IClientEnv_adciShutdown(struct Object self)
  99. {
  100. return Object_invoke(self, IClientEnv_OP_adciShutdown, 0, 0);
  101. }