2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2014-10-14 05:42:11 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 Google, Inc
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2019-11-14 19:57:43 +00:00
|
|
|
#include <command.h>
|
2014-10-14 05:42:11 +00:00
|
|
|
#include <dm.h>
|
|
|
|
#include <fdtdec.h>
|
2018-11-06 22:21:40 +00:00
|
|
|
#include <mapmem.h>
|
|
|
|
#include <os.h>
|
2014-10-14 05:42:11 +00:00
|
|
|
#include <spi.h>
|
|
|
|
#include <spi_flash.h>
|
|
|
|
#include <asm/state.h>
|
2018-11-06 22:21:41 +00:00
|
|
|
#include <asm/test.h>
|
2014-10-14 05:42:11 +00:00
|
|
|
#include <dm/test.h>
|
|
|
|
#include <dm/util.h>
|
2020-07-19 16:15:37 +00:00
|
|
|
#include <test/test.h>
|
2015-05-20 19:27:27 +00:00
|
|
|
#include <test/ut.h>
|
2014-10-14 05:42:11 +00:00
|
|
|
|
2018-11-06 22:21:40 +00:00
|
|
|
/* Simple test of sandbox SPI flash */
|
2015-05-20 19:27:27 +00:00
|
|
|
static int dm_test_spi_flash(struct unit_test_state *uts)
|
2018-11-06 22:21:40 +00:00
|
|
|
{
|
2020-05-13 12:46:39 +00:00
|
|
|
struct udevice *dev;
|
2018-11-06 22:21:40 +00:00
|
|
|
int full_size = 0x200000;
|
|
|
|
int size = 0x10000;
|
|
|
|
u8 *src, *dst;
|
2019-10-21 03:31:47 +00:00
|
|
|
uint map_size;
|
|
|
|
ulong map_base;
|
|
|
|
uint offset;
|
2018-11-06 22:21:40 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
src = map_sysmem(0x20000, full_size);
|
|
|
|
ut_assertok(os_write_file("spi.bin", src, full_size));
|
|
|
|
ut_assertok(uclass_first_device_err(UCLASS_SPI_FLASH, &dev));
|
|
|
|
|
|
|
|
dst = map_sysmem(0x20000 + full_size, full_size);
|
|
|
|
ut_assertok(spi_flash_read_dm(dev, 0, size, dst));
|
2020-05-10 18:52:45 +00:00
|
|
|
ut_asserteq_mem(src, dst, size);
|
2018-11-06 22:21:40 +00:00
|
|
|
|
|
|
|
/* Erase */
|
|
|
|
ut_assertok(spi_flash_erase_dm(dev, 0, size));
|
|
|
|
ut_assertok(spi_flash_read_dm(dev, 0, size, dst));
|
|
|
|
for (i = 0; i < size; i++)
|
|
|
|
ut_asserteq(dst[i], 0xff);
|
|
|
|
|
|
|
|
/* Write some new data */
|
|
|
|
for (i = 0; i < size; i++)
|
|
|
|
src[i] = i;
|
|
|
|
ut_assertok(spi_flash_write_dm(dev, 0, size, src));
|
|
|
|
ut_assertok(spi_flash_read_dm(dev, 0, size, dst));
|
2020-05-10 18:52:45 +00:00
|
|
|
ut_asserteq_mem(src, dst, size);
|
2018-11-06 22:21:40 +00:00
|
|
|
|
2019-10-21 03:31:47 +00:00
|
|
|
/* Check mapping */
|
|
|
|
ut_assertok(dm_spi_get_mmap(dev, &map_base, &map_size, &offset));
|
|
|
|
ut_asserteq(0x1000, map_base);
|
|
|
|
ut_asserteq(0x2000, map_size);
|
|
|
|
ut_asserteq(0x100, offset);
|
|
|
|
|
2018-11-06 22:21:40 +00:00
|
|
|
/*
|
|
|
|
* Since we are about to destroy all devices, we must tell sandbox
|
|
|
|
* to forget the emulation device
|
|
|
|
*/
|
|
|
|
sandbox_sf_unbind_emul(state_get_current(), 0, 0);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2020-07-29 01:41:12 +00:00
|
|
|
DM_TEST(dm_test_spi_flash, UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT);
|
2018-11-06 22:21:40 +00:00
|
|
|
|
|
|
|
/* Functional test that sandbox SPI flash works correctly */
|
|
|
|
static int dm_test_spi_flash_func(struct unit_test_state *uts)
|
2014-10-14 05:42:11 +00:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Create an empty test file and run the SPI flash tests. This is a
|
|
|
|
* long way from being a unit test, but it does test SPI device and
|
|
|
|
* emulator binding, probing, the SPI flash emulator including
|
|
|
|
* device tree decoding, plus the file-based backing store of SPI.
|
|
|
|
*
|
|
|
|
* More targeted tests could be created to perform the above steps
|
|
|
|
* one at a time. This might not increase test coverage much, but
|
|
|
|
* it would make bugs easier to find. It's not clear whether the
|
|
|
|
* benefit is worth the extra complexity.
|
|
|
|
*/
|
|
|
|
ut_asserteq(0, run_command_list(
|
2018-11-16 01:44:02 +00:00
|
|
|
"host save hostfs - 0 spi.bin 200000;"
|
2014-10-14 05:42:11 +00:00
|
|
|
"sf probe;"
|
|
|
|
"sf test 0 10000", -1, 0));
|
|
|
|
/*
|
|
|
|
* Since we are about to destroy all devices, we must tell sandbox
|
|
|
|
* to forget the emulation device
|
|
|
|
*/
|
|
|
|
sandbox_sf_unbind_emul(state_get_current(), 0, 0);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2020-07-29 01:41:12 +00:00
|
|
|
DM_TEST(dm_test_spi_flash_func, UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT);
|