blob: 249a9238fedccd0402aeb55d962f8dfb46381460 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassabae56d2014-10-13 23:42:10 -06002/*
3 * Copyright (C) 2013 Google, Inc
Simon Glassabae56d2014-10-13 23:42:10 -06004 */
5
Simon Glassabae56d2014-10-13 23:42:10 -06006#include <dm.h>
7#include <fdtdec.h>
8#include <spi.h>
9#include <spi_flash.h>
Joe Hershberger3a77be52015-05-20 14:27:27 -050010#include <asm/state.h>
Ovidiu Panait136a6dd2020-12-14 19:06:51 +020011#include <asm/test.h>
Simon Glassabae56d2014-10-13 23:42:10 -060012#include <dm/device-internal.h>
13#include <dm/test.h>
14#include <dm/uclass-internal.h>
Simon Glassabae56d2014-10-13 23:42:10 -060015#include <dm/util.h>
Simon Glass75c4d412020-07-19 10:15:37 -060016#include <test/test.h>
Joe Hershberger3a77be52015-05-20 14:27:27 -050017#include <test/ut.h>
Simon Glassabae56d2014-10-13 23:42:10 -060018
19/* Test that we can find buses and chip-selects */
Joe Hershberger3a77be52015-05-20 14:27:27 -050020static int dm_test_spi_find(struct unit_test_state *uts)
Simon Glassabae56d2014-10-13 23:42:10 -060021{
22 struct sandbox_state *state = state_get_current();
23 struct spi_slave *slave;
24 struct udevice *bus, *dev;
Ovidiu Panaitae734732020-12-14 19:06:47 +020025 const int busnum = 0, cs = 0, mode = 0, speed = 1000000, cs_b = 2;
Simon Glassabae56d2014-10-13 23:42:10 -060026 struct spi_cs_info info;
Simon Glassf3548632018-06-11 13:07:16 -060027 ofnode node;
Simon Glassabae56d2014-10-13 23:42:10 -060028
Simon Glassabae56d2014-10-13 23:42:10 -060029 /*
Simon Glass18230342016-07-05 17:10:10 -060030 * The post_bind() method will bind devices to chip selects. Check
31 * this then remove the emulation and the slave device.
Simon Glassabae56d2014-10-13 23:42:10 -060032 */
33 ut_asserteq(0, uclass_get_device_by_seq(UCLASS_SPI, busnum, &bus));
34 ut_assertok(spi_cs_info(bus, cs, &info));
Simon Glassf3548632018-06-11 13:07:16 -060035 node = dev_ofnode(info.dev);
Stefan Roese80b5bc92017-03-20 12:51:48 +010036 device_remove(info.dev, DM_REMOVE_NORMAL);
Simon Glassabae56d2014-10-13 23:42:10 -060037 device_unbind(info.dev);
38
39 /*
40 * Even though the device is gone, the sandbox SPI drivers always
41 * reports that CS 0 is present
42 */
43 ut_assertok(spi_cs_info(bus, cs, &info));
Simon Glass5d2ee052015-01-25 08:27:12 -070044 ut_asserteq_ptr(NULL, info.dev);
Simon Glassabae56d2014-10-13 23:42:10 -060045
46 /* This finds nothing because we removed the device */
47 ut_asserteq(-ENODEV, spi_find_bus_and_cs(busnum, cs, &bus, &dev));
Patrice Chotardf0c00df2022-03-30 09:33:15 +020048 ut_asserteq(-ENODEV, spi_get_bus_and_cs(busnum, cs, &bus, &slave));
Simon Glassabae56d2014-10-13 23:42:10 -060049
50 /*
51 * This forces the device to be re-added, but there is no emulation
52 * connected so the probe will fail. We require that bus is left
Patrice Chotard86e06ae2022-03-30 09:33:13 +020053 * alone on failure, and that the _spi_get_bus_and_cs() does not add
Simon Glassabae56d2014-10-13 23:42:10 -060054 * a 'partially-inited' device.
55 */
56 ut_asserteq(-ENODEV, spi_find_bus_and_cs(busnum, cs, &bus, &dev));
Patrice Chotard86e06ae2022-03-30 09:33:13 +020057 ut_asserteq(-ENOENT, _spi_get_bus_and_cs(busnum, cs, speed, mode,
58 "jedec_spi_nor", "name", &bus,
59 &slave));
Simon Glass5d2ee052015-01-25 08:27:12 -070060 sandbox_sf_unbind_emul(state_get_current(), busnum, cs);
Simon Glassabae56d2014-10-13 23:42:10 -060061 ut_assertok(spi_cs_info(bus, cs, &info));
Simon Glass5d2ee052015-01-25 08:27:12 -070062 ut_asserteq_ptr(NULL, info.dev);
Simon Glassabae56d2014-10-13 23:42:10 -060063
64 /* Add the emulation and try again */
Simon Glassf3548632018-06-11 13:07:16 -060065 ut_assertok(sandbox_sf_bind_emul(state, busnum, cs, bus, node,
Simon Glassabae56d2014-10-13 23:42:10 -060066 "name"));
67 ut_assertok(spi_find_bus_and_cs(busnum, cs, &bus, &dev));
Patrice Chotard86e06ae2022-03-30 09:33:13 +020068 ut_assertok(_spi_get_bus_and_cs(busnum, cs, speed, mode,
69 "jedec_spi_nor", "name", &bus, &slave));
Simon Glassabae56d2014-10-13 23:42:10 -060070
71 ut_assertok(spi_cs_info(bus, cs, &info));
72 ut_asserteq_ptr(info.dev, slave->dev);
73
74 /* We should be able to add something to another chip select */
Simon Glassf3548632018-06-11 13:07:16 -060075 ut_assertok(sandbox_sf_bind_emul(state, busnum, cs_b, bus, node,
Simon Glassabae56d2014-10-13 23:42:10 -060076 "name"));
Patrice Chotard86e06ae2022-03-30 09:33:13 +020077 ut_asserteq(-EINVAL, _spi_get_bus_and_cs(busnum, cs_b, speed, mode,
78 "jedec_spi_nor", "name", &bus,
79 &slave));
Bin Mengbb919a52019-09-09 06:00:03 -070080 ut_asserteq(-EINVAL, spi_cs_info(bus, cs_b, &info));
81 ut_asserteq_ptr(NULL, info.dev);
Simon Glassabae56d2014-10-13 23:42:10 -060082
83 /*
84 * Since we are about to destroy all devices, we must tell sandbox
85 * to forget the emulation device
86 */
87 sandbox_sf_unbind_emul(state_get_current(), busnum, cs);
88 sandbox_sf_unbind_emul(state_get_current(), busnum, cs_b);
89
90 return 0;
91}
Simon Glass1a92f832024-08-22 07:57:48 -060092DM_TEST(dm_test_spi_find, UTF_SCAN_PDATA | UTF_SCAN_FDT);
Simon Glassabae56d2014-10-13 23:42:10 -060093
Ovidiu Panait136a6dd2020-12-14 19:06:51 +020094/* dm_test_spi_switch_slaves - Helper function to check whether spi_claim_bus
95 * operates correctly with two spi slaves.
96 *
97 * Check that switching back and forth between two slaves claiming the bus
98 * will update dm_spi_bus->speed and sandbox_spi bus speed/mode correctly.
99 *
100 * @uts - unit test state
101 * @slave_a - first spi slave used for testing
102 * @slave_b - second spi slave used for testing
103 */
104static int dm_test_spi_switch_slaves(struct unit_test_state *uts,
105 struct spi_slave *slave_a,
106 struct spi_slave *slave_b)
107{
108 struct udevice *bus;
109 struct dm_spi_bus *bus_data;
110
111 /* Check that slaves are on the same bus */
112 ut_asserteq_ptr(dev_get_parent(slave_a->dev),
113 dev_get_parent(slave_b->dev));
114
115 bus = dev_get_parent(slave_a->dev);
116 bus_data = dev_get_uclass_priv(bus);
117
118 ut_assertok(spi_claim_bus(slave_a));
119 ut_asserteq(slave_a->max_hz, bus_data->speed);
120 ut_asserteq(slave_a->max_hz, sandbox_spi_get_speed(bus));
121 ut_asserteq(slave_a->mode, sandbox_spi_get_mode(bus));
122 spi_release_bus(slave_a);
123
124 ut_assertok(spi_claim_bus(slave_b));
125 ut_asserteq(slave_b->max_hz, bus_data->speed);
126 ut_asserteq(slave_b->max_hz, sandbox_spi_get_speed(bus));
127 ut_asserteq(slave_b->mode, sandbox_spi_get_mode(bus));
128 spi_release_bus(slave_b);
129
130 ut_assertok(spi_claim_bus(slave_a));
131 ut_asserteq(slave_a->max_hz, bus_data->speed);
132 ut_asserteq(slave_a->max_hz, sandbox_spi_get_speed(bus));
133 ut_asserteq(slave_a->mode, sandbox_spi_get_mode(bus));
134 spi_release_bus(slave_a);
135
136 return 0;
137}
138
139static int dm_test_spi_claim_bus(struct unit_test_state *uts)
140{
141 struct udevice *bus;
142 struct spi_slave *slave_a, *slave_b;
143 struct dm_spi_slave_plat *slave_plat;
Patrice Chotardf0c00df2022-03-30 09:33:15 +0200144 const int busnum = 0, cs_a = 0, cs_b = 1;
Ovidiu Panait136a6dd2020-12-14 19:06:51 +0200145
146 /* Get spi slave on CS0 */
Patrice Chotardf0c00df2022-03-30 09:33:15 +0200147 ut_assertok(spi_get_bus_and_cs(busnum, cs_a, &bus, &slave_a));
Ovidiu Panait136a6dd2020-12-14 19:06:51 +0200148 /* Get spi slave on CS1 */
Patrice Chotardf0c00df2022-03-30 09:33:15 +0200149 ut_assertok(spi_get_bus_and_cs(busnum, cs_b, &bus, &slave_b));
Ovidiu Panait136a6dd2020-12-14 19:06:51 +0200150
151 /* Different max_hz, different mode. */
152 ut_assert(slave_a->max_hz != slave_b->max_hz);
153 ut_assert(slave_a->mode != slave_b->mode);
154 dm_test_spi_switch_slaves(uts, slave_a, slave_b);
155
156 /* Different max_hz, same mode. */
157 slave_a->mode = slave_b->mode;
158 dm_test_spi_switch_slaves(uts, slave_a, slave_b);
159
160 /*
161 * Same max_hz, different mode.
162 * Restore original mode for slave_a, from platdata.
163 */
164 slave_plat = dev_get_parent_plat(slave_a->dev);
165 slave_a->mode = slave_plat->mode;
166 slave_a->max_hz = slave_b->max_hz;
167 dm_test_spi_switch_slaves(uts, slave_a, slave_b);
168
169 return 0;
170}
Simon Glass1a92f832024-08-22 07:57:48 -0600171DM_TEST(dm_test_spi_claim_bus, UTF_SCAN_PDATA | UTF_SCAN_FDT);
Ovidiu Panait136a6dd2020-12-14 19:06:51 +0200172
Simon Glassabae56d2014-10-13 23:42:10 -0600173/* Test that sandbox SPI works correctly */
Joe Hershberger3a77be52015-05-20 14:27:27 -0500174static int dm_test_spi_xfer(struct unit_test_state *uts)
Simon Glassabae56d2014-10-13 23:42:10 -0600175{
176 struct spi_slave *slave;
177 struct udevice *bus;
Patrice Chotardf0c00df2022-03-30 09:33:15 +0200178 const int busnum = 0, cs = 0;
Simon Glassabae56d2014-10-13 23:42:10 -0600179 const char dout[5] = {0x9f};
180 unsigned char din[5];
181
Patrice Chotardf0c00df2022-03-30 09:33:15 +0200182 ut_assertok(spi_get_bus_and_cs(busnum, cs, &bus, &slave));
Simon Glassabae56d2014-10-13 23:42:10 -0600183 ut_assertok(spi_claim_bus(slave));
184 ut_assertok(spi_xfer(slave, 40, dout, din,
185 SPI_XFER_BEGIN | SPI_XFER_END));
186 ut_asserteq(0xff, din[0]);
187 ut_asserteq(0x20, din[1]);
188 ut_asserteq(0x20, din[2]);
189 ut_asserteq(0x15, din[3]);
190 spi_release_bus(slave);
191
192 /*
193 * Since we are about to destroy all devices, we must tell sandbox
194 * to forget the emulation device
195 */
Lukasz Majewski76f442982020-06-04 23:11:53 +0800196#if CONFIG_IS_ENABLED(DM_SPI_FLASH)
Simon Glassabae56d2014-10-13 23:42:10 -0600197 sandbox_sf_unbind_emul(state_get_current(), busnum, cs);
198#endif
199
200 return 0;
201}
Simon Glass1a92f832024-08-22 07:57:48 -0600202DM_TEST(dm_test_spi_xfer, UTF_SCAN_PDATA | UTF_SCAN_FDT);