blob: e7dc01759e8e93814eb88bd46707d829f9d5ac05 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass20bf89a2012-02-15 15:51:15 -08002/*
3 * Copyright (c) 2011-2012 The Chromium OS Authors.
Simon Glass20bf89a2012-02-15 15:51:15 -08004 */
5
6#ifndef __SANDBOX_STATE_H
7#define __SANDBOX_STATE_H
8
Stephen Warren859f2562016-05-12 12:03:35 -06009#include <sysreset.h>
Simon Glassf498e432013-11-10 10:27:02 -070010#include <stdbool.h>
Simon Glassfc1ebd32018-09-15 00:50:56 -060011#include <linux/list.h>
Simon Glassd7c8d8d2013-11-10 10:27:04 -070012#include <linux/stringify.h>
Simon Glass8a3e0352012-02-15 15:51:16 -080013
Simon Glass678ef472014-02-27 13:26:22 -070014/**
15 * Selects the behavior of the serial terminal.
16 *
17 * If Ctrl-C is processed by U-Boot, then the only way to quit sandbox is with
18 * the 'reset' command, or equivalent.
19 *
20 * If the terminal is cooked, then Ctrl-C will terminate U-Boot, and the
21 * command line will not be quite such a faithful emulation.
22 *
23 * Options are:
24 *
25 * raw-with-sigs - Raw, but allow signals (Ctrl-C will quit)
26 * raw - Terminal is always raw
27 * cooked - Terminal is always cooked
28 */
29enum state_terminal_raw {
30 STATE_TERM_RAW_WITH_SIGS, /* Default */
31 STATE_TERM_RAW,
32 STATE_TERM_COOKED,
33
34 STATE_TERM_COUNT,
35};
36
Mike Frysinger1d8e57c2013-12-03 16:43:26 -070037struct sandbox_spi_info {
Simon Glass95429fe2014-10-13 23:41:57 -060038 struct udevice *emul;
Mike Frysinger1d8e57c2013-12-03 16:43:26 -070039};
40
maxims@google.comdaea6d42017-04-17 12:00:21 -070041struct sandbox_wdt_info {
42 unsigned long long counter;
43 uint reset_count;
44 bool running;
45};
46
Simon Glassfc1ebd32018-09-15 00:50:56 -060047/**
48 * struct sandbox_mapmem_entry - maps pointers to/from U-Boot addresses
49 *
50 * When map_to_sysmem() is called with an address outside sandbox's emulated
51 * RAM, a record is created with a tag that can be used to reference that
52 * pointer. When map_sysmem() is called later with that tag, the pointer will
53 * be returned, just as it would for a normal sandbox address.
54 *
55 * @tag: Address tag (a value which U-Boot uses to refer to the address)
Simon Glassfd332262024-09-01 16:26:27 -060056 * @refcnt: Number of references to this tag
Simon Glassfc1ebd32018-09-15 00:50:56 -060057 * @ptr: Associated pointer for that tag
Simon Glassfd332262024-09-01 16:26:27 -060058 * @sibling_node: Next node
Simon Glassfc1ebd32018-09-15 00:50:56 -060059 */
60struct sandbox_mapmem_entry {
61 ulong tag;
Simon Glassfd332262024-09-01 16:26:27 -060062 uint refcnt;
Simon Glassfc1ebd32018-09-15 00:50:56 -060063 void *ptr;
64 struct list_head sibling_node;
65};
66
Simon Glass20bf89a2012-02-15 15:51:15 -080067/* The complete state of the test system */
68struct sandbox_state {
69 const char *cmd; /* Command to execute */
Simon Glassf498e432013-11-10 10:27:02 -070070 bool interactive; /* Enable cmdline after execute */
Sjoerd Simons335f4702015-04-30 22:16:09 +020071 bool run_distro_boot; /* Automatically run distro bootcommands */
Simon Glass15393432013-04-20 08:42:41 +000072 const char *fdt_fname; /* Filename of FDT binary */
Simon Glass8a3e0352012-02-15 15:51:16 -080073 const char *parse_err; /* Error to report from parsing */
74 int argc; /* Program arguments */
Simon Glasse9906532014-02-27 13:26:16 -070075 char **argv; /* Command line arguments */
Simon Glassf0b534f2022-10-20 18:23:02 -060076 const char *jumped_fname; /* Jumped from previous U-Boot */
77 const char *prog_fname; /* U-Boot executable filename */
Simon Glass9dd10bf2013-11-10 10:27:03 -070078 uint8_t *ram_buf; /* Emulated RAM buffer */
Heinrich Schuchardtfff251e2020-06-07 18:47:35 +020079 unsigned long ram_size; /* Size of RAM buffer */
Simon Glass9dd10bf2013-11-10 10:27:03 -070080 const char *ram_buf_fname; /* Filename to use for RAM buffer */
Simon Glass47acfc62014-02-27 13:26:23 -070081 bool ram_buf_rm; /* Remove RAM buffer file after read */
Simon Glass9dd10bf2013-11-10 10:27:03 -070082 bool write_ram_buf; /* Write RAM buffer on exit */
Simon Glassd7c8d8d2013-11-10 10:27:04 -070083 const char *state_fname; /* File containing sandbox state */
84 void *state_fdt; /* Holds saved state for sandbox */
85 bool read_state; /* Read sandbox state on startup */
86 bool write_state; /* Write sandbox state on exit */
87 bool ignore_missing_state_on_read; /* No error if state missing */
Simon Glassb9ddbf42014-02-27 13:26:19 -070088 bool show_lcd; /* Show LCD on start-up */
Simon Glassf91de0b2020-02-03 07:36:13 -070089 bool double_lcd; /* Double display size for high-DPI */
Stephen Warren859f2562016-05-12 12:03:35 -060090 enum sysreset_t last_sysreset; /* Last system reset type */
91 bool sysreset_allowed[SYSRESET_COUNT]; /* Allowed system reset types */
Simon Glass678ef472014-02-27 13:26:22 -070092 enum state_terminal_raw term_raw; /* Terminal raw/cooked */
Simon Glassb25fa312015-11-08 23:47:43 -070093 bool skip_delays; /* Ignore any time delays (for test) */
Simon Glassfe6d12a2015-11-08 23:47:50 -070094 bool show_test_output; /* Don't suppress stdout in tests */
Simon Glass4e9a64d2018-10-01 11:55:11 -060095 int default_log_level; /* Default log level for sandbox */
Simon Glass24a284a2018-11-23 21:29:29 -070096 bool ram_buf_read; /* true if we read the RAM buffer */
Simon Glassa4e289b2020-10-25 20:38:28 -060097 bool run_unittests; /* Run unit tests */
Simon Glasseff96582020-10-25 20:38:33 -060098 const char *select_unittests; /* Unit test to run */
Simon Glassb78cc9b2021-03-22 18:21:01 +130099 bool handle_signals; /* Handle signals within sandbox */
Simon Glassd8c60172021-07-24 15:14:39 -0600100 bool autoboot_keyed; /* Use keyed-autoboot feature */
Simon Glass66014cc2023-01-17 10:47:27 -0700101 bool disable_eth; /* Disable Ethernet devices */
Simon Glass4937be02023-01-17 10:48:02 -0700102 bool disable_sf_bootdevs; /* Don't bind SPI flash bootdevs */
Simon Glass9736b712024-08-07 16:47:37 -0600103 bool upl; /* Enable Universal Payload (UPL) */
Mike Frysinger1d8e57c2013-12-03 16:43:26 -0700104
105 /* Pointer to information for each SPI bus/cs */
106 struct sandbox_spi_info spi[CONFIG_SANDBOX_SPI_MAX_BUS]
107 [CONFIG_SANDBOX_SPI_MAX_CS];
maxims@google.comdaea6d42017-04-17 12:00:21 -0700108
109 /* Information about Watchdog */
110 struct sandbox_wdt_info wdt;
Simon Glassfc1ebd32018-09-15 00:50:56 -0600111
112 ulong next_tag; /* Next address tag to allocate */
113 struct list_head mapmem_head; /* struct sandbox_mapmem_entry */
Benjamin Gaignarda550b542018-11-27 13:49:50 +0100114 bool hwspinlock; /* Hardware Spinlock status */
Simon Glass0a341a72019-09-25 08:56:09 -0600115 bool allow_memio; /* Allow readl() etc. to work */
Simon Glass17d133b2019-02-16 20:24:45 -0700116
Simon Glassf17b9672022-09-06 20:27:09 -0600117 void *other_fdt_buf; /* 'other' FDT blob used by tests */
118 int other_size; /* size of other FDT blob */
119
Simon Glass17d133b2019-02-16 20:24:45 -0700120 /*
121 * This struct is getting large.
122 *
123 * Consider putting test data in driver-private structs, like
124 * sandbox_pch.c.
125 *
126 * If you add new members, please put them above this comment.
127 */
Simon Glass20bf89a2012-02-15 15:51:15 -0800128};
129
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700130/* Minimum space we guarantee in the state FDT when calling read/write*/
131#define SANDBOX_STATE_MIN_SPACE 0x1000
132
133/**
134 * struct sandbox_state_io - methods to saved/restore sandbox state
135 * @name: Name of of the device tree node, also the name of the variable
136 * holding this data so it should be an identifier (use underscore
137 * instead of minus)
138 * @compat: Compatible string for the node containing this state
139 *
140 * @read: Function to read state from FDT
141 * If data is available, then blob and node will provide access to it. If
142 * not (blob == NULL and node == -1) this function should set up an empty
143 * data set for start-of-day.
144 * @param blob: Pointer to device tree blob, or NULL if no data to read
145 * @param node: Node offset to read from
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100146 * Return: 0 if OK, -ve on error
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700147 *
148 * @write: Function to write state to FDT
149 * The caller will ensure that there is a node ready for the state. The
150 * node may already contain the old state, in which case it should be
151 * overridden. There is guaranteed to be SANDBOX_STATE_MIN_SPACE bytes
152 * of free space, so error checking is not required for fdt_setprop...()
153 * calls which add up to less than this much space.
154 *
155 * For adding larger properties, use state_setprop().
156 *
157 * @param blob: Device tree blob holding state
158 * @param node: Node to write our state into
159 *
160 * Note that it is possible to save data as large blobs or as individual
161 * hierarchical properties. However, unless you intend to keep state files
162 * around for a long time and be able to run an old state file on a new
163 * sandbox, it might not be worth using individual properties for everything.
164 * This is certainly supported, it is just a matter of the effort you wish
165 * to put into the state read/write feature.
166 */
167struct sandbox_state_io {
168 const char *name;
169 const char *compat;
170 int (*write)(void *blob, int node);
171 int (*read)(const void *blob, int node);
172};
173
174/**
175 * SANDBOX_STATE_IO - Declare sandbox state to read/write
176 *
177 * Sandbox permits saving state from one run and restoring it in another. This
178 * allows the test system to retain state between runs and thus better
179 * emulate a real system. Examples of state that might be useful to save are
180 * the emulated GPIOs pin settings, flash memory contents and TPM private
181 * data. U-Boot memory contents is dealth with separately since it is large
182 * and it is not normally useful to save it (since a normal system does not
183 * preserve DRAM between runs). See the '-m' option for this.
184 *
185 * See struct sandbox_state_io above for member documentation.
186 */
187#define SANDBOX_STATE_IO(_name, _compat, _read, _write) \
188 ll_entry_declare(struct sandbox_state_io, _name, state_io) = { \
189 .name = __stringify(_name), \
190 .read = _read, \
191 .write = _write, \
192 .compat = _compat, \
193 }
194
Simon Glass20bf89a2012-02-15 15:51:15 -0800195/**
Simon Glass20bf89a2012-02-15 15:51:15 -0800196 * Gets a pointer to the current state.
197 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100198 * Return: pointer to state
Simon Glass20bf89a2012-02-15 15:51:15 -0800199 */
200struct sandbox_state *state_get_current(void);
201
202/**
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700203 * Read the sandbox state from the supplied device tree file
204 *
205 * This calls all registered state handlers to read in the sandbox state
206 * from a previous test run.
207 *
208 * @param state Sandbox state to update
209 * @param fname Filename of device tree file to read from
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100210 * Return: 0 if OK, -ve on error
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700211 */
212int sandbox_read_state(struct sandbox_state *state, const char *fname);
213
214/**
215 * Write the sandbox state to the supplied device tree file
216 *
217 * This calls all registered state handlers to write out the sandbox state
218 * so that it can be preserved for a future test run.
219 *
220 * If the file exists it is overwritten.
221 *
222 * @param state Sandbox state to update
223 * @param fname Filename of device tree file to write to
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100224 * Return: 0 if OK, -ve on error
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700225 */
226int sandbox_write_state(struct sandbox_state *state, const char *fname);
227
228/**
229 * Add a property to a sandbox state node
230 *
231 * This is equivalent to fdt_setprop except that it automatically enlarges
232 * the device tree if necessary. That means it is safe to write any amount
233 * of data here.
234 *
235 * This function can only be called from within struct sandbox_state_io's
236 * ->write method, i.e. within state I/O drivers.
237 *
238 * @param node Device tree node to write to
239 * @param prop_name Property to write
240 * @param data Data to write into property
241 * @param size Size of data to write into property
242 */
243int state_setprop(int node, const char *prop_name, const void *data, int size);
244
245/**
Simon Glassb25fa312015-11-08 23:47:43 -0700246 * Control skipping of time delays
247 *
248 * Some tests have unnecessay time delays (e.g. USB). Allow these to be
249 * skipped to speed up testing
250 *
251 * @param skip_delays true to skip delays from now on, false to honour delay
252 * requests
253 */
254void state_set_skip_delays(bool skip_delays);
255
256/**
257 * See if delays should be skipped
258 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100259 * Return: true if delays should be skipped, false if they should be honoured
Simon Glassb25fa312015-11-08 23:47:43 -0700260 */
261bool state_get_skip_delays(void);
262
263/**
Simon Glass36d08d822017-05-18 20:09:13 -0600264 * state_reset_for_test() - Reset ready to re-run tests
265 *
266 * This clears out any test state ready for another test run.
267 */
268void state_reset_for_test(struct sandbox_state *state);
269
270/**
Simon Glass46508c92018-11-15 18:44:03 -0700271 * state_show() - Show information about the sandbox state
272 *
273 * @param state Sandbox state to show
274 */
275void state_show(struct sandbox_state *state);
276
277/**
Simon Glassd74c4612022-09-06 20:27:08 -0600278 * state_get_rel_filename() - Get a filename relative to the executable
279 *
280 * This uses argv[0] to obtain a filename path
281 *
282 * @rel_path: Relative path to build, e.g. "arch/sandbox/dts/test.dtb". Must not
283 * have a trailing /
284 * @buf: Buffer to use to return the filename
285 * @size: Size of buffer
286 * @return length of filename (including terminator), -ENOSPC if @size is too
287 * small
288 */
289int state_get_rel_filename(const char *rel_path, char *buf, int size);
290
291/**
Simon Glassf17b9672022-09-06 20:27:09 -0600292 * state_load_other_fdt() - load the 'other' FDT into a buffer
293 *
294 * This loads the other.dtb file into a buffer. This is typically used in tests.
295 *
296 * @bufp: Place to put allocated buffer pointer. The buffer is read using
297 * os_read_file() which calls os_malloc(), so does affect U-Boot's own malloc()
298 * space
299 * @sizep: Returns the size of the buffer
300 * @return 0 if OK, -ve on error
301 */
302int state_load_other_fdt(const char **bufp, int *sizep);
303
304/**
Simon Glass20bf89a2012-02-15 15:51:15 -0800305 * Initialize the test system state
306 */
307int state_init(void);
308
Simon Glass9dd10bf2013-11-10 10:27:03 -0700309/**
310 * Uninitialize the test system state, writing out state if configured to
311 * do so.
312 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100313 * Return: 0 if OK, -ve on error
Simon Glass9dd10bf2013-11-10 10:27:03 -0700314 */
315int state_uninit(void);
316
Simon Glass20bf89a2012-02-15 15:51:15 -0800317#endif