summaryrefslogtreecommitdiffstats
path: root/plat/qemu/common/qemu_spmd_manifest.c
blob: fd46e26756d11094794ea35b9b49f0f69b80a57e (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
/*
 * Copyright (c) 2021, ARM Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <assert.h>

#include <services/spm_core_manifest.h>

#include <plat/common/platform.h>
#include <platform_def.h>

int plat_spm_core_manifest_load(spmc_manifest_attribute_t *manifest,
				const void *pm_addr)
{
	entry_point_info_t *ep_info = bl31_plat_get_next_image_ep_info(SECURE);

	assert(ep_info != NULL);
	assert(manifest != NULL);

	manifest->major_version = 1;
	manifest->minor_version = 0;
	manifest->exec_state = ep_info->args.arg2;
	manifest->load_address = BL32_BASE;
	manifest->entrypoint = BL32_BASE;
	manifest->binary_size = BL32_LIMIT - BL32_BASE;
	manifest->spmc_id = 0x8000;

	return 0;
}