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

#include "n1sdp_mcp_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){
        .fip_base_address = MCP_QSPI_FLASH_BASE_ADDR,
        .fip_nvm_size = MCP_QSPI_FLASH_SIZE,
        .ramfw_base = MCP_RAM0_BASE,
        .image_type = MOD_FIP_TOC_ENTRY_MCP_BL2,
    })
};