mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
a6f2a6eafe
Updated copyright info for the issues reported after running check-legal test. Signed-off-by: Yogesh Gaur <yogeshnarayan.gaur@nxp.com> Reviewed-by: York Sun <york.sun@nxp.com>
19 lines
579 B
C
19 lines
579 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/* Copyright 2013-2016 Freescale Semiconductor, Inc.
|
|
* Copyright 2017 NXP
|
|
*/
|
|
#ifndef __FSL_DPMNG_CMD_H
|
|
#define __FSL_DPMNG_CMD_H
|
|
|
|
/* Command IDs */
|
|
#define DPMNG_CMDID_GET_VERSION 0x8311
|
|
|
|
/* cmd, param, offset, width, type, arg_name */
|
|
#define DPMNG_RSP_GET_VERSION(cmd, mc_ver_info) \
|
|
do { \
|
|
MC_RSP_OP(cmd, 0, 0, 32, uint32_t, mc_ver_info->revision); \
|
|
MC_RSP_OP(cmd, 0, 32, 32, uint32_t, mc_ver_info->major); \
|
|
MC_RSP_OP(cmd, 1, 0, 32, uint32_t, mc_ver_info->minor); \
|
|
} while (0)
|
|
|
|
#endif /* __FSL_DPMNG_CMD_H */
|