Part Number: AM625
Hello Team,
MCAL Package: MCAL_SitaraMPU_12.00.00.03
As per SWS_Mcu_00134, The MCU module shall provide at least the values MCU_POWER_ON_RESET and MCU_RESET_UNDEFINED for the enumeration Mcu_ResetType.

For AM62X MCAL Package, it is implemented as MCU_POWER_ON_RESET_MAIN_DOMAIN and MCU_POWER_ON_RESET_MCU_DOMAIN.
{code}
typedef enum
{
/* Requirements: SWS_Mcu_00134 */
MCU_POWER_ON_RESET_MAIN_DOMAIN = 0, /*!< POR Reset from Main domain */
MCU_POWER_ON_RESET_MCU_DOMAIN, /*!< POR Reset from Mcu domain*/
MCU_WATCHDOG_RESET, /*!< WatchDog reset */
MCU_DEBUG_RESET, /*!< Cold reset */
MCU_MAIN_WARM_RESET_MAIN_DOMAIN, /*!< SW Main Warm reset from Main domain */
MCU_MAIN_WARM_RESET_MCU_DOMAIN, /*!< SW Main Warm reset from Mcu domain*/
MCU_RESET_UNDEFINED, /*!< UNDEFINED reset */
MCU_RESET_CLEAR /*!< Reset Reason Cleared */
} Mcu_ResetType;
{code}
and missing value MCU_POWER_ON_RESET.
Could you please provide your feedback on this?