mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 17:44:19 +00:00

These basic tests are generic and should be used independently of the driver, depending on the plaftorm characteristics. Change-Id: I38161b659ef2a23fd30a56e1c9b1bd98461a2fe4 Signed-off-by: Nicolas Le Bayon <nicolas.le.bayon@foss.st.com>
17 lines
400 B
C
17 lines
400 B
C
/*
|
|
* Copyright (C) 2022, STMicroelectronics - All Rights Reserved
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef STM32MP_DDR_TEST_H
|
|
#define STM32MP_DDR_TEST_H
|
|
|
|
#include <stdint.h>
|
|
|
|
uint32_t stm32mp_ddr_test_rw_access(void);
|
|
uint32_t stm32mp_ddr_test_data_bus(void);
|
|
uint32_t stm32mp_ddr_test_addr_bus(uint64_t size);
|
|
uint32_t stm32mp_ddr_check_size(void);
|
|
|
|
#endif /* STM32MP_DDR_TEST_H */
|