19
19
#define __MBED_SPM_CLIENT_H__
20
20
21
21
/** @addtogroup SPM
22
- * The SPM ( Secure Partition Manager) is responsible for isolating software in partitions,@n
23
- * managing the execution of software within partitions, and providing IPC between partitions.
22
+ * The Secure Partition Manager (SPM ) is responsible for isolating software in partitions,@n
23
+ * managing the execution of software within partitions and providing IPC between partitions.
24
24
* @{
25
25
*/
26
26
@@ -43,7 +43,7 @@ extern "C" {
43
43
/**
44
44
* Retrieve the version of the PSA Framework API that is implemented.
45
45
*
46
- * @note The PSA Framework API version is made up of the major and minor versions as follows:
46
+ * @note The PSA Framework API version is made of the major and minor versions as follows:
47
47
* @code
48
48
* ((major_version << 8) | minor_version)
49
49
* @endcode
@@ -55,7 +55,7 @@ uint32_t psa_framework_version(void);
55
55
* Retrieve the minor version of a Root of Trust Service by its SID.
56
56
*
57
57
* @param[in] sid The Root of Trust Service ID
58
- * @return Minor version of Root of Trust Service or PSA_VERSION_NONE if Root of Trust Service not present on the system.
58
+ * @return Minor version of Root of Trust Service or PSA_VERSION_NONE if Root of Trust Service is not present on the system.
59
59
*/
60
60
uint32_t psa_version (uint32_t sid );
61
61
@@ -82,7 +82,7 @@ psa_handle_t psa_connect(uint32_t sid, uint32_t minor_version);
82
82
* @param[in] out_len Number of ::psa_outvec_t structures in out_vec. (At most ::PSA_MAX_IOVEC - in_len)
83
83
* @return 0 for success or@n
84
84
* @a positive numbers for application-specific return code.
85
- * @a negative number for application-specific error code.
85
+ * @a negative numbers for application-specific error code.
86
86
* @a PSA_DROP_CONNECTION if the connection has been dropped by the RoT Service.
87
87
*/
88
88
psa_error_t psa_call (
@@ -95,7 +95,7 @@ psa_error_t psa_call(
95
95
96
96
/**
97
97
* Close a connection to a Root of Trust Service.
98
- * Sends the ::PSA_IPC_DISCONNECT message to the Root of Trust Service so it can clean up resources.
98
+ * Sends the ::PSA_IPC_DISCONNECT message to the Root of Trust Service, so it can clean up resources.
99
99
*
100
100
* @param[in] handle Handle for the connection.
101
101
*/
0 commit comments