bl2_io_storage.c 9 KB
Newer Older
1
/*
Yann Gautier's avatar
Yann Gautier committed
2
 * Copyright (c) 2015-2019, ARM Limited and Contributors. All rights reserved.
3
4
5
6
7
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <assert.h>
8
9
#include <string.h>

10
#include <platform_def.h>
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

#include <arch_helpers.h>
#include <common/debug.h>
#include <drivers/io/io_block.h>
#include <drivers/io/io_driver.h>
#include <drivers/io/io_dummy.h>
#include <drivers/io/io_storage.h>
#include <drivers/mmc.h>
#include <drivers/partition/partition.h>
#include <drivers/st/io_mmc.h>
#include <drivers/st/io_stm32image.h>
#include <drivers/st/stm32_sdmmc2.h>
#include <lib/mmio.h>
#include <lib/utils.h>
#include <plat/common/platform.h>

27
28
29
30
31
/* IO devices */
static const io_dev_connector_t *dummy_dev_con;
static uintptr_t dummy_dev_handle;
static uintptr_t dummy_dev_spec;

32
static uintptr_t image_dev_handle;
33
static uintptr_t storage_dev_handle;
34

35
#if STM32MP_SDMMC || STM32MP_EMMC
36
37
38
39
40
static io_block_spec_t gpt_block_spec = {
	.offset = 0,
	.length = 34 * MMC_BLOCK_SIZE, /* Size of GPT table */
};

41
static uint32_t block_buffer[MMC_BLOCK_SIZE] __aligned(MMC_BLOCK_SIZE);
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56

static const io_block_dev_spec_t mmc_block_dev_spec = {
	/* It's used as temp buffer in block driver */
	.buffer = {
		.offset = (size_t)&block_buffer,
		.length = MMC_BLOCK_SIZE,
	},
	.ops = {
		.read = mmc_read_blocks,
		.write = NULL,
	},
	.block_size = MMC_BLOCK_SIZE,
};

static const io_dev_connector_t *mmc_dev_con;
57
#endif /* STM32MP_SDMMC || STM32MP_EMMC */
58

Yann Gautier's avatar
Yann Gautier committed
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#ifdef AARCH32_SP_OPTEE
static const struct stm32image_part_info optee_header_partition_spec = {
	.name = OPTEE_HEADER_IMAGE_NAME,
	.binary_type = OPTEE_HEADER_BINARY_TYPE,
};

static const struct stm32image_part_info optee_pager_partition_spec = {
	.name = OPTEE_PAGER_IMAGE_NAME,
	.binary_type = OPTEE_PAGER_BINARY_TYPE,
};

static const struct stm32image_part_info optee_paged_partition_spec = {
	.name = OPTEE_PAGED_IMAGE_NAME,
	.binary_type = OPTEE_PAGED_BINARY_TYPE,
};
#else
Yann Gautier's avatar
Yann Gautier committed
75
76
static const io_block_spec_t bl32_block_spec = {
	.offset = BL32_BASE,
77
	.length = STM32MP_BL32_SIZE
Yann Gautier's avatar
Yann Gautier committed
78
};
Yann Gautier's avatar
Yann Gautier committed
79
#endif
Yann Gautier's avatar
Yann Gautier committed
80
81
82

static const io_block_spec_t bl2_block_spec = {
	.offset = BL2_BASE,
83
	.length = STM32MP_BL2_SIZE,
Yann Gautier's avatar
Yann Gautier committed
84
};
85
86
87
88
89
90

static const struct stm32image_part_info bl33_partition_spec = {
	.name = BL33_IMAGE_NAME,
	.binary_type = BL33_BINARY_TYPE,
};

Yann Gautier's avatar
Yann Gautier committed
91
92
enum {
	IMG_IDX_BL33,
Yann Gautier's avatar
Yann Gautier committed
93
94
95
96
97
#ifdef AARCH32_SP_OPTEE
	IMG_IDX_OPTEE_HEADER,
	IMG_IDX_OPTEE_PAGER,
	IMG_IDX_OPTEE_PAGED,
#endif
Yann Gautier's avatar
Yann Gautier committed
98
99
100
	IMG_IDX_NUM
};

101
static struct stm32image_device_info stm32image_dev_info_spec __unused = {
102
103
104
105
106
	.lba_size = MMC_BLOCK_SIZE,
	.part_info[IMG_IDX_BL33] = {
		.name = BL33_IMAGE_NAME,
		.binary_type = BL33_BINARY_TYPE,
	},
Yann Gautier's avatar
Yann Gautier committed
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#ifdef AARCH32_SP_OPTEE
	.part_info[IMG_IDX_OPTEE_HEADER] = {
		.name = OPTEE_HEADER_IMAGE_NAME,
		.binary_type = OPTEE_HEADER_BINARY_TYPE,
	},
	.part_info[IMG_IDX_OPTEE_PAGER] = {
		.name = OPTEE_PAGER_IMAGE_NAME,
		.binary_type = OPTEE_PAGER_BINARY_TYPE,
	},
	.part_info[IMG_IDX_OPTEE_PAGED] = {
		.name = OPTEE_PAGED_IMAGE_NAME,
		.binary_type = OPTEE_PAGED_BINARY_TYPE,
	},
#endif
121
122
};

