Skip to content

Commit

Permalink
Update Zephyr MSDK Hal based on MSDK PR: analogdevicesinc/msdk#1288
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Dec 10, 2024
1 parent 2154110 commit da85864
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 3 deletions.
33 changes: 31 additions & 2 deletions MAX/Libraries/PeriphDrivers/Source/FLC/flc_me30.c
Original file line number Diff line number Diff line change
Expand Up @@ -183,15 +183,44 @@ int MXC_FLC_MassErase(void)
}

//******************************************************************************
__weak int MXC_FLC_UnlockInfoBlock(uint32_t address)
int MXC_FLC_UnlockInfoBlock(uint32_t address)
{
/* Flash Controller only accessible in secure world. */
#if defined(CONFIG_TRUSTED_EXECUTION_SECURE) || (CONFIG_TRUSTED_EXECUTION_SECURE != 0)
if ((address < MXC_INFO_MEM_BASE) ||
(address >= (MXC_INFO_MEM_BASE + (MXC_INFO_MEM_SIZE * 2)))) {
return E_BAD_PARAM;
}
#else
return E_NOT_SUPPORTED;
#endif

/* Make sure the info block is locked */
MXC_FLC->actrl = 0x1234;

/* Write the unlock sequence */
MXC_FLC->actrl = 0x55bcbe69;
MXC_FLC->actrl = 0x7688c189;
MXC_FLC->actrl = 0x82306612;

return E_NO_ERROR;
}

//******************************************************************************
int MXC_FLC_LockInfoBlock(uint32_t address)
{
return MXC_FLC_RevA_LockInfoBlock((mxc_flc_reva_regs_t *)MXC_FLC, address);
/* Flash Controller only accessible in secure world. */
#if defined(CONFIG_TRUSTED_EXECUTION_SECURE) || (CONFIG_TRUSTED_EXECUTION_SECURE != 0)
if ((address < MXC_INFO_MEM_BASE) ||
(address >= (MXC_INFO_MEM_BASE + (MXC_INFO_MEM_SIZE * 2)))) {
return E_BAD_PARAM;
}
#else
return E_NOT_SUPPORTED;
#endif

MXC_FLC->actrl = 0xDEADBEEF;
return E_NO_ERROR;
}

//******************************************************************************
Expand Down
2 changes: 1 addition & 1 deletion MAX/msdk_sha
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ae0b07b345d1ad7e14bc3f17cfa723a85bd9290c
eeb59b53912d2831e115f18a2a0dad9b5e3f21af

0 comments on commit da85864

Please sign in to comment.