1 /*
2  * Copyright (C) 2022-2023, STMicroelectronics - All Rights Reserved
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef STM32MP_DDR_TEST_H
8 #define STM32MP_DDR_TEST_H
9 
10 #include <stdint.h>
11 
12 uintptr_t stm32mp_ddr_test_rw_access(void);
13 uintptr_t stm32mp_ddr_test_data_bus(void);
14 uintptr_t stm32mp_ddr_test_addr_bus(size_t size);
15 size_t stm32mp_ddr_check_size(void);
16 
17 #endif /* STM32MP_DDR_TEST_H */
18