aboutsummaryrefslogtreecommitdiff
path: root/product/n1sdp/scp_romfw/config_n1sdp_rom.c
blob: e1bf564205a8b992575468250c44bb467579fb78 (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) 2018-2020, Arm Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include "n1sdp_scp_system_mmap.h"

#include <mod_fip.h>
#include <mod_n1sdp_rom.h>

#include <fwk_module.h>

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