aboutsummaryrefslogtreecommitdiff
path: root/product/rddanielxlr/scp_romfw/config_bootloader.c
blob: 34d4ad0e50f09d9e932d652c006de26cc5c1b2ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * Arm SCP/MCP Software
 * Copyright (c) 2020, Arm Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include "scp_mmap.h"
#include "scp_software_mmap.h"

#include <mod_bootloader.h>

#include <fwk_module.h>

static const struct mod_bootloader_config bootloader_module_config = {
    .source_base = SCP_RAMFW_IMAGE_FLASH_BASE,
    .source_size = SCP_RAMFW_IMAGE_FLASH_SIZE,
    .destination_base = SCP_ITC_RAM_BASE,
    .destination_size = SCP_RAMFW_IMAGE_FLASH_SIZE,
};

struct fwk_module_config config_bootloader = {
    .data = &bootloader_module_config,
};