aboutsummaryrefslogtreecommitdiff
path: root/product/rddanielxlr/module/mscp_rom/include/mod_mscp_rom.h
blob: 1cf3be618c6f20f4fe0163672ae3c72deac489f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
 * Arm SCP/MCP Software
 * Copyright (c) 2020, Arm Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#ifndef MOD_MSCP_ROM_H
#define MOD_MSCP_ROM_H

#include <stdint.h>

/*!
 * \addtogroup GroupSCPModule MSCP Product Modules
 * \{
 */

/*!
 * \defgroup GroupSCP ROM Support
 * \{
 */

/*!
 * \brief Module configuration data.
 */
struct mscp_rom_config {
    /*! Base address in RAM at which RAM firmware image has to be loaded */
    const uintptr_t ramfw_ram_base;

    /*! Base address of RAM firmware image on the NOR flash memory */
    const uintptr_t ramfw_flash_base;

    /*! The size of the RAM firmware image on the NOR flash memory */
    const unsigned int ramfw_flash_size;
};

/*!
 * \}
 */

/*!
 * \}
 */

#endif /* MOD_MSCP_ROM_H */