blob: 3788d59052e448e878a734d2ba886fc97232e6d0 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass0ae0cb72014-10-13 23:42:11 -06002/*
3 * Copyright (C) 2013 Google, Inc
Simon Glass0ae0cb72014-10-13 23:42:11 -06004 */
5
6#include <common.h>
7#include <dm.h>
8#include <fdtdec.h>
Simon Glassf9d49f92018-11-06 15:21:40 -07009#include <mapmem.h>
10#include <os.h>
Simon Glass0ae0cb72014-10-13 23:42:11 -060011#include <spi.h>
12#include <spi_flash.h>
13#include <asm/state.h>
Simon Glassa58986c2018-11-06 15:21:41 -070014#include <asm/test.h>
Simon Glass0ae0cb72014-10-13 23:42:11 -060015#include <dm/test.h>
16#include <dm/util.h>
Joe Hershbergere721b882015-05-20 14:27:27 -050017#include <test/ut.h>
Simon Glass0ae0cb72014-10-13 23:42:11 -060018
Simon Glassf9d49f92018-11-06 15:21:40 -070019/* Simple test of sandbox SPI flash */
Joe Hershbergere721b882015-05-20 14:27:27 -050020static int dm_test_spi_flash(struct unit_test_state *uts)
Simon Glass0ae0cb72014-10-13 23:42:11 -060021{
Simon Glassf9d49f92018-11-06 15:21:40 -070022 struct udevice *dev, *emul;
23 int full_size = 0x200000;
24 int size = 0x10000;
25 u8 *src, *dst;
26 int i;
27
28 src = map_sysmem(0x20000, full_size);
29 ut_assertok(os_write_file("spi.bin", src, full_size));
30 ut_assertok(uclass_first_device_err(UCLASS_SPI_FLASH, &dev));
31
32 dst = map_sysmem(0x20000 + full_size, full_size);
33 ut_assertok(spi_flash_read_dm(dev, 0, size, dst));
34 ut_assertok(memcmp(src, dst, size));
35
36 /* Erase */
37 ut_assertok(spi_flash_erase_dm(dev, 0, size));
38 ut_assertok(spi_flash_read_dm(dev, 0, size, dst));
39 for (i = 0; i < size; i++)
40 ut_asserteq(dst[i], 0xff);
41
42 /* Write some new data */
43 for (i = 0; i < size; i++)
44 src[i] = i;
45 ut_assertok(spi_flash_write_dm(dev, 0, size, src));
46 ut_assertok(spi_flash_read_dm(dev, 0, size, dst));
47 ut_assertok(memcmp(src, dst, size));
48
Simon Glassa58986c2018-11-06 15:21:41 -070049 /* Try the write-protect stuff */
50 ut_assertok(uclass_first_device_err(UCLASS_SPI_EMUL, &emul));
51 ut_asserteq(0, spl_flash_get_sw_write_prot(dev));
52 sandbox_sf_set_block_protect(emul, 1);
53 ut_asserteq(1, spl_flash_get_sw_write_prot(dev));
54 sandbox_sf_set_block_protect(emul, 0);
55 ut_asserteq(0, spl_flash_get_sw_write_prot(dev));
56
Simon Glassf9d49f92018-11-06 15:21:40 -070057 /*
58 * Since we are about to destroy all devices, we must tell sandbox
59 * to forget the emulation device
60 */
61 sandbox_sf_unbind_emul(state_get_current(), 0, 0);
62
63 return 0;
64}
65DM_TEST(dm_test_spi_flash, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);
66
67/* Functional test that sandbox SPI flash works correctly */
68static int dm_test_spi_flash_func(struct unit_test_state *uts)
69{
Simon Glass0ae0cb72014-10-13 23:42:11 -060070 /*
71 * Create an empty test file and run the SPI flash tests. This is a
72 * long way from being a unit test, but it does test SPI device and
73 * emulator binding, probing, the SPI flash emulator including
74 * device tree decoding, plus the file-based backing store of SPI.
75 *
76 * More targeted tests could be created to perform the above steps
77 * one at a time. This might not increase test coverage much, but
78 * it would make bugs easier to find. It's not clear whether the
79 * benefit is worth the extra complexity.
80 */
81 ut_asserteq(0, run_command_list(
Simon Glass6d07d632018-11-15 18:44:02 -070082 "host save hostfs - 0 spi.bin 200000;"
Simon Glass0ae0cb72014-10-13 23:42:11 -060083 "sf probe;"
84 "sf test 0 10000", -1, 0));
85 /*
86 * Since we are about to destroy all devices, we must tell sandbox
87 * to forget the emulation device
88 */
89 sandbox_sf_unbind_emul(state_get_current(), 0, 0);
90
91 return 0;
92}
Simon Glassf9d49f92018-11-06 15:21:40 -070093DM_TEST(dm_test_spi_flash_func, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);