blob: dc21a6231061841a47af95fe14e09944f5abc1e9 [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) */
Simon Glass51fbb592024-11-07 14:31:42 -0700104 bool native; /* Adjust to reflect host arch */
Mike Frysinger1d8e57c2013-12-03 16:43:26 -0700105
106 /* Pointer to information for each SPI bus/cs */
107 struct sandbox_spi_info spi[CONFIG_SANDBOX_SPI_MAX_BUS]
108 [CONFIG_SANDBOX_SPI_MAX_CS];
maxims@google.comdaea6d42017-04-17 12:00:21 -0700109
110 /* Information about Watchdog */
111 struct sandbox_wdt_info wdt;
Simon Glassfc1ebd32018-09-15 00:50:56 -0600112
113 ulong next_tag; /* Next address tag to allocate */
114 struct list_head mapmem_head; /* struct sandbox_mapmem_entry */
Benjamin Gaignarda550b542018-11-27 13:49:50 +0100115 bool hwspinlock; /* Hardware Spinlock status */
Simon Glass0a341a72019-09-25 08:56:09 -0600116 bool allow_memio; /* Allow readl() etc. to work */
Simon Glass17d133b2019-02-16 20:24:45 -0700117
Simon Glassf17b9672022-09-06 20:27:09 -0600118 void *other_fdt_buf; /* 'other' FDT blob used by tests */
119 int other_size; /* size of other FDT blob */
120
Simon Glass17d133b2019-02-16 20:24:45 -0700121 /*
122 * This struct is getting large.
123 *
124 * Consider putting test data in driver-private structs, like
125 * sandbox_pch.c.
126 *
127 * If you add new members, please put them above this comment.
128 */
Simon Glass20bf89a2012-02-15 15:51:15 -0800129};
130
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700131/* Minimum space we guarantee in the state FDT when calling read/write*/
132#define SANDBOX_STATE_MIN_SPACE 0x1000
133
134/**
135 * struct sandbox_state_io - methods to saved/restore sandbox state
136 * @name: Name of of the device tree node, also the name of the variable
137 * holding this data so it should be an identifier (use underscore
138 * instead of minus)
139 * @compat: Compatible string for the node containing this state
140 *
141 * @read: Function to read state from FDT
142 * If data is available, then blob and node will provide access to it. If
143 * not (blob == NULL and node == -1) this function should set up an empty
144 * data set for start-of-day.
145 * @param blob: Pointer to device tree blob, or NULL if no data to read
146 * @param node: Node offset to read from
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100147 * Return: 0 if OK, -ve on error
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700148 *
149 * @write: Function to write state to FDT
150 * The caller will ensure that there is a node ready for the state. The
151 * node may already contain the old state, in which case it should be
152 * overridden. There is guaranteed to be SANDBOX_STATE_MIN_SPACE bytes
153 * of free space, so error checking is not required for fdt_setprop...()
154 * calls which add up to less than this much space.
155 *
156 * For adding larger properties, use state_setprop().
157 *
158 * @param blob: Device tree blob holding state
159 * @param node: Node to write our state into
160 *
161 * Note that it is possible to save data as large blobs or as individual
162 * hierarchical properties. However, unless you intend to keep state files
163 * around for a long time and be able to run an old state file on a new
164 * sandbox, it might not be worth using individual properties for everything.
165 * This is certainly supported, it is just a matter of the effort you wish
166 * to put into the state read/write feature.
167 */
168struct sandbox_state_io {
169 const char *name;
170 const char *compat;
171 int (*write)(void *blob, int node);
172 int (*read)(const void *blob, int node);
173};
174
175/**
176 * SANDBOX_STATE_IO - Declare sandbox state to read/write
177 *
178 * Sandbox permits saving state from one run and restoring it in another. This
179 * allows the test system to retain state between runs and thus better
180 * emulate a real system. Examples of state that might be useful to save are
181 * the emulated GPIOs pin settings, flash memory contents and TPM private
182 * data. U-Boot memory contents is dealth with separately since it is large
183 * and it is not normally useful to save it (since a normal system does not
184 * preserve DRAM between runs). See the '-m' option for this.
185 *
186 * See struct sandbox_state_io above for member documentation.
187 */
188#define SANDBOX_STATE_IO(_name, _compat, _read, _write) \
189 ll_entry_declare(struct sandbox_state_io, _name, state_io) = { \
190 .name = __stringify(_name), \
191 .read = _read, \
192 .write = _write, \
193 .compat = _compat, \
194 }
195
Simon Glass20bf89a2012-02-15 15:51:15 -0800196/**
Simon Glass20bf89a2012-02-15 15:51:15 -0800197 * Gets a pointer to the current state.
198 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100199 * Return: pointer to state
Simon Glass20bf89a2012-02-15 15:51:15 -0800200 */
201struct sandbox_state *state_get_current(void);
202
203/**
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700204 * Read the sandbox state from the supplied device tree file
205 *
206 * This calls all registered state handlers to read in the sandbox state
207 * from a previous test run.
208 *
209 * @param state Sandbox state to update
210 * @param fname Filename of device tree file to read from
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100211 * Return: 0 if OK, -ve on error
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700212 */
213int sandbox_read_state(struct sandbox_state *state, const char *fname);
214
215/**
216 * Write the sandbox state to the supplied device tree file
217 *
218 * This calls all registered state handlers to write out the sandbox state
219 * so that it can be preserved for a future test run.
220 *
221 * If the file exists it is overwritten.
222 *
223 * @param state Sandbox state to update
224 * @param fname Filename of device tree file to write to
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100225 * Return: 0 if OK, -ve on error
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700226 */
227int sandbox_write_state(struct sandbox_state *state, const char *fname);
228
229/**
230 * Add a property to a sandbox state node
231 *
232 * This is equivalent to fdt_setprop except that it automatically enlarges
233 * the device tree if necessary. That means it is safe to write any amount
234 * of data here.
235 *
236 * This function can only be called from within struct sandbox_state_io's
237 * ->write method, i.e. within state I/O drivers.
238 *
239 * @param node Device tree node to write to
240 * @param prop_name Property to write
241 * @param data Data to write into property
242 * @param size Size of data to write into property
243 */
244int state_setprop(int node, const char *prop_name, const void *data, int size);
245
246/**
Simon Glassb25fa312015-11-08 23:47:43 -0700247 * Control skipping of time delays
248 *
249 * Some tests have unnecessay time delays (e.g. USB). Allow these to be
250 * skipped to speed up testing
251 *
252 * @param skip_delays true to skip delays from now on, false to honour delay
253 * requests
254 */
255void state_set_skip_delays(bool skip_delays);
256
257/**
258 * See if delays should be skipped
259 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100260 * Return: true if delays should be skipped, false if they should be honoured
Simon Glassb25fa312015-11-08 23:47:43 -0700261 */
262bool state_get_skip_delays(void);
263
264/**
Simon Glass36d08d822017-05-18 20:09:13 -0600265 * state_reset_for_test() - Reset ready to re-run tests
266 *
267 * This clears out any test state ready for another test run.
268 */
269void state_reset_for_test(struct sandbox_state *state);
270
271/**
Simon Glass46508c92018-11-15 18:44:03 -0700272 * state_show() - Show information about the sandbox state
273 *
274 * @param state Sandbox state to show
275 */
276void state_show(struct sandbox_state *state);
277
278/**
Simon Glassd74c4612022-09-06 20:27:08 -0600279 * state_get_rel_filename() - Get a filename relative to the executable
280 *
281 * This uses argv[0] to obtain a filename path
282 *
283 * @rel_path: Relative path to build, e.g. "arch/sandbox/dts/test.dtb". Must not
284 * have a trailing /
285 * @buf: Buffer to use to return the filename
286 * @size: Size of buffer
287 * @return length of filename (including terminator), -ENOSPC if @size is too
288 * small
289 */
290int state_get_rel_filename(const char *rel_path, char *buf, int size);
291
292/**
Simon Glassf17b9672022-09-06 20:27:09 -0600293 * state_load_other_fdt() - load the 'other' FDT into a buffer
294 *
295 * This loads the other.dtb file into a buffer. This is typically used in tests.
296 *
297 * @bufp: Place to put allocated buffer pointer. The buffer is read using
298 * os_read_file() which calls os_malloc(), so does affect U-Boot's own malloc()
299 * space
300 * @sizep: Returns the size of the buffer
301 * @return 0 if OK, -ve on error
302 */
303int state_load_other_fdt(const char **bufp, int *sizep);
304
305/**
Simon Glass20bf89a2012-02-15 15:51:15 -0800306 * Initialize the test system state
307 */
308int state_init(void);
309
Simon Glass9dd10bf2013-11-10 10:27:03 -0700310/**
311 * Uninitialize the test system state, writing out state if configured to
312 * do so.
313 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100314 * Return: 0 if OK, -ve on error
Simon Glass9dd10bf2013-11-10 10:27:03 -0700315 */
316int state_uninit(void);
317
Simon Glass20bf89a2012-02-15 15:51:15 -0800318#endif