PMUFW: Events: Add CSU secure lock down request events

Signed-off-by: Jyotheeswar Reddy <jyothee@xilinx.com>
This commit is contained in:
Jyotheeswar Reddy 2015-08-06 11:02:20 -07:00 committed by Nava kishore Manne
parent b7d22226d9
commit f5b94e4ea2
3 changed files with 5 additions and 3 deletions

View file

@ -113,7 +113,8 @@ static struct XPfw_Event_t EventTable[] = {
[XPFW_EV_RTC_SECONDS] = { .Type = XPFW_EV_TYPE_RTC, .RegMask = PMU_IOMODULE_IRQ_PENDING_RTC_EVERY_SECOND_MASK, .ModMask = MASK32_ALL_LOW },
[XPFW_EV_RTC_ALARM] = { .Type = XPFW_EV_TYPE_RTC, .RegMask = PMU_IOMODULE_IRQ_PENDING_RTC_ALARM_MASK, .ModMask = MASK32_ALL_LOW },
[XPFW_EV_REQ_PWRUP] = { .Type = XPFW_EV_TYPE_GEN, .RegMask = PMU_IOMODULE_IRQ_PENDING_PWR_UP_REQ_MASK, .ModMask = MASK32_ALL_LOW },
[XPFW_EV_REQ_PWRDN] = { .Type = XPFW_EV_TYPE_GEN, .RegMask = PMU_IOMODULE_IRQ_PENDING_PWR_DN_REQ_MASK, .ModMask = MASK32_ALL_LOW }
[XPFW_EV_REQ_PWRDN] = { .Type = XPFW_EV_TYPE_GEN, .RegMask = PMU_IOMODULE_IRQ_PENDING_PWR_DN_REQ_MASK, .ModMask = MASK32_ALL_LOW },
[XPFW_EV_CSU_SEC_LOCK] = { .Type = XPFW_EV_TYPE_GEN, .RegMask = PMU_IOMODULE_IRQ_PENDING_CSU_PMU_SEC_LOCK_MASK, .ModMask = MASK32_ALL_LOW }
};
u32 XPfw_EventGetModMask(u32 EventId)

View file

@ -114,8 +114,9 @@
#define XPFW_EV_RTC_ALARM 79U
#define XPFW_EV_REQ_PWRUP 80U
#define XPFW_EV_REQ_PWRDN 81U
#define XPFW_EV_CSU_SEC_LOCK 82U
#define XPFW_EV_MAX 82U
#define XPFW_EV_MAX 83U
#define XPFW_EV_GROUP_GPI0
#define XPFW_EV_GROUP_GPI1

View file

@ -1,4 +1,4 @@
#ifndef ZYNQMP_XPFW_VERSION__H_
#define ZYNQMP_XPFW_VERSION__H_
#define ZYNQMP_XPFW_VERSION "2015.3-rc1-7-gcfd691133218"
#define ZYNQMP_XPFW_VERSION "2015.3-rc1-8-g2e66b7a8c2c7"
#endif