Yann Gautier's avatar
Yann Gautier committed
123
124
125
static io_block_spec_t stm32image_block_spec = {
	.offset = 0,
	.length = 0,
126
127
};

128
static const io_dev_connector_t *stm32image_dev_con __unused;
129
130

static int open_dummy(const uintptr_t spec);
131
132
static int open_image(const uintptr_t spec);
static int open_storage(const uintptr_t spec);
133
134
135
136
137
138
139
140
141
142
143
144
145

struct plat_io_policy {
	uintptr_t *dev_handle;
	uintptr_t image_spec;
	int (*check)(const uintptr_t spec);
};

static const struct plat_io_policy policies[] = {
	[BL2_IMAGE_ID] = {
		.dev_handle = &dummy_dev_handle,
		.image_spec = (uintptr_t)&bl2_block_spec,
		.check = open_dummy
	},
Yann Gautier's avatar
Yann Gautier committed
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
#ifdef AARCH32_SP_OPTEE
	[BL32_IMAGE_ID] = {
		.dev_handle = &image_dev_handle,
		.image_spec = (uintptr_t)&optee_header_partition_spec,
		.check = open_image
	},
	[BL32_EXTRA1_IMAGE_ID] = {
		.dev_handle = &image_dev_handle,
		.image_spec = (uintptr_t)&optee_pager_partition_spec,
		.check = open_image
	},
	[BL32_EXTRA2_IMAGE_ID] = {
		.dev_handle = &image_dev_handle,
		.image_spec = (uintptr_t)&optee_paged_partition_spec,
		.check = open_image
	},
#else
163
164
165
166
167
	[BL32_IMAGE_ID] = {
		.dev_handle = &dummy_dev_handle,
		.image_spec = (uintptr_t)&bl32_block_spec,
		.check = open_dummy
	},
Yann Gautier's avatar
Yann Gautier committed
168
#endif
169
170
171
172
173
	[BL33_IMAGE_ID] = {
		.dev_handle = &image_dev_handle,
		.image_spec = (uintptr_t)&bl33_partition_spec,
		.check = open_image
	},
174
#if STM32MP_SDMMC || STM32MP_EMMC
175
176
177
178
179
	[GPT_IMAGE_ID] = {
		.dev_handle = &storage_dev_handle,
		.image_spec = (uintptr_t)&gpt_block_spec,
		.check = open_storage
	},
180
#endif
181
182
183
184
185
	[STM32_IMAGE_ID] = {
		.dev_handle = &storage_dev_handle,
		.image_spec = (uintptr_t)&stm32image_block_spec,
		.check = open_storage
	}
186
187
188
189
190
191
192
};

static int open_dummy(const uintptr_t spec)
{
	return io_dev_init(dummy_dev_handle, 0);
}

193
194
195
196
197
198
199
200
201
202
static int open_image(const uintptr_t spec)
{
	return io_dev_init(image_dev_handle, 0);
}

static int open_storage(const uintptr_t spec)
{
	return io_dev_init(storage_dev_handle, 0);
}

203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
static void print_boot_device(boot_api_context_t *boot_context)
{
	switch (boot_context->boot_interface_selected) {
	case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_SD:
		INFO("Using SDMMC\n");
		break;
	case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_EMMC:
		INFO("Using EMMC\n");
		break;
	default:
		ERROR("Boot interface not found\n");
		panic();
		break;
	}

	if (boot_context->boot_interface_instance != 0U) {
		INFO("  Instance %d\n", boot_context->boot_interface_instance);
	}
}

223
#if STM32MP_SDMMC || STM32MP_EMMC
224
225
static void boot_mmc(enum mmc_device_type mmc_dev_type,
		     uint16_t boot_interface_instance)
