diff --git a/lib/sw_apps/zynqmp_pmufw/src/xpfw_core.c b/lib/sw_apps/zynqmp_pmufw/src/xpfw_core.c index eb3debe8..958c19fc 100644 --- a/lib/sw_apps/zynqmp_pmufw/src/xpfw_core.c +++ b/lib/sw_apps/zynqmp_pmufw/src/xpfw_core.c @@ -51,6 +51,9 @@ XStatus XPfw_CoreInit(u32 Options) XPfw_InterruptInit(); + /* Clear the DONT_SLEEP bit */ + XPfw_RMW32(PMU_GLOBAL_GLOBAL_CNTRL, + PMU_GLOBAL_GLOBAL_CNTRL_DONT_SLEEP_MASK, 0U); CorePtr->ModCount = (u8)0U; diff --git a/lib/sw_apps/zynqmp_pmufw/src/xpfw_version.h b/lib/sw_apps/zynqmp_pmufw/src/xpfw_version.h index 11d90f15..4caef48a 100644 --- a/lib/sw_apps/zynqmp_pmufw/src/xpfw_version.h +++ b/lib/sw_apps/zynqmp_pmufw/src/xpfw_version.h @@ -1,4 +1,4 @@ #ifndef ZYNQMP_XPFW_VERSION__H_ #define ZYNQMP_XPFW_VERSION__H_ - #define ZYNQMP_XPFW_VERSION "2015.3-rc1-17-g29451ae9733a" + #define ZYNQMP_XPFW_VERSION "2015.3-rc1-19-g232f40177e69" #endif