Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2013 Google, Inc. |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0+ |
| 5 | */ |
| 6 | |
| 7 | #ifndef __DM_TEST_H |
| 8 | #define __DM_TEST_H |
| 9 | |
| 10 | #include <dm.h> |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 11 | #include <test/test.h> |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 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 { |
Heiko Schocher | 54c5d08 | 2014-05-22 12:43:05 +0200 | [diff] [blame] | 34 | int (*ping)(struct udevice *dev, int pingval, int *pingret); |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 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, |
Simon Glass | 02c07b3 | 2015-03-05 12:25:22 -0700 | [diff] [blame] | 47 | DM_TEST_OP_PRE_PROBE, |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 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 | |
| 62 | /* The number added to the ping total on each probe */ |
| 63 | #define DM_TEST_START_TOTAL 5 |
| 64 | |
| 65 | /** |
| 66 | * struct dm_test_priv - private data for the test devices |
| 67 | */ |
| 68 | struct dm_test_priv { |
| 69 | int ping_total; |
| 70 | int op_count[DM_TEST_OP_COUNT]; |
Simon Glass | 83c7e43 | 2015-01-25 08:27:10 -0700 | [diff] [blame] | 71 | int uclass_flag; |
| 72 | int uclass_total; |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 73 | }; |
| 74 | |
| 75 | /** |
| 76 | * struct dm_test_perdev_class_priv - private per-device data for test uclass |
| 77 | */ |
| 78 | struct dm_test_uclass_perdev_priv { |
| 79 | int base_add; |
| 80 | }; |
| 81 | |
| 82 | /** |
| 83 | * struct dm_test_uclass_priv - private data for test uclass |
| 84 | */ |
| 85 | struct dm_test_uclass_priv { |
| 86 | int total_add; |
| 87 | }; |
| 88 | |
Simon Glass | e59f458 | 2014-07-23 06:55:20 -0600 | [diff] [blame] | 89 | /** |
| 90 | * struct dm_test_parent_data - parent's information on each child |
| 91 | * |
| 92 | * @sum: Test value used to check parent data works correctly |
Simon Glass | a327dee | 2014-07-23 06:55:21 -0600 | [diff] [blame] | 93 | * @flag: Used to track calling of parent operations |
Simon Glass | 83c7e43 | 2015-01-25 08:27:10 -0700 | [diff] [blame] | 94 | * @uclass_flag: Used to track calling of parent operations by uclass |
Simon Glass | e59f458 | 2014-07-23 06:55:20 -0600 | [diff] [blame] | 95 | */ |
| 96 | struct dm_test_parent_data { |
| 97 | int sum; |
Simon Glass | a327dee | 2014-07-23 06:55:21 -0600 | [diff] [blame] | 98 | int flag; |
Simon Glass | e59f458 | 2014-07-23 06:55:20 -0600 | [diff] [blame] | 99 | }; |
| 100 | |
Przemyslaw Marczak | 754e71e | 2015-04-15 13:07:19 +0200 | [diff] [blame] | 101 | /* Test values for test device's uclass platform data */ |
| 102 | enum { |
| 103 | TEST_UC_PDATA_INTVAL1 = 2, |
| 104 | TEST_UC_PDATA_INTVAL2 = 334, |
| 105 | TEST_UC_PDATA_INTVAL3 = 789452, |
| 106 | }; |
| 107 | |
| 108 | /** |
| 109 | * struct dm_test_uclass_platda - uclass's information on each device |
| 110 | * |
| 111 | * @intval1: set to TEST_UC_PDATA_INTVAL1 in .post_bind method of test uclass |
| 112 | * @intval2: set to TEST_UC_PDATA_INTVAL2 in .post_bind method of test uclass |
| 113 | * @intval3: set to TEST_UC_PDATA_INTVAL3 in .post_bind method of test uclass |
| 114 | */ |
| 115 | struct dm_test_perdev_uc_pdata { |
| 116 | int intval1; |
| 117 | int intval2; |
| 118 | int intval3; |
| 119 | }; |
| 120 | |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 121 | /* |
| 122 | * Operation counts for the test driver, used to check that each method is |
| 123 | * called correctly |
| 124 | */ |
| 125 | extern int dm_testdrv_op_count[DM_TEST_OP_COUNT]; |
| 126 | |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 127 | extern struct unit_test_state global_dm_test_state; |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 128 | |
| 129 | /* |
| 130 | * struct dm_test_state - Entire state of dm test system |
| 131 | * |
| 132 | * This is often abreviated to dms. |
| 133 | * |
| 134 | * @root: Root device |
| 135 | * @testdev: Test device |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 136 | * @force_fail_alloc: Force all memory allocs to fail |
| 137 | * @skip_post_probe: Skip uclass post-probe processing |
Simon Glass | a327dee | 2014-07-23 06:55:21 -0600 | [diff] [blame] | 138 | * @removed: Used to keep track of a device that was removed |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 139 | */ |
| 140 | struct dm_test_state { |
Heiko Schocher | 54c5d08 | 2014-05-22 12:43:05 +0200 | [diff] [blame] | 141 | struct udevice *root; |
| 142 | struct udevice *testdev; |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 143 | int force_fail_alloc; |
| 144 | int skip_post_probe; |
Simon Glass | a327dee | 2014-07-23 06:55:21 -0600 | [diff] [blame] | 145 | struct udevice *removed; |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 146 | }; |
| 147 | |
| 148 | /* Test flags for each test */ |
| 149 | enum { |
| 150 | DM_TESTF_SCAN_PDATA = 1 << 0, /* test needs platform data */ |
| 151 | DM_TESTF_PROBE_TEST = 1 << 1, /* probe test uclass */ |
| 152 | DM_TESTF_SCAN_FDT = 1 << 2, /* scan device tree */ |
| 153 | }; |
| 154 | |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 155 | /* Declare a new driver model test */ |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 156 | #define DM_TEST(_name, _flags) UNIT_TEST(_name, _flags, dm_test) |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 157 | |
| 158 | /* Declare ping methods for the drivers */ |
Heiko Schocher | 54c5d08 | 2014-05-22 12:43:05 +0200 | [diff] [blame] | 159 | int test_ping(struct udevice *dev, int pingval, int *pingret); |
| 160 | int testfdt_ping(struct udevice *dev, int pingval, int *pingret); |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 161 | |
| 162 | /** |
| 163 | * dm_check_operations() - Check that we can perform ping operations |
| 164 | * |
| 165 | * This checks that the ping operations work as expected for a device |
| 166 | * |
| 167 | * @dms: Overall test state |
| 168 | * @dev: Device to test |
| 169 | * @base: Base address, used to check ping return value |
| 170 | * @priv: Pointer to private test information |
| 171 | * @return 0 if OK, -ve on error |
| 172 | */ |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 173 | int dm_check_operations(struct unit_test_state *uts, struct udevice *dev, |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 174 | uint32_t base, struct dm_test_priv *priv); |
| 175 | |
| 176 | /** |
Simon Glass | 1ca7e20 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 177 | * dm_check_devices() - check the devices respond to operations correctly |
| 178 | * |
| 179 | * @dms: Overall test state |
| 180 | * @num_devices: Number of test devices to check |
| 181 | * @return 0 if OK, -ve on error |
| 182 | */ |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 183 | int dm_check_devices(struct unit_test_state *uts, int num_devices); |
Simon Glass | 1ca7e20 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 184 | |
| 185 | /** |
Simon Glass | 756ac0b | 2014-10-04 11:29:50 -0600 | [diff] [blame] | 186 | * dm_leak_check_start() - Prepare to check for a memory leak |
| 187 | * |
| 188 | * Call this before allocating memory to record the amount of memory being |
| 189 | * used. |
| 190 | * |
| 191 | * @dms: Overall test state |
| 192 | */ |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 193 | void dm_leak_check_start(struct unit_test_state *uts); |
Simon Glass | 756ac0b | 2014-10-04 11:29:50 -0600 | [diff] [blame] | 194 | |
| 195 | /** |
| 196 | * dm_leak_check_end() - Check that no memory has leaked |
| 197 | * |
| 198 | * Call this after dm_leak_check_start() and after you have hopefuilly freed |
| 199 | * all the memory that was allocated. This function will print an error if |
| 200 | * it sees a different amount of total memory allocated than before. |
| 201 | * |
| 202 | * @dms: Overall test state |
Joe Hershberger | e721b88 | 2015-05-20 14:27:27 -0500 | [diff] [blame] | 203 | */int dm_leak_check_end(struct unit_test_state *uts); |
Simon Glass | 756ac0b | 2014-10-04 11:29:50 -0600 | [diff] [blame] | 204 | |
Simon Glass | 2e7d35d | 2014-02-26 15:59:21 -0700 | [diff] [blame] | 205 | #endif |