fvp_io_storage.c 4.74 KB
Newer Older
1
/*
2
 * Copyright (c) 2014-2015, ARM Limited and Contributors. All rights reserved.
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
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * Redistributions of source code must retain the above copyright notice, this
 * list of conditions and the following disclaimer.
 *
 * Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following disclaimer in the documentation
 * and/or other materials provided with the distribution.
 *
 * Neither the name of ARM nor the names of its contributors may be used
 * to endorse or promote products derived from this software without specific
 * prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#include <assert.h>
32
#include <common_def.h>
33
#include <debug.h>
34
#include <io_driver.h>
35
36
#include <io_storage.h>
#include <io_semihosting.h>
37
#include <plat_arm.h>
38
39
40
41
42
43
44
45
46
#include <semihosting.h>	/* For FOPEN_MODE_... */

/* Semihosting filenames */
#define BL2_IMAGE_NAME			"bl2.bin"
#define BL31_IMAGE_NAME			"bl31.bin"
#define BL32_IMAGE_NAME			"bl32.bin"
#define BL33_IMAGE_NAME			"bl33.bin"

#if TRUSTED_BOARD_BOOT
47
#define TRUSTED_BOOT_FW_CERT_NAME	"tb_fw.crt"
48
#define TRUSTED_KEY_CERT_NAME		"trusted_key.crt"
49
50
51
52
53
54
#define SOC_FW_KEY_CERT_NAME		"soc_fw_key.crt"
#define TOS_FW_KEY_CERT_NAME		"tos_fw_key.crt"
#define NT_FW_KEY_CERT_NAME		"nt_fw_key.crt"
#define SOC_FW_CONTENT_CERT_NAME	"soc_fw_content.crt"
#define TOS_FW_CONTENT_CERT_NAME	"tos_fw_content.crt"
#define NT_FW_CONTENT_CERT_NAME		"nt_fw_content.crt"
55
#endif /* TRUSTED_BOARD_BOOT */
56
57

/* IO devices */
58
59
static const io_dev_connector_t *sh_dev_con;
static uintptr_t sh_dev_handle;
60

61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
static const io_file_spec_t sh_file_spec[] = {
	[BL2_IMAGE_ID] = {
		.path = BL2_IMAGE_NAME,
		.mode = FOPEN_MODE_RB
	},
	[BL31_IMAGE_ID] = {
		.path = BL31_IMAGE_NAME,
		.mode = FOPEN_MODE_RB
	},
	[BL32_IMAGE_ID] = {
		.path = BL32_IMAGE_NAME,
		.mode = FOPEN_MODE_RB
	},
	[BL33_IMAGE_ID] = {
		.path = BL33_IMAGE_NAME,
		.mode = FOPEN_MODE_RB
	},
#if TRUSTED_BOARD_BOOT
79
80
	[TRUSTED_BOOT_FW_CERT_ID] = {
		.path = TRUSTED_BOOT_FW_CERT_NAME,
81
82
83
84
85
86
		.mode = FOPEN_MODE_RB
	},
	[TRUSTED_KEY_CERT_ID] = {
		.path = TRUSTED_KEY_CERT_NAME,
		.mode = FOPEN_MODE_RB
	},
87
88
	[SOC_FW_KEY_CERT_ID] = {
		.path = SOC_FW_KEY_CERT_NAME,
89
90
		.mode = FOPEN_MODE_RB
	},
91
92
	[TRUSTED_OS_FW_KEY_CERT_ID] = {
		.path = TOS_FW_KEY_CERT_NAME,
93
94
		.mode = FOPEN_MODE_RB
	},
95
96
	[NON_TRUSTED_FW_KEY_CERT_ID] = {
		.path = NT_FW_KEY_CERT_NAME,
97
98
		.mode = FOPEN_MODE_RB
	},
99
100
	[SOC_FW_CONTENT_CERT_ID] = {
		.path = SOC_FW_CONTENT_CERT_NAME,
101
102
		.mode = FOPEN_MODE_RB
	},
103
104
	[TRUSTED_OS_FW_CONTENT_CERT_ID] = {
		.path = TOS_FW_CONTENT_CERT_NAME,
105
106
		.mode = FOPEN_MODE_RB
	},
107
108
	[NON_TRUSTED_FW_CONTENT_CERT_ID] = {
		.path = NT_FW_CONTENT_CERT_NAME,
109
110
111
112
113
		.mode = FOPEN_MODE_RB
	},
#endif /* TRUSTED_BOARD_BOOT */
};

114

115
static int open_semihosting(const uintptr_t spec)
116
{
117
	int result;
118
	uintptr_t local_image_handle;
119
120

	/* See if the file exists on semi-hosting.*/
121
	result = io_dev_init(sh_dev_handle, (uintptr_t)NULL);
122
	if (result == 0) {
123
		result = io_open(sh_dev_handle, spec, &local_image_handle);
124
		if (result == 0) {
Dan Handley's avatar
Dan Handley committed
125
			VERBOSE("Using Semi-hosting IO\n");
126
127
128
129
130
131
			io_close(local_image_handle);
		}
	}
	return result;
}

132
void plat_arm_io_setup(void)
133
{
134
	int io_result;
135

136
	arm_io_setup();
137

138
139
	/* Register the additional IO devices on this platform */
	io_result = register_io_dev_sh(&sh_dev_con);
140
	assert(io_result == 0);
141

142
	/* Open connections to devices and cache the handles */
143
	io_result = io_dev_open(sh_dev_con, (uintptr_t)NULL, &sh_dev_handle);
144
	assert(io_result == 0);
145

146
147
148
149
	/* Ignore improbable errors in release builds */
	(void)io_result;
}

150
151
152
153
154
/*
 * FVP provides semihosting as an alternative to load images
 */
int plat_arm_get_alt_image_source(unsigned int image_id, uintptr_t *dev_handle,
				  uintptr_t *image_spec)
155
{
156
	int result = open_semihosting((const uintptr_t)&sh_file_spec[image_id]);
157
	if (result == 0) {
158
		*dev_handle = sh_dev_handle;
159
160
		*image_spec = (uintptr_t)&sh_file_spec[image_id];
	}
161

162
163
	return result;
}