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

#include <fwk_module.h>
#include <mod_n1sdp_flash.h>
#include <n1sdp_scp_system_mmap.h>

const struct fwk_module_config config_n1sdp_flash = {
    .data = &((struct mod_n1sdp_flash_config) {
        .flash_base_address = SCP_QSPI_FLASH_BASE_ADDR,
        .flash_base_address_alt = SCP_QSPI_FLASH_BASE_ADDR_ALT,
        .toc_offset = 0x0,
    })
};