aboutsummaryrefslogtreecommitdiff
path: root/plat/rpi3/rpi3_image_load.c
diff options
context:
space:
mode:
authorAndre Przywara <andre.przywara@arm.com>2019-07-09 11:18:59 +0100
committerAndre Przywara <andre.przywara@arm.com>2019-09-13 16:54:21 +0100
commitab13addd845e596fb5fba51da8d0f672cdf35eff (patch)
tree72863b765d4b4018c3c050a32de96e401eee707e /plat/rpi3/rpi3_image_load.c
parent42cdeb93080f2b54a75be14e4f5ee776872f3f0f (diff)
downloadtrusted-firmware-a-ab13addd845e596fb5fba51da8d0f672cdf35eff.tar.gz
rpi3: Add "rpi" platform directory
With the incoming support for the Raspberry Pi 4 boards, one directory to serve both versions will not end up well. Create an additional layer by inserting a "rpi" directory betweeen /plat and rpi3, so that we can more easily share or separate files between the two later. Change-Id: I75adbb054fe7902f34db0fd5e579a55612dd8a5f Signed-off-by: Andre Przywara <andre.przywara@arm.com>
Diffstat (limited to 'plat/rpi3/rpi3_image_load.c')
-rw-r--r--plat/rpi3/rpi3_image_load.c36
1 files changed, 0 insertions, 36 deletions
diff --git a/plat/rpi3/rpi3_image_load.c b/plat/rpi3/rpi3_image_load.c
deleted file mode 100644
index 5394c6f7c8..0000000000
--- a/plat/rpi3/rpi3_image_load.c
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * Copyright (c) 2016-2017, ARM Limited and Contributors. All rights reserved.
- *
- * SPDX-License-Identifier: BSD-3-Clause
- */
-
-#include <platform_def.h>
-
-#include <common/bl_common.h>
-#include <common/desc_image_load.h>
-#include <plat/common/platform.h>
-
-/*******************************************************************************
- * This function flushes the data structures so that they are visible
- * in memory for the next BL image.
- ******************************************************************************/
-void plat_flush_next_bl_params(void)
-{
- flush_bl_params_desc();
-}
-
-/*******************************************************************************
- * This function returns the list of loadable images.
- ******************************************************************************/
-bl_load_info_t *plat_get_bl_image_load_info(void)
-{
- return get_bl_load_info_from_mem_params_desc();
-}
-
-/*******************************************************************************
- * This function returns the list of executable images.
- ******************************************************************************/
-bl_params_t *plat_get_next_bl_params(void)
-{
- return get_next_bl_params_from_mem_params_desc();
-}