mirror of https://github.com/ARMmbed/mbed-os.git
102 lines
3.6 KiB
C++
102 lines
3.6 KiB
C++
/* mbed Microcontroller Library
|
|
* Copyright (c) 2018-2018 ARM Limited
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
/** \addtogroup hal_qspi
|
|
* @{
|
|
* \defgroup hal_qspi_tests Tests
|
|
* QSPI tests of the HAL.
|
|
* @{
|
|
*/
|
|
#ifndef MBED_QSPI_TEST_H
|
|
#define MBED_QSPI_TEST_H
|
|
|
|
#include "qspi_api.h"
|
|
#include "qspi_test_utils.h"
|
|
|
|
|
|
#if DEVICE_QSPI
|
|
|
|
/** Test that qspi_init/qspi_free can be called multiple times.
|
|
*
|
|
* Given board provides QSPI.
|
|
* When qspi_init/qspi_free is called multiple times.
|
|
* Then qspi_init/qspi_free are successfully performed (no exception is generated).
|
|
*
|
|
*/
|
|
void qspi_init_free_test(void);
|
|
|
|
/** Test qspi frequency setting.
|
|
*
|
|
* Given board provides QSPI, with QSPI already initialized.
|
|
* When set QSPI frequency.
|
|
* Then freguency setting is successfully performed (no exception is generated).
|
|
*
|
|
*/
|
|
void qspi_frequency_test(void);
|
|
|
|
/** Template for write/read tests
|
|
*
|
|
* Test single write/read operation of a block of data to/from the specific memory address
|
|
* Given board provides QSPI, with QSPI already initialized.
|
|
* When perform write and then read operations.
|
|
* Then data is successfully written and then read (no exception is generated) and the read data is valid.
|
|
*
|
|
* Test multiple write/read operation of a block of data to/from the same specific memory address
|
|
* Given board provides QSPI, with QSPI already initialized.
|
|
* When perform write and then read operations.
|
|
* Then data is successfully written and then read (no exception is generated) and the read data is valid.
|
|
*
|
|
* Test multiple adjacent write and single read operation of a block of data to/from the specific memory address
|
|
* Given board provides QSPI, with QSPI already initialized.
|
|
* When perform write and then read operations.
|
|
* Then data is successfully written and then read (no exception is generated) and the read data is valid.
|
|
*
|
|
* Test single write and multiple adjacent read operation of a block of data to/from the specific memory address
|
|
* Given board provides QSPI, with QSPI already initialized.
|
|
* When perform write and then read operations.
|
|
* Then data is successfully written and then read (no exception is generated) and the read data is valid.
|
|
*
|
|
*/
|
|
template < qspi_bus_width_t write_inst_width,
|
|
qspi_bus_width_t write_addr_width,
|
|
qspi_bus_width_t write_data_width,
|
|
qspi_bus_width_t write_alt_width,
|
|
unsigned int write_cmd,
|
|
qspi_address_size_t write_addr_size,
|
|
qspi_alt_size_t write_alt_size,
|
|
uint32_t write_count,
|
|
qspi_bus_width_t read_inst_width,
|
|
qspi_bus_width_t read_addr_width,
|
|
qspi_bus_width_t read_data_width,
|
|
qspi_bus_width_t read_alt_width,
|
|
unsigned int read_cmd,
|
|
int read_dummy_cycles,
|
|
qspi_address_size_t read_addr_size,
|
|
qspi_alt_size_t read_alt_size,
|
|
int frequency,
|
|
uint32_t read_count,
|
|
uint32_t test_count,
|
|
uint32_t data_size,
|
|
uint32_t flash_addr>
|
|
void qspi_write_read_test(void);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
/** @}*/
|
|
/** @}*/
|