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