summaryrefslogtreecommitdiff
path: root/bl31/head_data.c
blob: d14dd8634cdc696b1e7061d041a4e44625bbd4b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 *
 * Header for semelis
 *
 */

#include <head_data.h>
#include <platform_def.h>

extern char bl31_hash_value[64];

struct spare_boot_ctrl_head  monitor_head __attribute__ ((section(".head_data"))) =
{
		(0x14000000 |(((sizeof(struct spare_boot_ctrl_head)+sizeof(bl31_hash_value)) / sizeof(int)) & 0x00FFFFFF)),
		"monitor",
		0,
		0,
		0,
		0,
		"2.0",
		"monitor",
		{BL31_BASE}
};