blob: 5dfc9ecc4281638d7c0b7c76d358565df885f1e8 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -07002/* Copyright 2013-2015 Freescale Semiconductor Inc.
J. German Rivera7b3bd9a2015-01-06 13:19:02 -08003 */
J. German Rivera7b3bd9a2015-01-06 13:19:02 -08004#ifndef __FSL_DPMNG_H
5#define __FSL_DPMNG_H
6
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -07007/* Management Complex General API
8 * Contains general API for the Management Complex firmware
J. German Rivera7b3bd9a2015-01-06 13:19:02 -08009 */
10
11struct fsl_mc_io;
12
13/**
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -070014 * Management Complex firmware version information
J. German Rivera7b3bd9a2015-01-06 13:19:02 -080015 */
Prabhakar Kushwaha53e353f2015-12-24 15:32:49 +053016#define MC_VER_MAJOR 9
J. German Rivera7b3bd9a2015-01-06 13:19:02 -080017#define MC_VER_MINOR 0
18
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -070019/**
20 * struct mc_versoin
21 * @major: Major version number: incremented on API compatibility changes
22 * @minor: Minor version number: incremented on API additions (that are
23 * backward compatible); reset when major version is incremented
24 * @revision: Internal revision number: incremented on implementation changes
25 * and/or bug fixes that have no impact on API
26 */
J. German Rivera7b3bd9a2015-01-06 13:19:02 -080027struct mc_version {
28 uint32_t major;
J. German Rivera7b3bd9a2015-01-06 13:19:02 -080029 uint32_t minor;
J. German Rivera7b3bd9a2015-01-06 13:19:02 -080030 uint32_t revision;
J. German Rivera7b3bd9a2015-01-06 13:19:02 -080031};
32
Ioana Ciornei5654ffa2023-05-31 19:04:36 +030033int mc_get_version(struct fsl_mc_io *mc_io, uint32_t cmd_flags, struct mc_version *mc_ver_info);
J. German Rivera7b3bd9a2015-01-06 13:19:02 -080034
J. German Rivera7b3bd9a2015-01-06 13:19:02 -080035#endif /* __FSL_DPMNG_H */