Merge "intel: agilex: Fix build error" into integration

This commit is contained in:
Soby Mathew 2019-07-24 11:02:17 +00:00 committed by TrustedFirmware Code Review
commit bc61a9b8b3
1 changed files with 3 additions and 1 deletions

View File

@ -7,6 +7,8 @@
#ifndef AGX_MBOX_H
#define AGX_MBOX_H
#include <lib/utils_def.h>
#define MBOX_OFFSET 0xffa30000
#define MBOX_ATF_CLIENT_ID 0x1
@ -76,7 +78,7 @@
#define RECONFIG_STATUS_STATE 0
#define RECONFIG_STATUS_PIN_STATUS 2
#define RECONFIG_STATUS_SOFTFUNC_STATUS 3
#define PIN_STATUS_NSTATUS (1 << 31)
#define PIN_STATUS_NSTATUS (U(1) << 31)
#define SOFTFUNC_STATUS_SEU_ERROR (1 << 3)
#define SOFTFUNC_STATUS_INIT_DONE (1 << 1)
#define SOFTFUNC_STATUS_CONF_DONE (1 << 0)