Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2013 Google, Inc. |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef __DM_TEST_H |
| 7 | #define __DM_TEST_H |
| 8 | |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 9 | /** |
| 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 | */ |
| 15 | struct 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 | */ |
| 29 | struct test_ops { |
Heiko Schocher | 54c5d08 | 2014-05-22 12:43:05 +0200 | [diff] [blame] | 30 | int (*ping)(struct udevice *dev, int pingval, int *pingret); |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 31 | }; |
| 32 | |
| 33 | /* Operations that our test driver supports */ |
| 34 | enum { |
| 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 Glass | 02c07b3 | 2015-03-05 12:25:22 -0700 | [diff] [blame] | 43 | DM_TEST_OP_PRE_PROBE, |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 44 | 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 */ |
| 53 | enum { |
| 54 | DM_TEST_TYPE_FIRST = 0, |
| 55 | DM_TEST_TYPE_SECOND, |
Simon Glass | 5016234 | 2020-02-06 09:54:50 -0700 | [diff] [blame] | 56 | |
| 57 | DM_TEST_TYPE_COUNT, |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 58 | }; |
| 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 | */ |
| 66 | struct dm_test_priv { |
| 67 | int ping_total; |
| 68 | int op_count[DM_TEST_OP_COUNT]; |
Simon Glass | 83c7e43 | 2015-01-25 08:27:10 -0700 | [diff] [blame] | 69 | int uclass_flag; |
| 70 | int uclass_total; |
Bin Meng | d92878a | 2018-10-15 02:20:58 -0700 | [diff] [blame] | 71 | int uclass_postp; |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 72 | }; |
| 73 | |
| 74 | /** |
| 75 | * struct dm_test_perdev_class_priv - private per-device data for test uclass |
| 76 | */ |
| 77 | struct dm_test_uclass_perdev_priv { |
| 78 | int base_add; |
| 79 | }; |
| 80 | |
| 81 | /** |
| 82 | * struct dm_test_uclass_priv - private data for test uclass |
| 83 | */ |
| 84 | struct dm_test_uclass_priv { |
| 85 | int total_add; |
| 86 | }; |
| 87 | |
Simon Glass | e59f458 | 2014-07-23 06:55:20 -0600 | [diff] [blame] | 88 | /** |
| 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 Glass | a327dee | 2014-07-23 06:55:21 -0600 | [diff] [blame] | 92 | * @flag: Used to track calling of parent operations |
Simon Glass | 83c7e43 | 2015-01-25 08:27:10 -0700 | [diff] [blame] | 93 | * @uclass_flag: Used to track calling of parent operations by uclass |
Simon Glass | e59f458 | 2014-07-23 06:55:20 -0600 | [diff] [blame] | 94 | */ |
| 95 | struct dm_test_parent_data { |
| 96 | int sum; |
Simon Glass | a327dee | 2014-07-23 06:55:21 -0600 | [diff] [blame] | 97 | int flag; |
Simon Glass | e59f458 | 2014-07-23 06:55:20 -0600 | [diff] [blame] | 98 | }; |
| 99 | |
Przemyslaw Marczak | 754e71e | 2015-04-15 13:07:19 +0200 | [diff] [blame] | 100 | /* Test values for test device's uclass platform data */ |
| 101 | enum { |
| 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 | */ |
| 114 | struct dm_test_perdev_uc_pdata { |
| 115 | int intval1; |
| 116 | int intval2; |
| 117 | int intval3; |
| 118 | }; |
| 119 | |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 120 | /* |
| 121 | * Operation counts for the test driver, used to check that each method is |
| 122 | * called correctly |
| 123 | */ |
| 124 | extern int dm_testdrv_op_count[DM_TEST_OP_COUNT]; |
| 125 | |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 126 | extern struct unit_test_state global_dm_test_state; |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 127 | |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 128 | /* Declare a new driver model test */ |
Simon Glass | 4bc639e | 2021-03-07 17:34:45 -0700 | [diff] [blame] | 129 | #define DM_TEST(_name, _flags) \ |
Simon Glass | 30a0d20 | 2021-03-07 17:34:49 -0700 | [diff] [blame] | 130 | UNIT_TEST(_name, UT_TESTF_DM | UT_TESTF_CONSOLE_REC | (_flags), dm_test) |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 131 | |
Simon Glass | ef45312 | 2020-07-02 21:12:28 -0600 | [diff] [blame] | 132 | /* |
| 133 | * struct sandbox_sdl_plat - Platform data for the SDL video driver |
| 134 | * |
| 135 | * This platform data is needed in tests, so declare it here |
| 136 | * |
| 137 | * @xres: Width of display in pixels |
| 138 | * @yres: Height of display in pixels |
| 139 | * @bpix: Log2 of bits per pixel (enum video_log2_bpp) |
| 140 | * @rot: Console rotation (0=normal orientation, 1=90 degrees clockwise, |
| 141 | * 2=upside down, 3=90 degree counterclockwise) |
| 142 | * @vidconsole_drv_name: Name of video console driver (set by tests) |
| 143 | * @font_size: Console font size to select (set by tests) |
| 144 | */ |
Simon Glass | 3c97c4f | 2016-01-18 19:52:26 -0700 | [diff] [blame] | 145 | struct sandbox_sdl_plat { |
| 146 | int xres; |
| 147 | int yres; |
| 148 | int bpix; |
| 149 | int rot; |
Simon Glass | 8de536c | 2016-01-14 18:10:49 -0700 | [diff] [blame] | 150 | const char *vidconsole_drv_name; |
| 151 | int font_size; |
Simon Glass | 3c97c4f | 2016-01-18 19:52:26 -0700 | [diff] [blame] | 152 | }; |
| 153 | |
Simon Glass | 079ac59 | 2020-12-23 08:11:18 -0700 | [diff] [blame] | 154 | /** |
| 155 | * struct dm_test_parent_plat - Used to track state in bus tests |
| 156 | * |
| 157 | * @count: |
| 158 | * @bind_flag: Indicates that the child post-bind method was called |
| 159 | * @uclass_bind_flag: Also indicates that the child post-bind method was called |
| 160 | */ |
| 161 | struct dm_test_parent_plat { |
| 162 | int count; |
| 163 | int bind_flag; |
| 164 | int uclass_bind_flag; |
| 165 | }; |
| 166 | |
| 167 | enum { |
| 168 | TEST_FLAG_CHILD_PROBED = 10, |
| 169 | TEST_FLAG_CHILD_REMOVED = -7, |
| 170 | }; |
| 171 | |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 172 | /* Declare ping methods for the drivers */ |
Heiko Schocher | 54c5d08 | 2014-05-22 12:43:05 +0200 | [diff] [blame] | 173 | int test_ping(struct udevice *dev, int pingval, int *pingret); |
| 174 | int testfdt_ping(struct udevice *dev, int pingval, int *pingret); |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 175 | |
| 176 | /** |
| 177 | * dm_check_operations() - Check that we can perform ping operations |
| 178 | * |
| 179 | * This checks that the ping operations work as expected for a device |
| 180 | * |
| 181 | * @dms: Overall test state |
| 182 | * @dev: Device to test |
| 183 | * @base: Base address, used to check ping return value |
| 184 | * @priv: Pointer to private test information |
| 185 | * @return 0 if OK, -ve on error |
| 186 | */ |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 187 | int dm_check_operations(struct unit_test_state *uts, struct udevice *dev, |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 188 | uint32_t base, struct dm_test_priv *priv); |
| 189 | |
| 190 | /** |
Simon Glass | 1ca7e20 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 191 | * dm_check_devices() - check the devices respond to operations correctly |
| 192 | * |
| 193 | * @dms: Overall test state |
| 194 | * @num_devices: Number of test devices to check |
| 195 | * @return 0 if OK, -ve on error |
| 196 | */ |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 197 | int dm_check_devices(struct unit_test_state *uts, int num_devices); |
Simon Glass | 1ca7e20 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 198 | |
| 199 | /** |
Simon Glass | 756ac0b | 2014-10-04 11:29:50 -0600 | [diff] [blame] | 200 | * dm_leak_check_start() - Prepare to check for a memory leak |
| 201 | * |
| 202 | * Call this before allocating memory to record the amount of memory being |
| 203 | * used. |
| 204 | * |
| 205 | * @dms: Overall test state |
| 206 | */ |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 207 | void dm_leak_check_start(struct unit_test_state *uts); |
Simon Glass | 756ac0b | 2014-10-04 11:29:50 -0600 | [diff] [blame] | 208 | |
| 209 | /** |
| 210 | * dm_leak_check_end() - Check that no memory has leaked |
| 211 | * |
| 212 | * Call this after dm_leak_check_start() and after you have hopefuilly freed |
| 213 | * all the memory that was allocated. This function will print an error if |
| 214 | * it sees a different amount of total memory allocated than before. |
| 215 | * |
| 216 | * @dms: Overall test state |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 217 | */int dm_leak_check_end(struct unit_test_state *uts); |
Simon Glass | 756ac0b | 2014-10-04 11:29:50 -0600 | [diff] [blame] | 218 | |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 219 | #endif |