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  * Description:
8  *     N1SDP DDR-PHY driver
9  */
10 #ifndef MOD_N1SDP_DDR_PHY_H
11 #define MOD_N1SDP_DDR_PHY_H
12 
13 #include <stdint.h>
14 
15 /*!
16  * \addtogroup GroupN1SDPModule N1SDP Product Modules
17  * \{
18  */
19 
20 /*!
21  * \defgroup GroupModuleN1SDPDDRPhy N1SDP DDR PHY Driver
22  *
23  * \brief Driver support for N1SDP DDR PHY instances.
24  *
25  * \{
26  */
27 
28 /*!
29  * \brief Element configuration.
30  */
31 struct mod_n1sdp_ddr_phy_element_config {
32     /*! Base address of a device configuration register. */
33     uintptr_t ddr;
34 };
35 
36 /*!
37  * \}
38  */
39 
40 /*!
41  * \}
42  */
43 
44 #endif /* MOD_N1SDP_DDR_PHY_H */
45