blob: 2c92d412781ac3c80c403651878896807433deab [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glassb2c1cac2014-02-26 15:59:21 -07002/*
3 * Copyright (c) 2013 Google, Inc.
Simon Glassb2c1cac2014-02-26 15:59:21 -07004 */
5
6#ifndef __DM_TEST_H
7#define __DM_TEST_H
8
Simon Glassb2c1cac2014-02-26 15:59:21 -07009/**
10 * struct dm_test_cdata - configuration data for test instance
11 *
12 * @ping_add: Amonut to add each time we get a ping
13 * @base: Base address of this device
14 */
15struct dm_test_pdata {
16 int ping_add;
17 uint32_t base;
18};
19
20/**
21 * struct test_ops - Operations supported by the test device
22 *
23 * @ping: Ping operation
24 * @dev: Device to operate on
25 * @pingval: Value to ping the device with
26 * @pingret: Returns resulting value from driver
27 * @return 0 if OK, -ve on error
28 */
29struct test_ops {
Heiko Schocherb74fcb42014-05-22 12:43:05 +020030 int (*ping)(struct udevice *dev, int pingval, int *pingret);
Simon Glassb2c1cac2014-02-26 15:59:21 -070031};
32
33/* Operations that our test driver supports */
34enum {
35 DM_TEST_OP_BIND = 0,
36 DM_TEST_OP_UNBIND,
37 DM_TEST_OP_PROBE,
38 DM_TEST_OP_REMOVE,
39
40 /* For uclass */
41 DM_TEST_OP_POST_BIND,
42 DM_TEST_OP_PRE_UNBIND,
Simon Glass9c1f3822015-03-05 12:25:22 -070043 DM_TEST_OP_PRE_PROBE,
Simon Glassb2c1cac2014-02-26 15:59:21 -070044 DM_TEST_OP_POST_PROBE,
45 DM_TEST_OP_PRE_REMOVE,
46 DM_TEST_OP_INIT,
47 DM_TEST_OP_DESTROY,
48
49 DM_TEST_OP_COUNT,
50};
51
52/* Test driver types */
53enum {
54 DM_TEST_TYPE_FIRST = 0,
55 DM_TEST_TYPE_SECOND,
Simon Glass35cb2a42020-02-06 09:54:50 -070056
57 DM_TEST_TYPE_COUNT,
Simon Glassb2c1cac2014-02-26 15:59:21 -070058};
59
60/* The number added to the ping total on each probe */
61#define DM_TEST_START_TOTAL 5
62
63/**
64 * struct dm_test_priv - private data for the test devices
65 */
66struct dm_test_priv {
67 int ping_total;
68 int op_count[DM_TEST_OP_COUNT];
Simon Glass5104b982015-01-25 08:27:10 -070069 int uclass_flag;
70 int uclass_total;
Bin Mengd9bad172018-10-15 02:20:58 -070071 int uclass_postp;
Simon Glassb2c1cac2014-02-26 15:59:21 -070072};
73
74/**
75 * struct dm_test_perdev_class_priv - private per-device data for test uclass
76 */
77struct dm_test_uclass_perdev_priv {
78 int base_add;
79};
80
81/**
82 * struct dm_test_uclass_priv - private data for test uclass
83 */
84struct dm_test_uclass_priv {
85 int total_add;
86};
87
Simon Glass60d971b2014-07-23 06:55:20 -060088/**
89 * struct dm_test_parent_data - parent's information on each child
90 *
91 * @sum: Test value used to check parent data works correctly
Simon Glassd45560d2014-07-23 06:55:21 -060092 * @flag: Used to track calling of parent operations
Simon Glass5104b982015-01-25 08:27:10 -070093 * @uclass_flag: Used to track calling of parent operations by uclass
Simon Glass60d971b2014-07-23 06:55:20 -060094 */
95struct dm_test_parent_data {
96 int sum;
Simon Glassd45560d2014-07-23 06:55:21 -060097 int flag;
Simon Glass60d971b2014-07-23 06:55:20 -060098};
99
Przemyslaw Marczak34cbe312015-04-15 13:07:19 +0200100/* Test values for test device's uclass platform data */
101enum {
102 TEST_UC_PDATA_INTVAL1 = 2,
103 TEST_UC_PDATA_INTVAL2 = 334,
104 TEST_UC_PDATA_INTVAL3 = 789452,
105};
106
107/**
108 * struct dm_test_uclass_platda - uclass's information on each device
109 *
110 * @intval1: set to TEST_UC_PDATA_INTVAL1 in .post_bind method of test uclass
111 * @intval2: set to TEST_UC_PDATA_INTVAL2 in .post_bind method of test uclass
112 * @intval3: set to TEST_UC_PDATA_INTVAL3 in .post_bind method of test uclass
113 */
114struct dm_test_perdev_uc_pdata {
115 int intval1;
116 int intval2;
117 int intval3;
118};
119
Simon Glassb2c1cac2014-02-26 15:59:21 -0700120/*
121 * Operation counts for the test driver, used to check that each method is
122 * called correctly
123 */
124extern int dm_testdrv_op_count[DM_TEST_OP_COUNT];
125
Joe Hershberger3a77be52015-05-20 14:27:27 -0500126extern struct unit_test_state global_dm_test_state;
Simon Glassb2c1cac2014-02-26 15:59:21 -0700127
128/*
129 * struct dm_test_state - Entire state of dm test system
130 *
131 * This is often abreviated to dms.
132 *
133 * @root: Root device
134 * @testdev: Test device
Simon Glassb2c1cac2014-02-26 15:59:21 -0700135 * @force_fail_alloc: Force all memory allocs to fail
136 * @skip_post_probe: Skip uclass post-probe processing
Simon Glassd45560d2014-07-23 06:55:21 -0600137 * @removed: Used to keep track of a device that was removed
Simon Glassb2c1cac2014-02-26 15:59:21 -0700138 */
139struct dm_test_state {
Heiko Schocherb74fcb42014-05-22 12:43:05 +0200140 struct udevice *root;
141 struct udevice *testdev;
Simon Glassb2c1cac2014-02-26 15:59:21 -0700142 int force_fail_alloc;
143 int skip_post_probe;
Simon Glassd45560d2014-07-23 06:55:21 -0600144 struct udevice *removed;
Simon Glassb2c1cac2014-02-26 15:59:21 -0700145};
146
147/* Test flags for each test */
148enum {
149 DM_TESTF_SCAN_PDATA = 1 << 0, /* test needs platform data */
150 DM_TESTF_PROBE_TEST = 1 << 1, /* probe test uclass */
151 DM_TESTF_SCAN_FDT = 1 << 2, /* scan device tree */
Simon Glass017886b2017-05-18 20:09:17 -0600152 DM_TESTF_FLAT_TREE = 1 << 3, /* test needs flat DT */
153 DM_TESTF_LIVE_TREE = 1 << 4, /* needs live device tree */
Simon Glassb2c1cac2014-02-26 15:59:21 -0700154};
155
Simon Glassb2c1cac2014-02-26 15:59:21 -0700156/* Declare a new driver model test */
Joe Hershberger3a77be52015-05-20 14:27:27 -0500157#define DM_TEST(_name, _flags) UNIT_TEST(_name, _flags, dm_test)
Simon Glassb2c1cac2014-02-26 15:59:21 -0700158
Simon Glass4425bf42020-07-02 21:12:28 -0600159/*
160 * struct sandbox_sdl_plat - Platform data for the SDL video driver
161 *
162 * This platform data is needed in tests, so declare it here
163 *
164 * @xres: Width of display in pixels
165 * @yres: Height of display in pixels
166 * @bpix: Log2 of bits per pixel (enum video_log2_bpp)
167 * @rot: Console rotation (0=normal orientation, 1=90 degrees clockwise,
168 * 2=upside down, 3=90 degree counterclockwise)
169 * @vidconsole_drv_name: Name of video console driver (set by tests)
170 * @font_size: Console font size to select (set by tests)
171 */
Simon Glass90b6fef2016-01-18 19:52:26 -0700172struct sandbox_sdl_plat {
173 int xres;
174 int yres;
175 int bpix;
176 int rot;
Simon Glass69f617f2016-01-14 18:10:49 -0700177 const char *vidconsole_drv_name;
178 int font_size;
Simon Glass90b6fef2016-01-18 19:52:26 -0700179};
180
Simon Glassb2c1cac2014-02-26 15:59:21 -0700181/* Declare ping methods for the drivers */
Heiko Schocherb74fcb42014-05-22 12:43:05 +0200182int test_ping(struct udevice *dev, int pingval, int *pingret);
183int testfdt_ping(struct udevice *dev, int pingval, int *pingret);
Simon Glassb2c1cac2014-02-26 15:59:21 -0700184
185/**
186 * dm_check_operations() - Check that we can perform ping operations
187 *
188 * This checks that the ping operations work as expected for a device
189 *
190 * @dms: Overall test state
191 * @dev: Device to test
192 * @base: Base address, used to check ping return value
193 * @priv: Pointer to private test information
194 * @return 0 if OK, -ve on error
195 */
Joe Hershberger3a77be52015-05-20 14:27:27 -0500196int dm_check_operations(struct unit_test_state *uts, struct udevice *dev,
Simon Glassb2c1cac2014-02-26 15:59:21 -0700197 uint32_t base, struct dm_test_priv *priv);
198
199/**
Simon Glass40717422014-07-23 06:55:18 -0600200 * dm_check_devices() - check the devices respond to operations correctly
201 *
202 * @dms: Overall test state
203 * @num_devices: Number of test devices to check
204 * @return 0 if OK, -ve on error
205 */
Joe Hershberger3a77be52015-05-20 14:27:27 -0500206int dm_check_devices(struct unit_test_state *uts, int num_devices);
Simon Glass40717422014-07-23 06:55:18 -0600207
208/**
Simon Glass0927a6f2014-10-04 11:29:50 -0600209 * dm_leak_check_start() - Prepare to check for a memory leak
210 *
211 * Call this before allocating memory to record the amount of memory being
212 * used.
213 *
214 * @dms: Overall test state
215 */
Joe Hershberger3a77be52015-05-20 14:27:27 -0500216void dm_leak_check_start(struct unit_test_state *uts);
Simon Glass0927a6f2014-10-04 11:29:50 -0600217
218/**
219 * dm_leak_check_end() - Check that no memory has leaked
220 *
221 * Call this after dm_leak_check_start() and after you have hopefuilly freed
222 * all the memory that was allocated. This function will print an error if
223 * it sees a different amount of total memory allocated than before.
224 *
225 * @dms: Overall test state
Joe Hershberger3a77be52015-05-20 14:27:27 -0500226 */int dm_leak_check_end(struct unit_test_state *uts);
Simon Glass0927a6f2014-10-04 11:29:50 -0600227
Simon Glassb2c1cac2014-02-26 15:59:21 -0700228#endif