summaryrefslogtreecommitdiffstats
path: root/include/fsl-mc/fsl_dpmng.h
blob: c2e1ddd18b90aca9f24202bc8d3ce822b8cfdc73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/* Copyright 2014 Freescale Semiconductor Inc.
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */
/*!
 *  @file    fsl_dpmng.h
 *  @brief   Management Complex General API
 */

#ifndef __FSL_DPMNG_H
#define __FSL_DPMNG_H

/*!
 * @Group grp_dpmng	Management Complex General API
 *
 * @brief	Contains general API for the Management Complex firmware
 * @{
 */

struct fsl_mc_io;

/**
 * @brief	Management Complex firmware version information
 */
#define MC_VER_MAJOR 4
#define MC_VER_MINOR 0

struct mc_version {
	uint32_t major;
	/*!< Major version number: incremented on API compatibility changes */
	uint32_t minor;
	/*!< Minor version number: incremented on API additions (that are
	 * backward compatible); reset when major version is incremented
	 */
	uint32_t revision;
	/*!< Internal revision number: incremented on implementation changes
	 * and/or bug fixes that have no impact on API
	 */
};

/**
 * @brief	Retrieves the Management Complex firmware version information
 *
 * @param[in]	mc_io		Pointer to opaque I/O object
 * @param[out]	mc_ver_info	Pointer to version information structure
 *
 * @returns	'0' on Success; Error code otherwise.
 */
int mc_get_version(struct fsl_mc_io *mc_io, struct mc_version *mc_ver_info);

/**
 * @brief	Resets an AIOP tile
 *
 * @param[in]	mc_io		Pointer to opaque I/O object
 * @param[in]	container_id	AIOP container ID
 * @param[in]	aiop_tile_id	AIOP tile ID to reset
 *
 * @returns	'0' on Success; Error code otherwise.
 */
int dpmng_reset_aiop(struct fsl_mc_io	*mc_io,
		     int		container_id,
		     int		aiop_tile_id);

/**
 * @brief	Loads an image to AIOP tile
 *
 * @param[in]	mc_io		Pointer to opaque I/O object
 * @param[in]	container_id	AIOP container ID
 * @param[in]	aiop_tile_id	AIOP tile ID to reset
 * @param[in]	img_iova	I/O virtual address of AIOP ELF image
 * @param[in]	img_size	Size of AIOP ELF image in memory (in bytes)
 *
 * @returns	'0' on Success; Error code otherwise.
 */
int dpmng_load_aiop(struct fsl_mc_io	*mc_io,
		    int			container_id,
		    int			aiop_tile_id,
		    uint64_t		img_iova,
		    uint32_t		img_size);

/**
 * @brief	AIOP run configuration
 */
struct dpmng_aiop_run_cfg {
	uint32_t cores_mask;
	/*!< Mask of AIOP cores to run (core 0 in most significant bit) */
	uint64_t options;
	/*!< Execution options (currently none defined) */
};

/**
 * @brief	Starts AIOP tile execution
 *
 * @param[in]	mc_io		Pointer to MC portal's I/O object
 * @param[in]	container_id	AIOP container ID
 * @param[in]	aiop_tile_id	AIOP tile ID to reset
 * @param[in]	cfg		AIOP run configuration
 *
 * @returns	'0' on Success; Error code otherwise.
 */
int dpmng_run_aiop(struct fsl_mc_io			*mc_io,
		   int					container_id,
		   int					aiop_tile_id,
		   const struct dpmng_aiop_run_cfg	*cfg);

/**
 * @brief	Resets MC portal
 *
 * This function closes all object handles (tokens) that are currently
 * open in the MC portal on which the command is submitted. This allows
 * cleanup of stale handles that belong to non-functional user processes.
 *
 * @param[in]	mc_io	Pointer to MC portal's I/O object
 *
 * @returns	'0' on Success; Error code otherwise.
 */
int dpmng_reset_mc_portal(struct fsl_mc_io *mc_io);

/** @} */

#endif /* __FSL_DPMNG_H */
OpenPOWER on IntegriCloud