Browse Source

securemsm-kernel: Update error codes in IQSEEComCompatAppLoader.h

Error codes in IQSEEComCompatAppLoader.h updated as per the actual IDL interface in TZ

Change-Id: I407d9bccdeef1d1015f6533c78adab23267133ea
Divisha Bisht 2 years ago
parent
commit
b7877a0496
1 changed files with 10 additions and 3 deletions
  1. 10 3
      smcinvoke/IQSEEComCompatAppLoader.h

+ 10 - 3
smcinvoke/IQSEEComCompatAppLoader.h

@@ -1,10 +1,15 @@
 /* SPDX-License-Identifier: GPL-2.0-only
  *
  * Copyright (c) 2021 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
  */
 
 #include "smcinvoke_object.h"
 
+#define IQSEEComCompatAppLoader_MAX_FILENAME_LEN UINT32_C(64)
+#define IQSEEComCompatAppLoader_ELFCLASS32 UINT32_C(1)
+#define IQSEEComCompatAppLoader_ELFCLASS64 UINT32_C(2)
+
 #define IQSEEComCompatAppLoader_ERROR_INVALID_BUFFER INT32_C(10)
 #define IQSEEComCompatAppLoader_ERROR_PIL_ROLLBACK_FAILURE INT32_C(11)
 #define IQSEEComCompatAppLoader_ERROR_ELF_SIGNATURE_ERROR INT32_C(12)
@@ -17,9 +22,11 @@
 #define IQSEEComCompatAppLoader_ERROR_TA_APP_REGION_MALLOC_FAILURE INT32_C(19)
 #define IQSEEComCompatAppLoader_ERROR_CLIENT_CRED_PARSING_FAILURE INT32_C(20)
 #define IQSEEComCompatAppLoader_ERROR_APP_UNTRUSTED_CLIENT INT32_C(21)
-#define IQSEEComCompatAppLoader_ERROR_APP_NOT_LOADED INT32_C(22)
-#define IQSEEComCompatAppLoader_ERROR_NOT_QSEECOM_COMPAT_APP INT32_C(23)
-#define IQSEEComCompatAppLoader_ERROR_FILENAME_TOO_LONG INT32_C(24)
+#define IQSEEComCompatAppLoader_ERROR_APP_BLACKLISTED INT32_C(22)
+#define IQSEEComCompatAppLoader_ERROR_APP_NOT_LOADED INT32_C(23)
+#define IQSEEComCompatAppLoader_ERROR_NOT_QSEECOM_COMPAT_APP INT32_C(24)
+#define IQSEEComCompatAppLoader_ERROR_FILENAME_TOO_LONG INT32_C(25)
+#define IQSEEComCompatAppLoader_ERROR_APP_ARCH_NOT_SUPPORTED INT32_C(26)
 
 #define IQSEEComCompatAppLoader_OP_loadFromRegion 0
 #define IQSEEComCompatAppLoader_OP_loadFromBuffer 1