blob: 30f71edbd9618ce8b58861aa760875fcec47ca8e [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
Simon Glassc7b4b832021-02-03 06:01:20 -070074/* struct dm_test_uc_priv - private data for the testdrv uclass */
75struct dm_test_uc_priv {
76 int dummy;
77};
78
Simon Glassb2c1cac2014-02-26 15:59:21 -070079/**
80 * struct dm_test_perdev_class_priv - private per-device data for test uclass
81 */
82struct dm_test_uclass_perdev_priv {
83 int base_add;
84};
85
86/**
87 * struct dm_test_uclass_priv - private data for test uclass
88 */
89struct dm_test_uclass_priv {
90 int total_add;
91};
92
Simon Glass60d971b2014-07-23 06:55:20 -060093/**
94 * struct dm_test_parent_data - parent's information on each child
95 *
96 * @sum: Test value used to check parent data works correctly
Simon Glassd45560d2014-07-23 06:55:21 -060097 * @flag: Used to track calling of parent operations
Simon Glass5104b982015-01-25 08:27:10 -070098 * @uclass_flag: Used to track calling of parent operations by uclass
Simon Glass60d971b2014-07-23 06:55:20 -060099 */
100struct dm_test_parent_data {
101 int sum;
Simon Glassd45560d2014-07-23 06:55:21 -0600102 int flag;
Simon Glass60d971b2014-07-23 06:55:20 -0600103};
104
Przemyslaw Marczak34cbe312015-04-15 13:07:19 +0200105/* Test values for test device's uclass platform data */
106enum {
107 TEST_UC_PDATA_INTVAL1 = 2,
108 TEST_UC_PDATA_INTVAL2 = 334,
109 TEST_UC_PDATA_INTVAL3 = 789452,
110};
111
112/**
113 * struct dm_test_uclass_platda - uclass's information on each device
114 *
115 * @intval1: set to TEST_UC_PDATA_INTVAL1 in .post_bind method of test uclass
116 * @intval2: set to TEST_UC_PDATA_INTVAL2 in .post_bind method of test uclass
117 * @intval3: set to TEST_UC_PDATA_INTVAL3 in .post_bind method of test uclass
118 */
119struct dm_test_perdev_uc_pdata {
120 int intval1;
121 int intval2;
122 int intval3;
123};
124
Simon Glassb2c1cac2014-02-26 15:59:21 -0700125/*
126 * Operation counts for the test driver, used to check that each method is
127 * called correctly
128 */
129extern int dm_testdrv_op_count[DM_TEST_OP_COUNT];
130
Joe Hershberger3a77be52015-05-20 14:27:27 -0500131extern struct unit_test_state global_dm_test_state;
Simon Glassb2c1cac2014-02-26 15:59:21 -0700132
Simon Glassb2c1cac2014-02-26 15:59:21 -0700133/* Declare a new driver model test */
Simon Glassab1fca02021-03-07 17:34:45 -0700134#define DM_TEST(_name, _flags) \
Simon Glass0f8f6772021-03-07 17:34:49 -0700135 UNIT_TEST(_name, UT_TESTF_DM | UT_TESTF_CONSOLE_REC | (_flags), dm_test)
Simon Glassb2c1cac2014-02-26 15:59:21 -0700136
Simon Glass4425bf42020-07-02 21:12:28 -0600137/*
138 * struct sandbox_sdl_plat - Platform data for the SDL video driver
139 *
140 * This platform data is needed in tests, so declare it here
141 *
142 * @xres: Width of display in pixels
143 * @yres: Height of display in pixels
144 * @bpix: Log2 of bits per pixel (enum video_log2_bpp)
145 * @rot: Console rotation (0=normal orientation, 1=90 degrees clockwise,
146 * 2=upside down, 3=90 degree counterclockwise)
147 * @vidconsole_drv_name: Name of video console driver (set by tests)
148 * @font_size: Console font size to select (set by tests)
149 */
Simon Glass90b6fef2016-01-18 19:52:26 -0700150struct sandbox_sdl_plat {
151 int xres;
152 int yres;
153 int bpix;
154 int rot;
Simon Glass69f617f2016-01-14 18:10:49 -0700155 const char *vidconsole_drv_name;
156 int font_size;
Simon Glass90b6fef2016-01-18 19:52:26 -0700157};
158
Simon Glass4bf89722020-12-23 08:11:18 -0700159/**
160 * struct dm_test_parent_plat - Used to track state in bus tests
161 *
162 * @count:
163 * @bind_flag: Indicates that the child post-bind method was called
164 * @uclass_bind_flag: Also indicates that the child post-bind method was called
165 */
166struct dm_test_parent_plat {
167 int count;
168 int bind_flag;
169 int uclass_bind_flag;
170};
171
172enum {
173 TEST_FLAG_CHILD_PROBED = 10,
174 TEST_FLAG_CHILD_REMOVED = -7,
175};
176
Simon Glassb2c1cac2014-02-26 15:59:21 -0700177/* Declare ping methods for the drivers */
Heiko Schocherb74fcb42014-05-22 12:43:05 +0200178int test_ping(struct udevice *dev, int pingval, int *pingret);
179int testfdt_ping(struct udevice *dev, int pingval, int *pingret);
Simon Glassb2c1cac2014-02-26 15:59:21 -0700180
181/**
182 * dm_check_operations() - Check that we can perform ping operations
183 *
184 * This checks that the ping operations work as expected for a device
185 *
186 * @dms: Overall test state
187 * @dev: Device to test
188 * @base: Base address, used to check ping return value
189 * @priv: Pointer to private test information
190 * @return 0 if OK, -ve on error
191 */
Joe Hershberger3a77be52015-05-20 14:27:27 -0500192int dm_check_operations(struct unit_test_state *uts, struct udevice *dev,
Simon Glassb2c1cac2014-02-26 15:59:21 -0700193 uint32_t base, struct dm_test_priv *priv);
194
195/**
Simon Glass40717422014-07-23 06:55:18 -0600196 * dm_check_devices() - check the devices respond to operations correctly
197 *
198 * @dms: Overall test state
199 * @num_devices: Number of test devices to check
200 * @return 0 if OK, -ve on error
201 */
Joe Hershberger3a77be52015-05-20 14:27:27 -0500202int dm_check_devices(struct unit_test_state *uts, int num_devices);
Simon Glass40717422014-07-23 06:55:18 -0600203
204/**
Simon Glass0927a6f2014-10-04 11:29:50 -0600205 * dm_leak_check_start() - Prepare to check for a memory leak
206 *
207 * Call this before allocating memory to record the amount of memory being
208 * used.
209 *
210 * @dms: Overall test state
211 */
Joe Hershberger3a77be52015-05-20 14:27:27 -0500212void dm_leak_check_start(struct unit_test_state *uts);
Simon Glass0927a6f2014-10-04 11:29:50 -0600213
214/**
215 * dm_leak_check_end() - Check that no memory has leaked
216 *
217 * Call this after dm_leak_check_start() and after you have hopefuilly freed
218 * all the memory that was allocated. This function will print an error if
219 * it sees a different amount of total memory allocated than before.
220 *
221 * @dms: Overall test state
Joe Hershberger3a77be52015-05-20 14:27:27 -0500222 */int dm_leak_check_end(struct unit_test_state *uts);
Simon Glass0927a6f2014-10-04 11:29:50 -0600223
Simon Glassb2c1cac2014-02-26 15:59:21 -0700224#endif