aboutsummaryrefslogtreecommitdiff
path: root/product/morello/scp_romfw/config_fip.c
blob: 703dce33f577dd199a190872436b7af3e5e81fb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Arm SCP/MCP Software
 * Copyright (c) 2018-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 <fwk_module.h>

const struct fwk_module_config config_fip = {
    .data = &((struct mod_fip_config){
        .fip_base_address = SCP_QSPI_FLASH_BASE_ADDR,
        .fip_nvm_size = SCP_QSPI_FLASH_SIZE,
    })
};