upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
656 B
30 lines
656 B
// SPDX-License-Identifier: GPL-2.0+
|
|
/* Copyright 2013-2015 Freescale Semiconductor Inc.
|
|
*/
|
|
#include <fsl-mc/fsl_mc_sys.h>
|
|
#include <fsl-mc/fsl_mc_cmd.h>
|
|
#include <fsl-mc/fsl_dpmng.h>
|
|
#include "fsl_dpmng_cmd.h"
|
|
|
|
int mc_get_version(struct fsl_mc_io *mc_io,
|
|
uint32_t cmd_flags,
|
|
struct mc_version *mc_ver_info)
|
|
{
|
|
struct mc_command cmd = { 0 };
|
|
int err;
|
|
|
|
/* prepare command */
|
|
cmd.header = mc_encode_cmd_header(DPMNG_CMDID_GET_VERSION,
|
|
cmd_flags,
|
|
0);
|
|
|
|
/* send command to mc*/
|
|
err = mc_send_command(mc_io, &cmd);
|
|
if (err)
|
|
return err;
|
|
|
|
/* retrieve response parameters */
|
|
DPMNG_RSP_GET_VERSION(cmd, mc_ver_info);
|
|
|
|
return 0;
|
|
}
|
|
|