1 /* 2 * Copyright (c) 2020 - 2024 Renesas Electronics Corporation and/or its affiliates 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef BSP_DDR_FW_PARAM_H 8 #define BSP_DDR_FW_PARAM_H 9 10 /*********************************************************************************************************************** 11 * Includes <System Includes> , "Project Includes" 12 **********************************************************************************************************************/ 13 #include <stdio.h> 14 #include "bsp_api.h" 15 16 #if (BSP_FEATURE_DDR_SUPPORTED) 17 #if (1 == BSP_CFG_DDR_INIT_ENABLE) 18 #include "bsp_ddr_fw_param.h" 19 20 /*********************************************************************************************************************** 21 * Exported global variables 22 **********************************************************************************************************************/ 23 extern const uint32_t phyinit_fw_1d[]; 24 extern const uint32_t phyinit_fw_2d[]; 25 26 #endif 27 #endif 28 29 #endif 30