]> Git Repo - u-boot.git/blob - include/dm/test.h
02737411a164051d76220cd697288dd401096705
[u-boot.git] / include / dm / test.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (c) 2013 Google, Inc.
4  */
5
6 #ifndef __DM_TEST_H
7 #define __DM_TEST_H
8
9 #include <linux/types.h>
10
11 struct udevice;
12
13 /**
14  * struct dm_test_cdata - configuration data for test instance
15  *
16  * @ping_add: Amonut to add each time we get a ping
17  * @base: Base address of this device
18  */
19 struct dm_test_pdata {
20         int ping_add;
21         uint32_t base;
22 };
23
24 /**
25  * struct test_ops - Operations supported by the test device
26  *
27  * @ping: Ping operation
28  *      @dev: Device to operate on
29  *      @pingval: Value to ping the device with
30  *      @pingret: Returns resulting value from driver
31  *      Return: 0 if OK, -ve on error
32  */
33 struct test_ops {
34         int (*ping)(struct udevice *dev, int pingval, int *pingret);
35 };
36
37 /* Operations that our test driver supports */
38 enum {
39         DM_TEST_OP_BIND = 0,
40         DM_TEST_OP_UNBIND,
41         DM_TEST_OP_PROBE,
42         DM_TEST_OP_REMOVE,
43
44         /* For uclass */
45         DM_TEST_OP_POST_BIND,
46         DM_TEST_OP_PRE_UNBIND,
47         DM_TEST_OP_PRE_PROBE,
48         DM_TEST_OP_POST_PROBE,
49         DM_TEST_OP_PRE_REMOVE,
50         DM_TEST_OP_INIT,
51         DM_TEST_OP_DESTROY,
52
53         DM_TEST_OP_COUNT,
54 };
55
56 /* Test driver types */
57 enum {
58         DM_TEST_TYPE_FIRST = 0,
59         DM_TEST_TYPE_SECOND,
60
61         DM_TEST_TYPE_COUNT,
62 };
63
64 /* The number added to the ping total on each probe */
65 #define DM_TEST_START_TOTAL     5
66
67 /**
68  * struct dm_test_priv - private data for the test devices
69  */
70 struct dm_test_priv {
71         int ping_total;
72         int op_count[DM_TEST_OP_COUNT];
73         int uclass_flag;
74         int uclass_total;
75         int uclass_postp;
76 };
77
78 /* struct dm_test_uc_priv - private data for the testdrv uclass */
79 struct dm_test_uc_priv {
80         int dummy;
81 };
82
83 /**
84  * struct dm_test_perdev_class_priv - private per-device data for test uclass
85  */
86 struct dm_test_uclass_perdev_priv {
87         int base_add;
88 };
89
90 /**
91  * struct dm_test_uclass_priv - private data for test uclass
92  */
93 struct dm_test_uclass_priv {
94         int total_add;
95 };
96
97 /**
98  * struct dm_test_uclass_plat - private plat data for test uclass
99  */
100 struct dm_test_uclass_plat {
101         char dummy[32];
102 };
103
104 /**
105  * struct dm_test_parent_data - parent's information on each child
106  *
107  * @sum: Test value used to check parent data works correctly
108  * @flag: Used to track calling of parent operations
109  * @uclass_flag: Used to track calling of parent operations by uclass
110  */
111 struct dm_test_parent_data {
112         int sum;
113         int flag;
114 };
115
116 /* Test values for test device's uclass platform data */
117 enum {
118         TEST_UC_PDATA_INTVAL1 = 2,
119         TEST_UC_PDATA_INTVAL2 = 334,
120         TEST_UC_PDATA_INTVAL3 = 789452,
121 };
122
123 /**
124  * struct dm_test_uclass_platda - uclass's information on each device
125  *
126  * @intval1: set to TEST_UC_PDATA_INTVAL1 in .post_bind method of test uclass
127  * @intval2: set to TEST_UC_PDATA_INTVAL2 in .post_bind method of test uclass
128  * @intval3: set to TEST_UC_PDATA_INTVAL3 in .post_bind method of test uclass
129  */
130 struct dm_test_perdev_uc_pdata {
131         int intval1;
132         int intval2;
133         int intval3;
134 };
135
136 /*
137  * Operation counts for the test driver, used to check that each method is
138  * called correctly
139  */
140 extern int dm_testdrv_op_count[DM_TEST_OP_COUNT];
141
142 extern struct unit_test_state global_dm_test_state;
143
144 /* Declare a new driver model test */
145 #define DM_TEST(_name, _flags) \
146         UNIT_TEST(_name, UT_TESTF_DM | UT_TESTF_CONSOLE_REC | (_flags), dm_test)
147
148 /*
149  * struct sandbox_sdl_plat - Platform data for the SDL video driver
150  *
151  * This platform data is needed in tests, so declare it here
152  *
153  * @xres: Width of display in pixels
154  * @yres: Height of display in pixels
155  * @bpix: Log2 of bits per pixel (enum video_log2_bpp)
156  * @rot: Console rotation (0=normal orientation, 1=90 degrees clockwise,
157  *      2=upside down, 3=90 degree counterclockwise)
158  * @vidconsole_drv_name: Name of video console driver (set by tests)
159  * @font_size: Console font size to select (set by tests)
160  */
161 struct sandbox_sdl_plat {
162         int xres;
163         int yres;
164         int bpix;
165         int rot;
166         const char *vidconsole_drv_name;
167         int font_size;
168 };
169
170 /**
171  * struct dm_test_parent_plat - Used to track state in bus tests
172  *
173  * @count:
174  * @bind_flag: Indicates that the child post-bind method was called
175  * @uclass_bind_flag: Also indicates that the child post-bind method was called
176  */
177 struct dm_test_parent_plat {
178         int count;
179         int bind_flag;
180         int uclass_bind_flag;
181 };
182
183 enum {
184         TEST_FLAG_CHILD_PROBED  = 10,
185         TEST_FLAG_CHILD_REMOVED = -7,
186 };
187
188 /* Declare ping methods for the drivers */
189 int test_ping(struct udevice *dev, int pingval, int *pingret);
190 int testfdt_ping(struct udevice *dev, int pingval, int *pingret);
191
192 /**
193  * dm_check_operations() - Check that we can perform ping operations
194  *
195  * This checks that the ping operations work as expected for a device
196  *
197  * @dms: Overall test state
198  * @dev: Device to test
199  * @base: Base address, used to check ping return value
200  * @priv: Pointer to private test information
201  * Return: 0 if OK, -ve on error
202  */
203 int dm_check_operations(struct unit_test_state *uts, struct udevice *dev,
204                         uint32_t base, struct dm_test_priv *priv);
205
206 /**
207  * dm_check_devices() - check the devices respond to operations correctly
208  *
209  * @dms: Overall test state
210  * @num_devices: Number of test devices to check
211  * Return: 0 if OK, -ve on error
212  */
213 int dm_check_devices(struct unit_test_state *uts, int num_devices);
214
215 /**
216  * dm_leak_check_start() - Prepare to check for a memory leak
217  *
218  * Call this before allocating memory to record the amount of memory being
219  * used.
220  *
221  * @dms: Overall test state
222  */
223 void dm_leak_check_start(struct unit_test_state *uts);
224
225 /**
226  * dm_leak_check_end() - Check that no memory has leaked
227  *
228  * Call this after dm_leak_check_start() and after you have hopefuilly freed
229  * all the memory that was allocated. This function will print an error if
230  * it sees a different amount of total memory allocated than before.
231  *
232  * @dms: Overall test state
233  */int dm_leak_check_end(struct unit_test_state *uts);
234
235 #endif
This page took 0.028148 seconds and 2 git commands to generate.