blob: fd7a9e9a2995f60d44be3eca45a871bc15acdf61 [file] [log] [blame]
Dan Handley9df48042015-03-19 18:58:55 +00001/*
Soby Mathew7d5a2e72018-01-10 15:59:31 +00002 * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
Dan Handley9df48042015-03-19 18:58:55 +00003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Dan Handley9df48042015-03-19 18:58:55 +00005 */
6
7#include <arch_helpers.h>
8#include <arm_def.h>
Yatharth Kocharf9a0f162016-09-13 17:07:57 +01009#include <assert.h>
Dan Handley9df48042015-03-19 18:58:55 +000010#include <bl_common.h>
Antonio Nino Diazb37eba92018-05-15 13:12:50 +010011#include <console.h>
Yatharth Kocharf9a0f162016-09-13 17:07:57 +010012#include <debug.h>
13#include <desc_image_load.h>
Soby Mathew1ced6b82017-06-12 12:37:10 +010014#include <generic_delay_timer.h>
Summer Qin9db8f2e2017-04-24 16:49:28 +010015#ifdef SPD_opteed
16#include <optee_utils.h>
17#endif
Dan Handley9df48042015-03-19 18:58:55 +000018#include <plat_arm.h>
dp-arm7f297ca2017-05-02 11:49:33 +010019#include <platform.h>
Isla Mitchelld2548792017-07-14 10:48:25 +010020#include <platform_def.h>
Dan Handley9df48042015-03-19 18:58:55 +000021#include <string.h>
Douglas Raillarda8954fc2017-01-26 15:54:44 +000022#include <utils.h>
Dan Handley9df48042015-03-19 18:58:55 +000023
Dan Handley9df48042015-03-19 18:58:55 +000024/* Data structure which holds the extents of the trusted SRAM for BL2 */
25static meminfo_t bl2_tzram_layout __aligned(CACHE_WRITEBACK_GRANULE);
26
Soby Mathewc44110d2018-02-20 12:50:47 +000027/*
Soby Mathewaf14b462018-06-01 16:53:38 +010028 * Check that BL2_BASE is above ARM_TB_FW_CONFIG_LIMIT. This reserved page is
29 * for `meminfo_t` data structure and fw_configs passed from BL1.
Soby Mathewc44110d2018-02-20 12:50:47 +000030 */
Soby Mathewaf14b462018-06-01 16:53:38 +010031CASSERT(BL2_BASE >= ARM_TB_FW_CONFIG_LIMIT, assert_bl2_base_overflows);
Soby Mathewc44110d2018-02-20 12:50:47 +000032
Yatharth Kocharf9a0f162016-09-13 17:07:57 +010033/* Weak definitions may be overridden in specific ARM standard platform */
Soby Mathew7d5a2e72018-01-10 15:59:31 +000034#pragma weak bl2_early_platform_setup2
Yatharth Kocharf9a0f162016-09-13 17:07:57 +010035#pragma weak bl2_platform_setup
36#pragma weak bl2_plat_arch_setup
37#pragma weak bl2_plat_sec_mem_layout
38
Daniel Boulbye08d0f22018-05-01 12:19:26 +010039#if !LOAD_IMAGE_V2
Dan Handley9df48042015-03-19 18:58:55 +000040/*******************************************************************************
41 * This structure represents the superset of information that is passed to
Juan Castillo7d199412015-12-14 09:35:25 +000042 * BL31, e.g. while passing control to it from BL2, bl31_params
Dan Handley9df48042015-03-19 18:58:55 +000043 * and other platform specific params
44 ******************************************************************************/
45typedef struct bl2_to_bl31_params_mem {
46 bl31_params_t bl31_params;
47 image_info_t bl31_image_info;
48 image_info_t bl32_image_info;
49 image_info_t bl33_image_info;
50 entry_point_info_t bl33_ep_info;
51 entry_point_info_t bl32_ep_info;
52 entry_point_info_t bl31_ep_info;
53} bl2_to_bl31_params_mem_t;
54
55
56static bl2_to_bl31_params_mem_t bl31_params_mem;
57
58
59/* Weak definitions may be overridden in specific ARM standard platform */
Dan Handley9df48042015-03-19 18:58:55 +000060#pragma weak bl2_plat_get_bl31_params
61#pragma weak bl2_plat_get_bl31_ep_info
62#pragma weak bl2_plat_flush_bl31_params
63#pragma weak bl2_plat_set_bl31_ep_info
Juan Castilloa72b6472015-12-10 15:49:17 +000064#pragma weak bl2_plat_get_scp_bl2_meminfo
Dan Handley9df48042015-03-19 18:58:55 +000065#pragma weak bl2_plat_get_bl32_meminfo
66#pragma weak bl2_plat_set_bl32_ep_info
67#pragma weak bl2_plat_get_bl33_meminfo
68#pragma weak bl2_plat_set_bl33_ep_info
69
David Wang0ba499f2016-03-07 11:02:57 +080070#if ARM_BL31_IN_DRAM
71meminfo_t *bl2_plat_sec_mem_layout(void)
72{
73 static meminfo_t bl2_dram_layout
74 __aligned(CACHE_WRITEBACK_GRANULE) = {
75 .total_base = BL31_BASE,
76 .total_size = (ARM_AP_TZC_DRAM1_BASE +
77 ARM_AP_TZC_DRAM1_SIZE) - BL31_BASE,
78 .free_base = BL31_BASE,
79 .free_size = (ARM_AP_TZC_DRAM1_BASE +
80 ARM_AP_TZC_DRAM1_SIZE) - BL31_BASE
81 };
Dan Handley9df48042015-03-19 18:58:55 +000082
David Wang0ba499f2016-03-07 11:02:57 +080083 return &bl2_dram_layout;
84}
85#else
Dan Handley9df48042015-03-19 18:58:55 +000086meminfo_t *bl2_plat_sec_mem_layout(void)
87{
88 return &bl2_tzram_layout;
89}
Yatharth Kocharf9a0f162016-09-13 17:07:57 +010090#endif /* ARM_BL31_IN_DRAM */
Dan Handley9df48042015-03-19 18:58:55 +000091
92/*******************************************************************************
93 * This function assigns a pointer to the memory that the platform has kept
94 * aside to pass platform specific and trusted firmware related information
95 * to BL31. This memory is allocated by allocating memory to
96 * bl2_to_bl31_params_mem_t structure which is a superset of all the
97 * structure whose information is passed to BL31
98 * NOTE: This function should be called only once and should be done
99 * before generating params to BL31
100 ******************************************************************************/
101bl31_params_t *bl2_plat_get_bl31_params(void)
102{
103 bl31_params_t *bl2_to_bl31_params;
104
105 /*
106 * Initialise the memory for all the arguments that needs to
Juan Castillo7d199412015-12-14 09:35:25 +0000107 * be passed to BL31
Dan Handley9df48042015-03-19 18:58:55 +0000108 */
Douglas Raillarda8954fc2017-01-26 15:54:44 +0000109 zeromem(&bl31_params_mem, sizeof(bl2_to_bl31_params_mem_t));
Dan Handley9df48042015-03-19 18:58:55 +0000110
111 /* Assign memory for TF related information */
112 bl2_to_bl31_params = &bl31_params_mem.bl31_params;
113 SET_PARAM_HEAD(bl2_to_bl31_params, PARAM_BL31, VERSION_1, 0);
114
Juan Castillo7d199412015-12-14 09:35:25 +0000115 /* Fill BL31 related information */
Dan Handley9df48042015-03-19 18:58:55 +0000116 bl2_to_bl31_params->bl31_image_info = &bl31_params_mem.bl31_image_info;
117 SET_PARAM_HEAD(bl2_to_bl31_params->bl31_image_info, PARAM_IMAGE_BINARY,
118 VERSION_1, 0);
119
Juan Castillo7d199412015-12-14 09:35:25 +0000120 /* Fill BL32 related information if it exists */
Antonio Nino Diaze4fa3702016-04-05 11:38:49 +0100121#ifdef BL32_BASE
Dan Handley9df48042015-03-19 18:58:55 +0000122 bl2_to_bl31_params->bl32_ep_info = &bl31_params_mem.bl32_ep_info;
123 SET_PARAM_HEAD(bl2_to_bl31_params->bl32_ep_info, PARAM_EP,
124 VERSION_1, 0);
125 bl2_to_bl31_params->bl32_image_info = &bl31_params_mem.bl32_image_info;
126 SET_PARAM_HEAD(bl2_to_bl31_params->bl32_image_info, PARAM_IMAGE_BINARY,
127 VERSION_1, 0);
Antonio Nino Diaze4fa3702016-04-05 11:38:49 +0100128#endif /* BL32_BASE */
Dan Handley9df48042015-03-19 18:58:55 +0000129
Juan Castillo7d199412015-12-14 09:35:25 +0000130 /* Fill BL33 related information */
Dan Handley9df48042015-03-19 18:58:55 +0000131 bl2_to_bl31_params->bl33_ep_info = &bl31_params_mem.bl33_ep_info;
132 SET_PARAM_HEAD(bl2_to_bl31_params->bl33_ep_info,
133 PARAM_EP, VERSION_1, 0);
134
Juan Castillo7d199412015-12-14 09:35:25 +0000135 /* BL33 expects to receive the primary CPU MPID (through x0) */
Dan Handley9df48042015-03-19 18:58:55 +0000136 bl2_to_bl31_params->bl33_ep_info->args.arg0 = 0xffff & read_mpidr();
137
138 bl2_to_bl31_params->bl33_image_info = &bl31_params_mem.bl33_image_info;
139 SET_PARAM_HEAD(bl2_to_bl31_params->bl33_image_info, PARAM_IMAGE_BINARY,
140 VERSION_1, 0);
141
142 return bl2_to_bl31_params;
143}
144
145/* Flush the TF params and the TF plat params */
146void bl2_plat_flush_bl31_params(void)
147{
148 flush_dcache_range((unsigned long)&bl31_params_mem,
149 sizeof(bl2_to_bl31_params_mem_t));
150}
151
152/*******************************************************************************
153 * This function returns a pointer to the shared memory that the platform
154 * has kept to point to entry point information of BL31 to BL2
155 ******************************************************************************/
156struct entry_point_info *bl2_plat_get_bl31_ep_info(void)
157{
158#if DEBUG
Soby Mathew7d5a2e72018-01-10 15:59:31 +0000159 bl31_params_mem.bl31_ep_info.args.arg3 = ARM_BL31_PLAT_PARAM_VAL;
Dan Handley9df48042015-03-19 18:58:55 +0000160#endif
161
162 return &bl31_params_mem.bl31_ep_info;
163}
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100164#endif /* LOAD_IMAGE_V2 */
Dan Handley9df48042015-03-19 18:58:55 +0000165
166/*******************************************************************************
167 * BL1 has passed the extents of the trusted SRAM that should be visible to BL2
168 * in x0. This memory layout is sitting at the base of the free trusted SRAM.
169 * Copy it to a safe location before its reclaimed by later BL2 functionality.
170 ******************************************************************************/
Soby Mathew96a1c6b2018-01-15 14:45:33 +0000171void arm_bl2_early_platform_setup(uintptr_t tb_fw_config, meminfo_t *mem_layout)
Dan Handley9df48042015-03-19 18:58:55 +0000172{
173 /* Initialize the console to provide early debug support */
Antonio Nino Diazb37eba92018-05-15 13:12:50 +0100174 console_init(PLAT_ARM_BOOT_UART_BASE, PLAT_ARM_BOOT_UART_CLK_IN_HZ,
175 ARM_CONSOLE_BAUDRATE);
Dan Handley9df48042015-03-19 18:58:55 +0000176
177 /* Setup the BL2 memory layout */
178 bl2_tzram_layout = *mem_layout;
179
180 /* Initialise the IO layer and register platform IO devices */
181 plat_arm_io_setup();
Soby Mathew96a1c6b2018-01-15 14:45:33 +0000182
183#if LOAD_IMAGE_V2
Soby Mathewcc364842018-02-21 01:16:39 +0000184 if (tb_fw_config != 0U)
Soby Mathew96a1c6b2018-01-15 14:45:33 +0000185 arm_bl2_set_tb_cfg_addr((void *)tb_fw_config);
186#endif
Dan Handley9df48042015-03-19 18:58:55 +0000187}
188
Soby Mathew7d5a2e72018-01-10 15:59:31 +0000189void bl2_early_platform_setup2(u_register_t arg0, u_register_t arg1, u_register_t arg2, u_register_t arg3)
Dan Handley9df48042015-03-19 18:58:55 +0000190{
Soby Mathew96a1c6b2018-01-15 14:45:33 +0000191 arm_bl2_early_platform_setup((uintptr_t)arg0, (meminfo_t *)arg1);
192
Soby Mathew1ced6b82017-06-12 12:37:10 +0100193 generic_delay_timer_init();
Dan Handley9df48042015-03-19 18:58:55 +0000194}
195
196/*
Soby Mathew45e39e22018-03-26 15:16:46 +0100197 * Perform BL2 preload setup. Currently we initialise the dynamic
198 * configuration here.
Dan Handley9df48042015-03-19 18:58:55 +0000199 */
Soby Mathew45e39e22018-03-26 15:16:46 +0100200void bl2_plat_preload_setup(void)
Dan Handley9df48042015-03-19 18:58:55 +0000201{
Soby Mathew96a1c6b2018-01-15 14:45:33 +0000202#if LOAD_IMAGE_V2
203 arm_bl2_dyn_cfg_init();
204#endif
Soby Mathew45e39e22018-03-26 15:16:46 +0100205}
Soby Mathew96a1c6b2018-01-15 14:45:33 +0000206
Soby Mathew45e39e22018-03-26 15:16:46 +0100207/*
208 * Perform ARM standard platform setup.
209 */
210void arm_bl2_platform_setup(void)
211{
Dan Handley9df48042015-03-19 18:58:55 +0000212 /* Initialize the secure environment */
213 plat_arm_security_setup();
Roberto Vargasa1c16b62017-08-03 09:16:43 +0100214
215#if defined(PLAT_ARM_MEM_PROT_ADDR)
Roberto Vargas550eb082018-01-05 16:00:05 +0000216 arm_nor_psci_do_static_mem_protect();
Roberto Vargasa1c16b62017-08-03 09:16:43 +0100217#endif
Dan Handley9df48042015-03-19 18:58:55 +0000218}
219
220void bl2_platform_setup(void)
221{
222 arm_bl2_platform_setup();
223}
224
225/*******************************************************************************
226 * Perform the very early platform specific architectural setup here. At the
227 * moment this is only initializes the mmu in a quick and dirty way.
228 ******************************************************************************/
229void arm_bl2_plat_arch_setup(void)
230{
Sandrine Bailleux4a1267a2016-05-18 16:11:47 +0100231 arm_setup_page_tables(bl2_tzram_layout.total_base,
Dan Handley9df48042015-03-19 18:58:55 +0000232 bl2_tzram_layout.total_size,
Sandrine Bailleuxecdc4d32016-07-08 14:38:16 +0100233 BL_CODE_BASE,
Masahiro Yamada51bef612017-01-18 02:10:08 +0900234 BL_CODE_END,
Sandrine Bailleuxecdc4d32016-07-08 14:38:16 +0100235 BL_RO_DATA_BASE,
Masahiro Yamada51bef612017-01-18 02:10:08 +0900236 BL_RO_DATA_END
Dan Handley9df48042015-03-19 18:58:55 +0000237#if USE_COHERENT_MEM
Masahiro Yamada0fac5af2016-12-28 16:11:41 +0900238 , BL_COHERENT_RAM_BASE,
239 BL_COHERENT_RAM_END
Dan Handley9df48042015-03-19 18:58:55 +0000240#endif
241 );
Yatharth Kochara5f77d32016-07-04 11:26:14 +0100242
243#ifdef AARCH32
244 enable_mmu_secure(0);
245#else
Sandrine Bailleux4a1267a2016-05-18 16:11:47 +0100246 enable_mmu_el1(0);
Yatharth Kochara5f77d32016-07-04 11:26:14 +0100247#endif
Dan Handley9df48042015-03-19 18:58:55 +0000248}
249
250void bl2_plat_arch_setup(void)
251{
252 arm_bl2_plat_arch_setup();
253}
254
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100255#if LOAD_IMAGE_V2
Yatharth Kocharede39cb2016-11-14 12:01:04 +0000256int arm_bl2_handle_post_image_load(unsigned int image_id)
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100257{
258 int err = 0;
259 bl_mem_params_node_t *bl_mem_params = get_bl_mem_params_node(image_id);
Summer Qin9db8f2e2017-04-24 16:49:28 +0100260#ifdef SPD_opteed
261 bl_mem_params_node_t *pager_mem_params = NULL;
262 bl_mem_params_node_t *paged_mem_params = NULL;
263#endif
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100264 assert(bl_mem_params);
265
266 switch (image_id) {
Yatharth Kochara5f77d32016-07-04 11:26:14 +0100267#ifdef AARCH64
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100268 case BL32_IMAGE_ID:
Summer Qin9db8f2e2017-04-24 16:49:28 +0100269#ifdef SPD_opteed
270 pager_mem_params = get_bl_mem_params_node(BL32_EXTRA1_IMAGE_ID);
271 assert(pager_mem_params);
272
273 paged_mem_params = get_bl_mem_params_node(BL32_EXTRA2_IMAGE_ID);
274 assert(paged_mem_params);
275
276 err = parse_optee_header(&bl_mem_params->ep_info,
277 &pager_mem_params->image_info,
278 &paged_mem_params->image_info);
279 if (err != 0) {
280 WARN("OPTEE header parse error.\n");
281 }
282#endif
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100283 bl_mem_params->ep_info.spsr = arm_get_spsr_for_bl32_entry();
284 break;
Yatharth Kochara5f77d32016-07-04 11:26:14 +0100285#endif
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100286
287 case BL33_IMAGE_ID:
288 /* BL33 expects to receive the primary CPU MPID (through r0) */
289 bl_mem_params->ep_info.args.arg0 = 0xffff & read_mpidr();
290 bl_mem_params->ep_info.spsr = arm_get_spsr_for_bl33_entry();
291 break;
292
293#ifdef SCP_BL2_BASE
294 case SCP_BL2_IMAGE_ID:
295 /* The subsequent handling of SCP_BL2 is platform specific */
296 err = plat_arm_bl2_handle_scp_bl2(&bl_mem_params->image_info);
297 if (err) {
298 WARN("Failure in platform-specific handling of SCP_BL2 image.\n");
299 }
300 break;
301#endif
Jonathan Wrightff957ed2018-03-14 15:24:00 +0000302 default:
303 /* Do nothing in default case */
304 break;
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100305 }
306
307 return err;
308}
309
Yatharth Kocharede39cb2016-11-14 12:01:04 +0000310/*******************************************************************************
311 * This function can be used by the platforms to update/use image
312 * information for given `image_id`.
313 ******************************************************************************/
314int bl2_plat_handle_post_image_load(unsigned int image_id)
315{
316 return arm_bl2_handle_post_image_load(image_id);
317}
318
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100319#else /* LOAD_IMAGE_V2 */
320
Dan Handley9df48042015-03-19 18:58:55 +0000321/*******************************************************************************
Juan Castilloa72b6472015-12-10 15:49:17 +0000322 * Populate the extents of memory available for loading SCP_BL2 (if used),
Dan Handley9df48042015-03-19 18:58:55 +0000323 * i.e. anywhere in trusted RAM as long as it doesn't overwrite BL2.
324 ******************************************************************************/
Juan Castilloa72b6472015-12-10 15:49:17 +0000325void bl2_plat_get_scp_bl2_meminfo(meminfo_t *scp_bl2_meminfo)
Dan Handley9df48042015-03-19 18:58:55 +0000326{
Juan Castilloa72b6472015-12-10 15:49:17 +0000327 *scp_bl2_meminfo = bl2_tzram_layout;
Dan Handley9df48042015-03-19 18:58:55 +0000328}
329
330/*******************************************************************************
Juan Castillo7d199412015-12-14 09:35:25 +0000331 * Before calling this function BL31 is loaded in memory and its entrypoint
Dan Handley9df48042015-03-19 18:58:55 +0000332 * is set by load_image. This is a placeholder for the platform to change
Juan Castillo7d199412015-12-14 09:35:25 +0000333 * the entrypoint of BL31 and set SPSR and security state.
Dan Handley9df48042015-03-19 18:58:55 +0000334 * On ARM standard platforms we only set the security state of the entrypoint
335 ******************************************************************************/
336void bl2_plat_set_bl31_ep_info(image_info_t *bl31_image_info,
337 entry_point_info_t *bl31_ep_info)
338{
339 SET_SECURITY_STATE(bl31_ep_info->h.attr, SECURE);
340 bl31_ep_info->spsr = SPSR_64(MODE_EL3, MODE_SP_ELX,
341 DISABLE_ALL_EXCEPTIONS);
342}
343
344
345/*******************************************************************************
Juan Castillo7d199412015-12-14 09:35:25 +0000346 * Before calling this function BL32 is loaded in memory and its entrypoint
Dan Handley9df48042015-03-19 18:58:55 +0000347 * is set by load_image. This is a placeholder for the platform to change
Juan Castillo7d199412015-12-14 09:35:25 +0000348 * the entrypoint of BL32 and set SPSR and security state.
Dan Handley9df48042015-03-19 18:58:55 +0000349 * On ARM standard platforms we only set the security state of the entrypoint
350 ******************************************************************************/
Antonio Nino Diaze4fa3702016-04-05 11:38:49 +0100351#ifdef BL32_BASE
Dan Handley9df48042015-03-19 18:58:55 +0000352void bl2_plat_set_bl32_ep_info(image_info_t *bl32_image_info,
353 entry_point_info_t *bl32_ep_info)
354{
355 SET_SECURITY_STATE(bl32_ep_info->h.attr, SECURE);
356 bl32_ep_info->spsr = arm_get_spsr_for_bl32_entry();
357}
358
359/*******************************************************************************
Dan Handley9df48042015-03-19 18:58:55 +0000360 * Populate the extents of memory available for loading BL32
361 ******************************************************************************/
362void bl2_plat_get_bl32_meminfo(meminfo_t *bl32_meminfo)
363{
364 /*
365 * Populate the extents of memory available for loading BL32.
366 */
367 bl32_meminfo->total_base = BL32_BASE;
368 bl32_meminfo->free_base = BL32_BASE;
369 bl32_meminfo->total_size =
370 (TSP_SEC_MEM_BASE + TSP_SEC_MEM_SIZE) - BL32_BASE;
371 bl32_meminfo->free_size =
372 (TSP_SEC_MEM_BASE + TSP_SEC_MEM_SIZE) - BL32_BASE;
373}
Antonio Nino Diaze4fa3702016-04-05 11:38:49 +0100374#endif /* BL32_BASE */
Dan Handley9df48042015-03-19 18:58:55 +0000375
Antonio Nino Diaze4fa3702016-04-05 11:38:49 +0100376/*******************************************************************************
377 * Before calling this function BL33 is loaded in memory and its entrypoint
378 * is set by load_image. This is a placeholder for the platform to change
379 * the entrypoint of BL33 and set SPSR and security state.
380 * On ARM standard platforms we only set the security state of the entrypoint
381 ******************************************************************************/
382void bl2_plat_set_bl33_ep_info(image_info_t *image,
383 entry_point_info_t *bl33_ep_info)
384{
385 SET_SECURITY_STATE(bl33_ep_info->h.attr, NON_SECURE);
386 bl33_ep_info->spsr = arm_get_spsr_for_bl33_entry();
387}
Dan Handley9df48042015-03-19 18:58:55 +0000388
389/*******************************************************************************
390 * Populate the extents of memory available for loading BL33
391 ******************************************************************************/
392void bl2_plat_get_bl33_meminfo(meminfo_t *bl33_meminfo)
393{
394 bl33_meminfo->total_base = ARM_NS_DRAM1_BASE;
395 bl33_meminfo->total_size = ARM_NS_DRAM1_SIZE;
396 bl33_meminfo->free_base = ARM_NS_DRAM1_BASE;
397 bl33_meminfo->free_size = ARM_NS_DRAM1_SIZE;
398}
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100399
400#endif /* LOAD_IMAGE_V2 */