aboutsummaryrefslogtreecommitdiff
path: root/product/sgi575/module/sgi575_rom/include/mod_sgi575_rom.h
blob: aa6b8a6449166545a826dc3fd403e0a97ea61cdd (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) 2018-2019, Arm Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#ifndef MOD_SGI575_ROM_H
#define MOD_SGI575_ROM_H

#include <stdint.h>

/*!
 * \addtogroup GroupSGI575Module SGI575 Product Modules
 * @{
 */

/*!
 * \defgroup GroupSGI575 ROM Support
 * @{
 */

/*!
 * \brief Module configuration data.
 */
struct sgi575_rom_config {
    /*! Base address of the RAM firmware image */
    const uintptr_t ramfw_base;

    /*! Base address of the NOR flash memory */
    const uintptr_t nor_base;

    /*! The RAM size to load */
    const unsigned int load_ram_size;
};

/*!
 * @}
 */

/*!
 * @}
 */

#endif /* MOD_SGI575_ROM_H */