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

#include "morello_scp_system_mmap.h"

#include <mod_fip.h>
#include <mod_morello_rom.h>

#include <fwk_module.h>

const struct fwk_module_config config_morello_rom = {
    .data = &((struct morello_rom_config){
        .ramfw_base = SCP_RAM0_BASE,
        .image_type = MOD_FIP_TOC_ENTRY_SCP_BL2,
    })
};