diff options
author | Prabhakar Kushwaha <prabhakar@freescale.com> | 2015-07-07 15:40:06 +0530 |
---|---|---|
committer | York Sun <yorksun@freescale.com> | 2015-08-03 12:06:37 -0700 |
commit | 87457d118f77b6d4de4de83118360fb0eade491c (patch) | |
tree | c81631e36a67a5e63efb394a0a62d9581715b778 /include/fsl-mc/fsl_dpmng.h | |
parent | c4065517362ae9132ceaaec4103ed5ad6c9cfe92 (diff) | |
download | u-boot-87457d118f77b6d4de4de83118360fb0eade491c.tar.gz |
drivers/fsl-mc: flib changes for mc 8.0.0
MC firware version 8.0.0 contains new command flags. This patch
contains modifications in FLIB files to support the new command flags.
Signed-off-by: Itai Katz <itai.katz@freescale.com>
Signed-off-by: Prabhakar Kushwaha <prabhakar@freescale.com>
Reviewed-by: York Sun <yorksun@freescale.com>
Diffstat (limited to 'include/fsl-mc/fsl_dpmng.h')
-rw-r--r-- | include/fsl-mc/fsl_dpmng.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/fsl-mc/fsl_dpmng.h b/include/fsl-mc/fsl_dpmng.h index 6feb29225d..b0a87a9082 100644 --- a/include/fsl-mc/fsl_dpmng.h +++ b/include/fsl-mc/fsl_dpmng.h @@ -14,7 +14,7 @@ struct fsl_mc_io; /** * Management Complex firmware version information */ -#define MC_VER_MAJOR 7 +#define MC_VER_MAJOR 8 #define MC_VER_MINOR 0 /** @@ -35,10 +35,13 @@ struct mc_version { * mc_get_version() - Retrieves the Management Complex firmware * version information * @mc_io: Pointer to opaque I/O object + * @cmd_flags: Command flags; one or more of 'MC_CMD_FLAG_' * @mc_ver_info: Returned version information structure * * Return: '0' on Success; Error code otherwise. */ -int mc_get_version(struct fsl_mc_io *mc_io, struct mc_version *mc_ver_info); +int mc_get_version(struct fsl_mc_io *mc_io, + uint32_t cmd_flags, + struct mc_version *mc_ver_info); #endif /* __FSL_DPMNG_H */ |