blob: c5a9610ec7d468425f8bbb70334152824cee8f3a [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 Glassa34b3eb2021-03-28 06:53:08 +13009struct udevice;
10
Simon Glassb2c1cac2014-02-26 15:59:21 -070011/**
12 * struct dm_test_cdata - configuration data for test instance
13 *
14 * @ping_add: Amonut to add each time we get a ping
15 * @base: Base address of this device
16 */
17struct dm_test_pdata {
18 int ping_add;
19 uint32_t base;
20};
21
22/**
23 * struct test_ops - Operations supported by the test device
24 *
25 * @ping: Ping operation
26 * @dev: Device to operate on
27 * @pingval: Value to ping the device with
28 * @pingret: Returns resulting value from driver
29 * @return 0 if OK, -ve on error
30 */
31struct test_ops {
Heiko Schocherb74fcb42014-05-22 12:43:05 +020032 int (*ping)(struct udevice *dev, int pingval, int *pingret);
Simon Glassb2c1cac2014-02-26 15:59:21 -070033};
34
35/* Operations that our test driver supports */
36enum {
37 DM_TEST_OP_BIND = 0,
38 DM_TEST_OP_UNBIND,
39 DM_TEST_OP_PROBE,
40 DM_TEST_OP_REMOVE,
41
42 /* For uclass */
43 DM_TEST_OP_POST_BIND,
44 DM_TEST_OP_PRE_UNBIND,
Simon Glass9c1f3822015-03-05 12:25:22 -070045 DM_TEST_OP_PRE_PROBE,
Simon Glassb2c1cac2014-02-26 15:59:21 -070046 DM_TEST_OP_POST_PROBE,
47 DM_TEST_OP_PRE_REMOVE,
48 DM_TEST_OP_INIT,
49 DM_TEST_OP_DESTROY,
50
51 DM_TEST_OP_COUNT,
52};
53
54/* Test driver types */
55enum {
56 DM_TEST_TYPE_FIRST = 0,
57 DM_TEST_TYPE_SECOND,
Simon Glass35cb2a42020-02-06 09:54:50 -070058
59 DM_TEST_TYPE_COUNT,
Simon Glassb2c1cac2014-02-26 15:59:21 -070060};
61
62/* The number added to the ping total on each probe */
63#define DM_TEST_START_TOTAL 5
64
65/**
66 * struct dm_test_priv - private data for the test devices
67 */
68struct dm_test_priv {
69 int ping_total;
70 int op_count[DM_TEST_OP_COUNT];
Simon Glass5104b982015-01-25 08:27:10 -070071 int uclass_flag;
72 int uclass_total;
Bin Mengd9bad172018-10-15 02:20:58 -070073 int uclass_postp;
Simon Glassb2c1cac2014-02-26 15:59:21 -070074};
75
76/**
77 * struct dm_test_perdev_class_priv - private per-device data for test uclass
78 */
79struct dm_test_uclass_perdev_priv {
80 int base_add;
81};
82
83/**
84 * struct dm_test_uclass_priv - private data for test uclass
85 */
86struct dm_test_uclass_priv {
87 int total_add;
88};
89
Simon Glass60d971b2014-07-23 06:55:20 -060090/**
91 * struct dm_test_parent_data - parent's information on each child
92 *
93 * @sum: Test value used to check parent data works correctly
Simon Glassd45560d2014-07-23 06:55:21 -060094 * @flag: Used to track calling of parent operations
Simon Glass5104b982015-01-25 08:27:10 -070095 * @uclass_flag: Used to track calling of parent operations by uclass
Simon Glass60d971b2014-07-23 06:55:20 -060096 */
97struct dm_test_parent_data {
98 int sum;
Simon Glassd45560d2014-07-23 06:55:21 -060099 int flag;
Simon Glass60d971b2014-07-23 06:55:20 -0600100};
101
Przemyslaw Marczak34cbe312015-04-15 13:07:19 +0200102/* Test values for test device's uclass platform data */
103enum {
104 TEST_UC_PDATA_INTVAL1 = 2,
105 TEST_UC_PDATA_INTVAL2 = 334,
106 TEST_UC_PDATA_INTVAL3 = 789452,
107};
108
109/**
110 * struct dm_test_uclass_platda - uclass's information on each device
111 *
112 * @intval1: set to TEST_UC_PDATA_INTVAL1 in .post_bind method of test uclass
113 * @intval2: set to TEST_UC_PDATA_INTVAL2 in .post_bind method of test uclass
114 * @intval3: set to TEST_UC_PDATA_INTVAL3 in .post_bind method of test uclass
115 */
116struct dm_test_perdev_uc_pdata {
117 int intval1;
118 int intval2;
119 int intval3;
120};
121
Simon Glassb2c1cac2014-02-26 15:59:21 -0700122/*
123 * Operation counts for the test driver, used to check that each method is
124 * called correctly
125 */
126extern int dm_testdrv_op_count[DM_TEST_OP_COUNT];
127
Joe Hershberger3a77be52015-05-20 14:27:27 -0500128extern struct unit_test_state global_dm_test_state;
Simon Glassb2c1cac2014-02-26 15:59:21 -0700129
130/*
131 * struct dm_test_state - Entire state of dm test system
132 *
133 * This is often abreviated to dms.
134 *
135 * @root: Root device
136 * @testdev: Test device
Simon Glassb2c1cac2014-02-26 15:59:21 -0700137 * @force_fail_alloc: Force all memory allocs to fail
138 * @skip_post_probe: Skip uclass post-probe processing
139 */
140struct dm_test_state {
Heiko Schocherb74fcb42014-05-22 12:43:05 +0200141 struct udevice *root;
142 struct udevice *testdev;
Simon Glassb2c1cac2014-02-26 15:59:21 -0700143 int force_fail_alloc;
144 int skip_post_probe;
145};
146
Simon Glassb2c1cac2014-02-26 15:59:21 -0700147/* Declare a new driver model test */
Joe Hershberger3a77be52015-05-20 14:27:27 -0500148#define DM_TEST(_name, _flags) UNIT_TEST(_name, _flags, dm_test)
Simon Glassb2c1cac2014-02-26 15:59:21 -0700149
Simon Glass4425bf42020-07-02 21:12:28 -0600150/*
151 * struct sandbox_sdl_plat - Platform data for the SDL video driver
152 *
153 * This platform data is needed in tests, so declare it here
154 *
155 * @xres: Width of display in pixels
156 * @yres: Height of display in pixels
157 * @bpix: Log2 of bits per pixel (enum video_log2_bpp)
158 * @rot: Console rotation (0=normal orientation, 1=90 degrees clockwise,
159 * 2=upside down, 3=90 degree counterclockwise)
160 * @vidconsole_drv_name: Name of video console driver (set by tests)
161 * @font_size: Console font size to select (set by tests)
162 */
Simon Glass90b6fef2016-01-18 19:52:26 -0700163struct sandbox_sdl_plat {
164 int xres;
165 int yres;
166 int bpix;
167 int rot;
Simon Glass69f617f2016-01-14 18:10:49 -0700168 const char *vidconsole_drv_name;
169 int font_size;
Simon Glass90b6fef2016-01-18 19:52:26 -0700170};
171
Simon Glass4bf89722020-12-23 08:11:18 -0700172/**
173 * struct dm_test_parent_plat - Used to track state in bus tests
174 *
175 * @count:
176 * @bind_flag: Indicates that the child post-bind method was called
177 * @uclass_bind_flag: Also indicates that the child post-bind method was called
178 */
179struct dm_test_parent_plat {
180 int count;
181 int bind_flag;
182 int uclass_bind_flag;
183};
184
185enum {
186 TEST_FLAG_CHILD_PROBED = 10,
187 TEST_FLAG_CHILD_REMOVED = -7,
188};
189
Simon Glassb2c1cac2014-02-26 15:59:21 -0700190/* Declare ping methods for the drivers */
Heiko Schocherb74fcb42014-05-22 12:43:05 +0200191int test_ping(struct udevice *dev, int pingval, int *pingret);
192int testfdt_ping(struct udevice *dev, int pingval, int *pingret);
Simon Glassb2c1cac2014-02-26 15:59:21 -0700193
194/**
195 * dm_check_operations() - Check that we can perform ping operations
196 *
197 * This checks that the ping operations work as expected for a device
198 *
199 * @dms: Overall test state
200 * @dev: Device to test
201 * @base: Base address, used to check ping return value
202 * @priv: Pointer to private test information
203 * @return 0 if OK, -ve on error
204 */
Joe Hershberger3a77be52015-05-20 14:27:27 -0500205int dm_check_operations(struct unit_test_state *uts, struct udevice *dev,
Simon Glassb2c1cac2014-02-26 15:59:21 -0700206 uint32_t base, struct dm_test_priv *priv);
207
208/**
Simon Glass40717422014-07-23 06:55:18 -0600209 * dm_check_devices() - check the devices respond to operations correctly
210 *
211 * @dms: Overall test state
212 * @num_devices: Number of test devices to check
213 * @return 0 if OK, -ve on error
214 */
Joe Hershberger3a77be52015-05-20 14:27:27 -0500215int dm_check_devices(struct unit_test_state *uts, int num_devices);
Simon Glass40717422014-07-23 06:55:18 -0600216
217/**
Simon Glass0927a6f2014-10-04 11:29:50 -0600218 * dm_leak_check_start() - Prepare to check for a memory leak
219 *
220 * Call this before allocating memory to record the amount of memory being
221 * used.
222 *
223 * @dms: Overall test state
224 */
Joe Hershberger3a77be52015-05-20 14:27:27 -0500225void dm_leak_check_start(struct unit_test_state *uts);
Simon Glass0927a6f2014-10-04 11:29:50 -0600226
227/**
228 * dm_leak_check_end() - Check that no memory has leaked
229 *
230 * Call this after dm_leak_check_start() and after you have hopefuilly freed
231 * all the memory that was allocated. This function will print an error if
232 * it sees a different amount of total memory allocated than before.
233 *
234 * @dms: Overall test state
Joe Hershberger3a77be52015-05-20 14:27:27 -0500235 */int dm_leak_check_end(struct unit_test_state *uts);
Simon Glass0927a6f2014-10-04 11:29:50 -0600236
Simon Glassb2c1cac2014-02-26 15:59:21 -0700237#endif