226
227
{
	int io_result __unused;
Yann Gautier's avatar
Yann Gautier committed
228
229
	uint8_t idx;
	struct stm32image_part_info *part;
230
231
	struct stm32_sdmmc2_params params;
	struct mmc_device_info device_info;
Yann Gautier's avatar
Yann Gautier committed
232
	const partition_entry_t *entry;
233

234
235
	zeromem(&device_info, sizeof(struct mmc_device_info));
	zeromem(&params, sizeof(struct stm32_sdmmc2_params));
236

237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
	device_info.mmc_dev_type = mmc_dev_type;

	switch (boot_interface_instance) {
	case 1:
		params.reg_base = STM32MP_SDMMC1_BASE;
		break;
	case 2:
		params.reg_base = STM32MP_SDMMC2_BASE;
		break;
	case 3:
		params.reg_base = STM32MP_SDMMC3_BASE;
		break;
	default:
		WARN("SDMMC instance not found, using default\n");
		if (mmc_dev_type == MMC_IS_SD) {
			params.reg_base = STM32MP_SDMMC1_BASE;
		} else {
			params.reg_base = STM32MP_SDMMC2_BASE;
		}
		break;
257
258
	}

259
260
261
262
263
	params.device_info = &device_info;
	if (stm32_sdmmc2_mmc_init(&params) != 0) {
		ERROR("SDMMC%u init failed\n", boot_interface_instance);
		panic();
	}
264

265
266
267
268
269
270
271
272
	/* Open MMC as a block device to read GPT table */
	io_result = register_io_dev_block(&mmc_dev_con);
	if (io_result != 0) {
		panic();
	}

	io_result = io_dev_open(mmc_dev_con, (uintptr_t)&mmc_block_dev_spec,
				&storage_dev_handle);
273
	assert(io_result == 0);
274

275
	partition_init(GPT_IMAGE_ID);
276

277
278
	io_result = io_dev_close(storage_dev_handle);
	assert(io_result == 0);
279

280
281
	stm32image_dev_info_spec.device_size =
		stm32_sdmmc2_mmc_get_device_size();
282

283
284
285
286
287
	for (idx = 0U; idx < IMG_IDX_NUM; idx++) {
		part = &stm32image_dev_info_spec.part_info[idx];
		entry = get_partition_entry(part->name);
		if (entry == NULL) {
			ERROR("Partition %s not found\n", part->name);
288
289
			panic();
		}
290

291
292
293
		part->part_offset = entry->start;
		part->bkp_offset = 0U;
	}
294

295
296
297
298
299
300
	/*
	 * Re-open MMC with io_mmc, for better perfs compared to
	 * io_block.
	 */
	io_result = register_io_dev_mmc(&mmc_dev_con);
	assert(io_result == 0);
301

302
303
	io_result = io_dev_open(mmc_dev_con, 0, &storage_dev_handle);
	assert(io_result == 0);
304

305
306
	io_result = register_io_dev_stm32image(&stm32image_dev_con);
	assert(io_result == 0);
307

308
309
310
311
312
	io_result = io_dev_open(stm32image_dev_con,
				(uintptr_t)&stm32image_dev_info_spec,
				&image_dev_handle);
	assert(io_result == 0);
}
313
#endif /* STM32MP_SDMMC || STM32MP_EMMC */
Yann Gautier's avatar
Yann Gautier committed
314

315
316
317
318
319
void stm32mp_io_setup(void)
{
	int io_result __unused;
	boot_api_context_t *boot_context =
		(boot_api_context_t *)stm32mp_get_boot_ctx_address();
Yann Gautier's avatar
Yann Gautier committed
320

321
	print_boot_device(boot_context);
322

323
324
325
326
327
	if ((boot_context->boot_partition_used_toboot == 1U) ||
	    (boot_context->boot_partition_used_toboot == 2U)) {
		INFO("Boot used partition fsbl%d\n",
		     boot_context->boot_partition_used_toboot);
	}
328

329
330
	io_result = register_io_dev_dummy(&dummy_dev_con);
	assert(io_result == 0);
331

332
333
334
	io_result = io_dev_open(dummy_dev_con, dummy_dev_spec,
				&dummy_dev_handle);
	assert(io_result == 0);
335

336
	switch (boot_context->boot_interface_selected) {
337
#if STM32MP_SDMMC
338
339
340
341
	case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_SD:
		dmbsy();
		boot_mmc(MMC_IS_SD, boot_context->boot_interface_instance);
		break;
342
343
#endif
#if STM32MP_EMMC
344
345
346
	case BOOT_API_CTX_BOOT_INTERFACE_SEL_FLASH_EMMC:
		dmbsy();
		boot_mmc(MMC_IS_EMMC, boot_context->boot_interface_instance);
347
		break;
348
#endif
349
350
351
352
353
354

	default:
		ERROR("Boot interface %d not supported\n",
		      boot_context->boot_interface_selected);
		break;
	}
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
}

/*
 * Return an IO device handle and specification which can be used to access
 * an image. Use this to enforce platform load policy.
 */
int plat_get_image_source(unsigned int image_id, uintptr_t *dev_handle,
			  uintptr_t *image_spec)
{
	int rc;
	const struct plat_io_policy *policy;

	assert(image_id < ARRAY_SIZE(policies));

	policy = &policies[image_id];
	rc = policy->check(policy->image_spec);
	if (rc == 0) {
		*image_spec = policy->image_spec;
		*dev_handle = *(policy->dev_handle);
	}

	return rc;
}