1 /*
2  * Arm SCP/MCP Software
3  * Copyright (c) 2019-2021, Arm Limited and Contributors. All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 
8 #ifndef MOD_JUNO_RAM_H
9 #define MOD_JUNO_RAM_H
10 
11 #include <fwk_id.h>
12 
13 /*!
14  * \ingroup GroupJunoModule
15  * \defgroup GroupJunoRAM Juno RAM
16  * \{
17  */
18 
19 /*!
20  * \brief Module configuration.
21  */
22 struct mod_juno_ram_config {
23     /*!
24      * \brief Identifier of the timer.
25      *
26      * \details Used for time-out when configuring the module's peripherals.
27      */
28     fwk_id_t timer_id;
29 };
30 
31 /*!
32  * \}
33  */
34 
35 #endif /* MOD_JUNO_RAM_H */
36