summaryrefslogtreecommitdiff
path: root/include/fsl-mc/fsl_dpmng.h
diff options
context:
space:
mode:
authorPrabhakar Kushwaha <prabhakar@freescale.com>2015-07-07 15:40:06 +0530
committerYork Sun <yorksun@freescale.com>2015-08-03 12:06:37 -0700
commit87457d118f77b6d4de4de83118360fb0eade491c (patch)
treec81631e36a67a5e63efb394a0a62d9581715b778 /include/fsl-mc/fsl_dpmng.h
parentc4065517362ae9132ceaaec4103ed5ad6c9cfe92 (diff)
downloadu-boot-imx-87457d118f77b6d4de4de83118360fb0eade491c.zip
u-boot-imx-87457d118f77b6d4de4de83118360fb0eade491c.tar.gz
u-boot-imx-87457d118f77b6d4de4de83118360fb0eade491c.tar.bz2
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.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/fsl-mc/fsl_dpmng.h b/include/fsl-mc/fsl_dpmng.h
index 6feb292..b0a87a9 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 */