20
20
21
21
22
22
/** @addtogroup SPM
23
- * The SPM ( Secure Partition Manager) is responsible for isolating software in
24
- * partitions, managing the execution of software within partitions, and
23
+ * The Secure Partition Manager (SPM ) is responsible for isolating software in
24
+ * partitions, managing the execution of software within partitions and
25
25
* providing IPC between partitions.
26
26
* @{
27
27
*/
@@ -47,8 +47,8 @@ extern "C" {
47
47
/**
48
48
* Start running the NSPE.
49
49
*
50
- * SPE ( Secure Processing Environment) expected to boot first. Once all
51
- * the initializations are done, NSPE (Non-Secure Processing Environment)
50
+ * Secure Processing Environment (SPE ) expected to boot first. Once all
51
+ * the initializations are done, Nonsecure Processing Environment (NSPE )
52
52
* should be booted.
53
53
*
54
54
* @note The function must be implemented by target specific code.
@@ -60,7 +60,7 @@ void spm_hal_start_nspe(void);
60
60
* Configure memory protection mechanism.
61
61
*
62
62
* Apply memory protection schemes to ensure secure memory can only be accessed
63
- * from secure-state
63
+ * from secure-state.
64
64
*
65
65
* @note The function must be implemented by target specific code.
66
66
*
@@ -75,7 +75,7 @@ void spm_hal_memory_protection_init(void);
75
75
/**
76
76
* @brief Wakeup mailbox dispatcher thread
77
77
*
78
- * This function is implemented by ARM and expected to be called by target
78
+ * Arm implements this function, which is expected to be called by target-
79
79
* specific Inter-Processor-Communication logic on mailbox interrupt handler.
80
80
*
81
81
*/
@@ -84,9 +84,9 @@ void spm_mailbox_irq_callback(void);
84
84
/**
85
85
* @brief Notify the peer processor about a general event occurrence.
86
86
*
87
- * Wakeup the peer processor waiting on the mailbox driver event.
87
+ * Wake up the peer processor waiting on the mailbox driver event.
88
88
*
89
- * @note The functions below should be implemented by target specific code.
89
+ * @note Implement the functions below with target- specific code.
90
90
*/
91
91
void spm_hal_mailbox_notify (void );
92
92
0 commit comments