blob: 9e7dead684d34a0158aa3b0fde522fb389b8866a [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass25348a42014-10-13 23:42:11 -06002/*
3 * Copyright (C) 2013 Google, Inc
Simon Glass25348a42014-10-13 23:42:11 -06004 */
5
6#include <common.h>
Simon Glassadaaa482019-11-14 12:57:43 -07007#include <command.h>
Simon Glass25348a42014-10-13 23:42:11 -06008#include <dm.h>
9#include <fdtdec.h>
Simon Glass90fcfb12018-11-06 15:21:40 -070010#include <mapmem.h>
11#include <os.h>
Simon Glass25348a42014-10-13 23:42:11 -060012#include <spi.h>
13#include <spi_flash.h>
14#include <asm/state.h>
Simon Glass36eee8c2018-11-06 15:21:41 -070015#include <asm/test.h>
Simon Glass25348a42014-10-13 23:42:11 -060016#include <dm/test.h>
17#include <dm/util.h>
Joe Hershberger3a77be52015-05-20 14:27:27 -050018#include <test/ut.h>
Simon Glass25348a42014-10-13 23:42:11 -060019
Simon Glass90fcfb12018-11-06 15:21:40 -070020/* Simple test of sandbox SPI flash */
Joe Hershberger3a77be52015-05-20 14:27:27 -050021static int dm_test_spi_flash(struct unit_test_state *uts)
Simon Glass25348a42014-10-13 23:42:11 -060022{
Jagan Tekie58ca242020-05-13 18:16:39 +053023 struct udevice *dev;
Simon Glass90fcfb12018-11-06 15:21:40 -070024 int full_size = 0x200000;
25 int size = 0x10000;
26 u8 *src, *dst;
Simon Glass37ad0fe2019-10-20 21:31:47 -060027 uint map_size;
28 ulong map_base;
29 uint offset;
Simon Glass90fcfb12018-11-06 15:21:40 -070030 int i;
31
32 src = map_sysmem(0x20000, full_size);
33 ut_assertok(os_write_file("spi.bin", src, full_size));
34 ut_assertok(uclass_first_device_err(UCLASS_SPI_FLASH, &dev));
35
36 dst = map_sysmem(0x20000 + full_size, full_size);
37 ut_assertok(spi_flash_read_dm(dev, 0, size, dst));
Simon Glassa3186e62020-05-10 12:52:45 -060038 ut_asserteq_mem(src, dst, size);
Simon Glass90fcfb12018-11-06 15:21:40 -070039
40 /* Erase */
41 ut_assertok(spi_flash_erase_dm(dev, 0, size));
42 ut_assertok(spi_flash_read_dm(dev, 0, size, dst));
43 for (i = 0; i < size; i++)
44 ut_asserteq(dst[i], 0xff);
45
46 /* Write some new data */
47 for (i = 0; i < size; i++)
48 src[i] = i;
49 ut_assertok(spi_flash_write_dm(dev, 0, size, src));
50 ut_assertok(spi_flash_read_dm(dev, 0, size, dst));
Simon Glassa3186e62020-05-10 12:52:45 -060051 ut_asserteq_mem(src, dst, size);
Simon Glass90fcfb12018-11-06 15:21:40 -070052
Simon Glass37ad0fe2019-10-20 21:31:47 -060053 /* Check mapping */
54 ut_assertok(dm_spi_get_mmap(dev, &map_base, &map_size, &offset));
55 ut_asserteq(0x1000, map_base);
56 ut_asserteq(0x2000, map_size);
57 ut_asserteq(0x100, offset);
58
Simon Glass90fcfb12018-11-06 15:21:40 -070059 /*
60 * Since we are about to destroy all devices, we must tell sandbox
61 * to forget the emulation device
62 */
63 sandbox_sf_unbind_emul(state_get_current(), 0, 0);
64
65 return 0;
66}
67DM_TEST(dm_test_spi_flash, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);
68
69/* Functional test that sandbox SPI flash works correctly */
70static int dm_test_spi_flash_func(struct unit_test_state *uts)
71{
Simon Glass25348a42014-10-13 23:42:11 -060072 /*
73 * Create an empty test file and run the SPI flash tests. This is a
74 * long way from being a unit test, but it does test SPI device and
75 * emulator binding, probing, the SPI flash emulator including
76 * device tree decoding, plus the file-based backing store of SPI.
77 *
78 * More targeted tests could be created to perform the above steps
79 * one at a time. This might not increase test coverage much, but
80 * it would make bugs easier to find. It's not clear whether the
81 * benefit is worth the extra complexity.
82 */
83 ut_asserteq(0, run_command_list(
Simon Glassf250d472018-11-15 18:44:02 -070084 "host save hostfs - 0 spi.bin 200000;"
Simon Glass25348a42014-10-13 23:42:11 -060085 "sf probe;"
86 "sf test 0 10000", -1, 0));
87 /*
88 * Since we are about to destroy all devices, we must tell sandbox
89 * to forget the emulation device
90 */
91 sandbox_sf_unbind_emul(state_get_current(), 0, 0);
92
93 return 0;
94}
Simon Glass90fcfb12018-11-06 15:21:40 -070095DM_TEST(dm_test_spi_flash_func, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);