blob: e6efceab7acced7f53e7304421df9d777eee1b7f [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Yogesh Gaur1a0c4ae2018-05-09 10:52:17 +05302/* Copyright 2013-2016 Freescale Semiconductor, Inc.
Ioana Ciornei1c3769d2023-05-31 19:04:36 +03003 * Copyright 2017, 2023 NXP
J. German Rivera43e4ae32015-01-06 13:19:02 -08004 */
5#ifndef __FSL_DPMNG_CMD_H
6#define __FSL_DPMNG_CMD_H
7
8/* Command IDs */
Yogesh Gaur318c32f2017-11-15 11:59:31 +05309#define DPMNG_CMDID_GET_VERSION 0x8311
J. German Rivera43e4ae32015-01-06 13:19:02 -080010
Ioana Ciornei1c3769d2023-05-31 19:04:36 +030011#pragma pack(push, 1)
12struct dpmng_rsp_get_version {
13 __le32 revision;
14 __le32 version_major;
15 __le32 version_minor;
16};
17
18#pragma pack(pop)
J. German Rivera43e4ae32015-01-06 13:19:02 -080019
J. German Rivera43e4ae32015-01-06 13:19:02 -080020#endif /* __FSL_DPMNG_CMD_H */