sgi_image_load.c 2.64 KB
Newer Older
1
2
3
4
5
6
/*
 * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

7
#include <arch_helpers.h>
8
9
10
11
12
13
14
15
16
#include <debug.h>
#include <desc_image_load.h>
#include <libfdt.h>
#include <platform.h>

/*******************************************************************************
 * This function inserts Platform information via device tree nodes as,
 * system-id {
 *    platform-id = <0>;
17
 *    config-id = <0>;
18
19
20
21
22
23
24
 * }
 ******************************************************************************/
static int plat_sgi_append_config_node(void)
{
	bl_mem_params_node_t *mem_params;
	void *fdt;
	int nodeoffset, err;
25
	unsigned int platid = 0, platcfg = 0;
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
	char *platform_name;

	mem_params = get_bl_mem_params_node(HW_CONFIG_ID);
	if (mem_params == NULL) {
		ERROR("HW CONFIG base address is NULL");
		return -1;
	}

	fdt = (void *)(mem_params->image_info.image_base);

	/* Check the validity of the fdt */
	if (fdt_check_header(fdt) != 0) {
		ERROR("Invalid HW_CONFIG DTB passed\n");
		return -1;
	}

	platform_name = (char *)fdt_getprop(fdt, 0, "compatible", NULL);

John Tsichritzis's avatar
John Tsichritzis committed
44
45
46
47
48
	if (platform_name == NULL) {
		ERROR("Invalid HW_CONFIG DTB passed\n");
		return -1;
	}

49
	if (strcmp(platform_name, "arm,sgi575") == 0) {
50
51
52
		platid = mmio_read_32(SSC_VERSION) & SSC_VERSION_PART_NUM_MASK;
		platcfg = (mmio_read_32(SSC_VERSION) >> SSC_VERSION_CONFIG_SHIFT)
				& SSC_VERSION_CONFIG_MASK;
53
54
55
56
	} else if (strcmp(platform_name, "arm,sgi-clark") == 0) {
		platid = mmio_read_32(SID_REG_BASE + SID_SYSTEM_ID_OFFSET)
				& SID_SYSTEM_ID_PART_NUM_MASK;
		platcfg = mmio_read_32(SID_REG_BASE + SID_SYSTEM_CFG_OFFSET);
57
	} else {
John Tsichritzis's avatar
John Tsichritzis committed
58
		WARN("Invalid platform\n");
59
60
61
		return -1;
	}

62
63
64
	nodeoffset = fdt_subnode_offset(fdt, 0, "system-id");
	if (nodeoffset < 0) {
		ERROR("Failed to get system-id node offset\n");
65
66
67
		return -1;
	}

68
69
70
	err = fdt_setprop_u32(fdt, nodeoffset, "platform-id", platid);
	if (err < 0) {
		ERROR("Failed to set platform-id\n");
71
72
73
		return -1;
	}

74
	err = fdt_setprop_u32(fdt, nodeoffset, "config-id", platcfg);
75
	if (err < 0) {
76
		ERROR("Failed to set config-id\n");
77
78
		return -1;
	}
79
80
81

	flush_dcache_range((uintptr_t)fdt, mem_params->image_info.image_size);

82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
	return 0;
}

/*******************************************************************************
 * This function returns the list of executable images.
 ******************************************************************************/
bl_params_t *plat_get_next_bl_params(void)
{
	int ret;
	bl_params_t *next_bl_params;

	ret = plat_sgi_append_config_node();
	if (ret != 0)
		panic();

	next_bl_params = get_next_bl_params_from_mem_params_desc();
	populate_next_bl_params_config(next_bl_params);

	return next_bl_params;
}