]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
2e7d35d2 SG |
2 | /* |
3 | * Copyright (c) 2013 Google, Inc. | |
2e7d35d2 SG |
4 | */ |
5 | ||
6 | #ifndef __DM_TEST_H | |
7 | #define __DM_TEST_H | |
8 | ||
03de305e TR |
9 | #include <linux/types.h> |
10 | ||
3c2503ee SG |
11 | struct udevice; |
12 | ||
2e7d35d2 SG |
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 | |
185f812c | 31 | * Return: 0 if OK, -ve on error |
2e7d35d2 SG |
32 | */ |
33 | struct test_ops { | |
54c5d08a | 34 | int (*ping)(struct udevice *dev, int pingval, int *pingret); |
2e7d35d2 SG |
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, | |
02c07b37 | 47 | DM_TEST_OP_PRE_PROBE, |
2e7d35d2 SG |
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, | |
50162348 SG |
60 | |
61 | DM_TEST_TYPE_COUNT, | |
2e7d35d2 SG |
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]; | |
83c7e434 SG |
73 | int uclass_flag; |
74 | int uclass_total; | |
d92878aa | 75 | int uclass_postp; |
2e7d35d2 SG |
76 | }; |
77 | ||
ea74c951 SG |
78 | /* struct dm_test_uc_priv - private data for the testdrv uclass */ |
79 | struct dm_test_uc_priv { | |
80 | int dummy; | |
81 | }; | |
82 | ||
2e7d35d2 SG |
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 | ||
53c20beb SG |
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 | ||
e59f458d SG |
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 | |
a327dee0 | 108 | * @flag: Used to track calling of parent operations |
83c7e434 | 109 | * @uclass_flag: Used to track calling of parent operations by uclass |
e59f458d SG |
110 | */ |
111 | struct dm_test_parent_data { | |
112 | int sum; | |
a327dee0 | 113 | int flag; |
e59f458d SG |
114 | }; |
115 | ||
754e71e8 PM |
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 | ||
2e7d35d2 SG |
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 | ||
e721b882 | 142 | extern struct unit_test_state global_dm_test_state; |
2e7d35d2 | 143 | |
2e7d35d2 | 144 | /* Declare a new driver model test */ |
4bc639ee | 145 | #define DM_TEST(_name, _flags) \ |
4ba3ab49 | 146 | UNIT_TEST(_name, UTF_DM | UTF_CONSOLE | (_flags), dm) |
2e7d35d2 | 147 | |
ef453129 SG |
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 | */ | |
3c97c4fb SG |
161 | struct sandbox_sdl_plat { |
162 | int xres; | |
163 | int yres; | |
164 | int bpix; | |
165 | int rot; | |
8de536c2 SG |
166 | const char *vidconsole_drv_name; |
167 | int font_size; | |
3c97c4fb SG |
168 | }; |
169 | ||
079ac595 SG |
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 | ||
2e7d35d2 | 188 | /* Declare ping methods for the drivers */ |
54c5d08a HS |
189 | int test_ping(struct udevice *dev, int pingval, int *pingret); |
190 | int testfdt_ping(struct udevice *dev, int pingval, int *pingret); | |
2e7d35d2 SG |
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 | |
185f812c | 201 | * Return: 0 if OK, -ve on error |
2e7d35d2 | 202 | */ |
e721b882 | 203 | int dm_check_operations(struct unit_test_state *uts, struct udevice *dev, |
2e7d35d2 SG |
204 | uint32_t base, struct dm_test_priv *priv); |
205 | ||
1ca7e206 SG |
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 | |
185f812c | 211 | * Return: 0 if OK, -ve on error |
1ca7e206 | 212 | */ |
e721b882 | 213 | int dm_check_devices(struct unit_test_state *uts, int num_devices); |
1ca7e206 | 214 | |
756ac0bb SG |
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 | */ | |
e721b882 | 223 | void dm_leak_check_start(struct unit_test_state *uts); |
756ac0bb SG |
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 | |
e721b882 | 233 | */int dm_leak_check_end(struct unit_test_state *uts); |
756ac0bb | 234 | |
2e7d35d2 | 235 | #endif |