Skip to content

Commit

Permalink
fix(PeriphDrivers): Prevent nonsecure access to MAX32657 cache contro…
Browse files Browse the repository at this point in the history
…ller (#1312)

Signed-off-by: Sadik Ozer <[email protected]>
  • Loading branch information
ozersa authored Dec 25, 2024
1 parent 14ccd99 commit df2e217
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Libraries/PeriphDrivers/Source/ICC/icc_me30.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,20 +37,31 @@ Maxim Internal Use

int MXC_ICC_ID(mxc_icc_info_t cid)
{
#if CONFIG_TRUSTED_EXECUTION_SECURE
return MXC_ICC_RevA_ID((mxc_icc_reva_regs_t *)MXC_ICC, cid);
#else
return E_NOT_SUPPORTED;
#endif
}

void MXC_ICC_Enable(void)
{
/* Cache controller only accessible in secure world. */
#if CONFIG_TRUSTED_EXECUTION_SECURE
MXC_ICC_RevA_Enable((mxc_icc_reva_regs_t *)MXC_ICC);
#endif
}

void MXC_ICC_Disable(void)
{
#if CONFIG_TRUSTED_EXECUTION_SECURE
MXC_ICC_RevA_Disable((mxc_icc_reva_regs_t *)MXC_ICC);
#endif
}

void MXC_ICC_Flush(void)
{
#if CONFIG_TRUSTED_EXECUTION_SECURE
MXC_ICC_Com_Flush();
#endif
}

0 comments on commit df2e217

Please sign in to comment.