blob: 9e4e401ff21d9ec05a90fc4494d8ff852e0600d4 [file] [log] [blame]
Grant Likely53a42092011-12-12 09:25:57 -07001/*
2 * Self tests for device tree subsystem
3 */
4
Grant Likelycabb7d52013-02-12 21:19:37 +00005#define pr_fmt(fmt) "### dt-test ### " fmt
Grant Likely53a42092011-12-12 09:25:57 -07006
7#include <linux/clk.h>
8#include <linux/err.h>
9#include <linux/errno.h>
Grant Likely841ec212014-10-02 13:09:15 +010010#include <linux/hashtable.h>
Grant Likely53a42092011-12-12 09:25:57 -070011#include <linux/module.h>
12#include <linux/of.h>
Gaurav Minochaae9304c2014-07-16 23:09:39 -070013#include <linux/of_fdt.h>
Grant Likelya9f10ca2013-10-11 22:04:23 +010014#include <linux/of_irq.h>
Rob Herring82c0f582014-04-23 17:57:40 -050015#include <linux/of_platform.h>
Grant Likely53a42092011-12-12 09:25:57 -070016#include <linux/list.h>
17#include <linux/mutex.h>
18#include <linux/slab.h>
19#include <linux/device.h>
Pantelis Antoniou177d2712014-10-28 22:35:59 +020020#include <linux/platform_device.h>
21#include <linux/of_platform.h>
Grant Likely53a42092011-12-12 09:25:57 -070022
Pantelis Antonioud5e75502015-01-12 19:02:49 +020023#include <linux/i2c.h>
24#include <linux/i2c-mux.h>
25
Pantelis Antoniou69843392014-07-04 19:58:47 +030026#include "of_private.h"
27
Grant Likelya9f10ca2013-10-11 22:04:23 +010028static struct selftest_results {
29 int passed;
30 int failed;
31} selftest_results;
32
Grant Likely851da972014-11-04 13:14:13 +000033#define selftest(result, fmt, ...) ({ \
34 bool failed = !(result); \
35 if (failed) { \
Grant Likelya9f10ca2013-10-11 22:04:23 +010036 selftest_results.failed++; \
37 pr_err("FAIL %s():%i " fmt, __func__, __LINE__, ##__VA_ARGS__); \
Grant Likelycabb7d52013-02-12 21:19:37 +000038 } else { \
Grant Likelya9f10ca2013-10-11 22:04:23 +010039 selftest_results.passed++; \
40 pr_debug("pass %s():%i\n", __func__, __LINE__); \
Grant Likelycabb7d52013-02-12 21:19:37 +000041 } \
Grant Likely851da972014-11-04 13:14:13 +000042 failed; \
43})
Grant Likely53a42092011-12-12 09:25:57 -070044
Grant Likelyae91ff72014-03-14 13:53:10 +000045static void __init of_selftest_find_node_by_name(void)
46{
47 struct device_node *np;
Leif Lindholm75c28c02014-11-28 11:34:28 +000048 const char *options;
Grant Likelyae91ff72014-03-14 13:53:10 +000049
50 np = of_find_node_by_path("/testcase-data");
51 selftest(np && !strcmp("/testcase-data", np->full_name),
52 "find /testcase-data failed\n");
53 of_node_put(np);
54
55 /* Test if trailing '/' works */
56 np = of_find_node_by_path("/testcase-data/");
57 selftest(!np, "trailing '/' on /testcase-data/ should fail\n");
58
59 np = of_find_node_by_path("/testcase-data/phandle-tests/consumer-a");
60 selftest(np && !strcmp("/testcase-data/phandle-tests/consumer-a", np->full_name),
61 "find /testcase-data/phandle-tests/consumer-a failed\n");
62 of_node_put(np);
63
64 np = of_find_node_by_path("testcase-alias");
65 selftest(np && !strcmp("/testcase-data", np->full_name),
66 "find testcase-alias failed\n");
67 of_node_put(np);
68
69 /* Test if trailing '/' works on aliases */
70 np = of_find_node_by_path("testcase-alias/");
71 selftest(!np, "trailing '/' on testcase-alias/ should fail\n");
72
73 np = of_find_node_by_path("testcase-alias/phandle-tests/consumer-a");
74 selftest(np && !strcmp("/testcase-data/phandle-tests/consumer-a", np->full_name),
75 "find testcase-alias/phandle-tests/consumer-a failed\n");
76 of_node_put(np);
77
78 np = of_find_node_by_path("/testcase-data/missing-path");
79 selftest(!np, "non-existent path returned node %s\n", np->full_name);
80 of_node_put(np);
81
82 np = of_find_node_by_path("missing-alias");
83 selftest(!np, "non-existent alias returned node %s\n", np->full_name);
84 of_node_put(np);
85
86 np = of_find_node_by_path("testcase-alias/missing-path");
87 selftest(!np, "non-existent alias with relative path returned node %s\n", np->full_name);
88 of_node_put(np);
Leif Lindholm75c28c02014-11-28 11:34:28 +000089
90 np = of_find_node_opts_by_path("/testcase-data:testoption", &options);
91 selftest(np && !strcmp("testoption", options),
92 "option path test failed\n");
93 of_node_put(np);
94
Peter Hurley8cbba1a2015-03-06 13:59:59 -050095 np = of_find_node_opts_by_path("/testcase-data:test/option", &options);
96 selftest(np && !strcmp("test/option", options),
97 "option path test, subcase #1 failed\n");
98 of_node_put(np);
99
Brian Norris5ca1b0d2015-03-17 12:30:32 -0700100 np = of_find_node_opts_by_path("/testcase-data/testcase-device1:test/option", &options);
101 selftest(np && !strcmp("test/option", options),
102 "option path test, subcase #2 failed\n");
103 of_node_put(np);
104
Leif Lindholm75c28c02014-11-28 11:34:28 +0000105 np = of_find_node_opts_by_path("/testcase-data:testoption", NULL);
106 selftest(np, "NULL option path test failed\n");
107 of_node_put(np);
108
109 np = of_find_node_opts_by_path("testcase-alias:testaliasoption",
110 &options);
111 selftest(np && !strcmp("testaliasoption", options),
112 "option alias path test failed\n");
113 of_node_put(np);
114
Peter Hurley8cbba1a2015-03-06 13:59:59 -0500115 np = of_find_node_opts_by_path("testcase-alias:test/alias/option",
116 &options);
117 selftest(np && !strcmp("test/alias/option", options),
118 "option alias path test, subcase #1 failed\n");
119 of_node_put(np);
120
Leif Lindholm75c28c02014-11-28 11:34:28 +0000121 np = of_find_node_opts_by_path("testcase-alias:testaliasoption", NULL);
122 selftest(np, "NULL option alias path test failed\n");
123 of_node_put(np);
124
125 options = "testoption";
126 np = of_find_node_opts_by_path("testcase-alias", &options);
127 selftest(np && !options, "option clearing test failed\n");
128 of_node_put(np);
129
130 options = "testoption";
131 np = of_find_node_opts_by_path("/", &options);
132 selftest(np && !options, "option clearing root node test failed\n");
133 of_node_put(np);
Grant Likelyae91ff72014-03-14 13:53:10 +0000134}
135
Grant Likely7e66c5c2013-11-15 17:19:09 +0000136static void __init of_selftest_dynamic(void)
137{
138 struct device_node *np;
139 struct property *prop;
140
141 np = of_find_node_by_path("/testcase-data");
142 if (!np) {
143 pr_err("missing testcase data\n");
144 return;
145 }
146
147 /* Array of 4 properties for the purpose of testing */
148 prop = kzalloc(sizeof(*prop) * 4, GFP_KERNEL);
149 if (!prop) {
150 selftest(0, "kzalloc() failed\n");
151 return;
152 }
153
154 /* Add a new property - should pass*/
155 prop->name = "new-property";
156 prop->value = "new-property-data";
157 prop->length = strlen(prop->value);
158 selftest(of_add_property(np, prop) == 0, "Adding a new property failed\n");
159
160 /* Try to add an existing property - should fail */
161 prop++;
162 prop->name = "new-property";
163 prop->value = "new-property-data-should-fail";
164 prop->length = strlen(prop->value);
165 selftest(of_add_property(np, prop) != 0,
166 "Adding an existing property should have failed\n");
167
168 /* Try to modify an existing property - should pass */
169 prop->value = "modify-property-data-should-pass";
170 prop->length = strlen(prop->value);
171 selftest(of_update_property(np, prop) == 0,
172 "Updating an existing property should have passed\n");
173
174 /* Try to modify non-existent property - should pass*/
175 prop++;
176 prop->name = "modify-property";
177 prop->value = "modify-missing-property-data-should-pass";
178 prop->length = strlen(prop->value);
179 selftest(of_update_property(np, prop) == 0,
180 "Updating a missing property should have passed\n");
181
182 /* Remove property - should pass */
183 selftest(of_remove_property(np, prop) == 0,
184 "Removing a property should have passed\n");
185
186 /* Adding very large property - should pass */
187 prop++;
188 prop->name = "large-property-PAGE_SIZEx8";
189 prop->length = PAGE_SIZE * 8;
190 prop->value = kzalloc(prop->length, GFP_KERNEL);
191 selftest(prop->value != NULL, "Unable to allocate large buffer\n");
192 if (prop->value)
193 selftest(of_add_property(np, prop) == 0,
194 "Adding a large property should have passed\n");
195}
196
Grant Likelyf2051d62014-10-01 17:40:22 +0100197static int __init of_selftest_check_node_linkage(struct device_node *np)
198{
Grant Likely5063e252014-10-03 16:28:27 +0100199 struct device_node *child;
Grant Likelyf2051d62014-10-01 17:40:22 +0100200 int count = 0, rc;
201
202 for_each_child_of_node(np, child) {
203 if (child->parent != np) {
204 pr_err("Child node %s links to wrong parent %s\n",
205 child->name, np->name);
206 return -EINVAL;
207 }
208
Grant Likelyf2051d62014-10-01 17:40:22 +0100209 rc = of_selftest_check_node_linkage(child);
210 if (rc < 0)
211 return rc;
212 count += rc;
213 }
214
215 return count + 1;
216}
217
218static void __init of_selftest_check_tree_linkage(void)
219{
220 struct device_node *np;
221 int allnode_count = 0, child_count;
222
Grant Likely5063e252014-10-03 16:28:27 +0100223 if (!of_root)
Grant Likelyf2051d62014-10-01 17:40:22 +0100224 return;
225
226 for_each_of_allnodes(np)
227 allnode_count++;
Grant Likely5063e252014-10-03 16:28:27 +0100228 child_count = of_selftest_check_node_linkage(of_root);
Grant Likelyf2051d62014-10-01 17:40:22 +0100229
230 selftest(child_count > 0, "Device node data structure is corrupted\n");
Frank Rowanda6bb1212015-03-13 23:59:01 -0700231 selftest(child_count == allnode_count,
232 "allnodes list size (%i) doesn't match sibling lists size (%i)\n",
233 allnode_count, child_count);
Grant Likelyf2051d62014-10-01 17:40:22 +0100234 pr_debug("allnodes list size (%i); sibling lists size (%i)\n", allnode_count, child_count);
235}
236
Grant Likely841ec212014-10-02 13:09:15 +0100237struct node_hash {
238 struct hlist_node node;
239 struct device_node *np;
240};
241
Grant Likely2118f4b2014-10-07 11:30:31 +0100242static DEFINE_HASHTABLE(phandle_ht, 8);
Grant Likely841ec212014-10-02 13:09:15 +0100243static void __init of_selftest_check_phandles(void)
244{
245 struct device_node *np;
246 struct node_hash *nh;
247 struct hlist_node *tmp;
248 int i, dup_count = 0, phandle_count = 0;
Grant Likely841ec212014-10-02 13:09:15 +0100249
Grant Likely841ec212014-10-02 13:09:15 +0100250 for_each_of_allnodes(np) {
251 if (!np->phandle)
252 continue;
253
Grant Likely2118f4b2014-10-07 11:30:31 +0100254 hash_for_each_possible(phandle_ht, nh, node, np->phandle) {
Grant Likely841ec212014-10-02 13:09:15 +0100255 if (nh->np->phandle == np->phandle) {
256 pr_info("Duplicate phandle! %i used by %s and %s\n",
257 np->phandle, nh->np->full_name, np->full_name);
258 dup_count++;
259 break;
260 }
261 }
262
263 nh = kzalloc(sizeof(*nh), GFP_KERNEL);
264 if (WARN_ON(!nh))
265 return;
266
267 nh->np = np;
Grant Likely2118f4b2014-10-07 11:30:31 +0100268 hash_add(phandle_ht, &nh->node, np->phandle);
Grant Likely841ec212014-10-02 13:09:15 +0100269 phandle_count++;
270 }
271 selftest(dup_count == 0, "Found %i duplicates in %i phandles\n",
272 dup_count, phandle_count);
273
274 /* Clean up */
Grant Likely2118f4b2014-10-07 11:30:31 +0100275 hash_for_each_safe(phandle_ht, i, tmp, nh, node) {
Grant Likely841ec212014-10-02 13:09:15 +0100276 hash_del(&nh->node);
277 kfree(nh);
278 }
279}
280
Grant Likely53a42092011-12-12 09:25:57 -0700281static void __init of_selftest_parse_phandle_with_args(void)
282{
283 struct device_node *np;
284 struct of_phandle_args args;
Grant Likelycabb7d52013-02-12 21:19:37 +0000285 int i, rc;
Grant Likely53a42092011-12-12 09:25:57 -0700286
Grant Likely53a42092011-12-12 09:25:57 -0700287 np = of_find_node_by_path("/testcase-data/phandle-tests/consumer-a");
288 if (!np) {
289 pr_err("missing testcase data\n");
290 return;
291 }
292
Grant Likelybd69f732013-02-10 22:57:21 +0000293 rc = of_count_phandle_with_args(np, "phandle-list", "#phandle-cells");
294 selftest(rc == 7, "of_count_phandle_with_args() returned %i, expected 7\n", rc);
295
Grant Likelyf7f951c2013-02-12 17:41:22 +0000296 for (i = 0; i < 8; i++) {
Grant Likely53a42092011-12-12 09:25:57 -0700297 bool passed = true;
Frank Rowand3db316d2015-03-14 00:02:31 -0700298
Grant Likely53a42092011-12-12 09:25:57 -0700299 rc = of_parse_phandle_with_args(np, "phandle-list",
300 "#phandle-cells", i, &args);
301
302 /* Test the values from tests-phandle.dtsi */
303 switch (i) {
304 case 0:
305 passed &= !rc;
306 passed &= (args.args_count == 1);
307 passed &= (args.args[0] == (i + 1));
308 break;
309 case 1:
310 passed &= !rc;
311 passed &= (args.args_count == 2);
312 passed &= (args.args[0] == (i + 1));
313 passed &= (args.args[1] == 0);
314 break;
315 case 2:
316 passed &= (rc == -ENOENT);
317 break;
318 case 3:
319 passed &= !rc;
320 passed &= (args.args_count == 3);
321 passed &= (args.args[0] == (i + 1));
322 passed &= (args.args[1] == 4);
323 passed &= (args.args[2] == 3);
324 break;
325 case 4:
326 passed &= !rc;
327 passed &= (args.args_count == 2);
328 passed &= (args.args[0] == (i + 1));
329 passed &= (args.args[1] == 100);
330 break;
331 case 5:
332 passed &= !rc;
333 passed &= (args.args_count == 0);
334 break;
335 case 6:
336 passed &= !rc;
337 passed &= (args.args_count == 1);
338 passed &= (args.args[0] == (i + 1));
339 break;
340 case 7:
Grant Likelycabb7d52013-02-12 21:19:37 +0000341 passed &= (rc == -ENOENT);
Grant Likely53a42092011-12-12 09:25:57 -0700342 break;
343 default:
344 passed = false;
345 }
346
Grant Likelycabb7d52013-02-12 21:19:37 +0000347 selftest(passed, "index %i - data error on node %s rc=%i\n",
348 i, args.np->full_name, rc);
Grant Likely53a42092011-12-12 09:25:57 -0700349 }
350
351 /* Check for missing list property */
352 rc = of_parse_phandle_with_args(np, "phandle-list-missing",
353 "#phandle-cells", 0, &args);
Grant Likelycabb7d52013-02-12 21:19:37 +0000354 selftest(rc == -ENOENT, "expected:%i got:%i\n", -ENOENT, rc);
Grant Likelybd69f732013-02-10 22:57:21 +0000355 rc = of_count_phandle_with_args(np, "phandle-list-missing",
356 "#phandle-cells");
357 selftest(rc == -ENOENT, "expected:%i got:%i\n", -ENOENT, rc);
Grant Likely53a42092011-12-12 09:25:57 -0700358
359 /* Check for missing cells property */
360 rc = of_parse_phandle_with_args(np, "phandle-list",
361 "#phandle-cells-missing", 0, &args);
Grant Likelycabb7d52013-02-12 21:19:37 +0000362 selftest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc);
Grant Likelybd69f732013-02-10 22:57:21 +0000363 rc = of_count_phandle_with_args(np, "phandle-list",
364 "#phandle-cells-missing");
365 selftest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc);
Grant Likely53a42092011-12-12 09:25:57 -0700366
367 /* Check for bad phandle in list */
368 rc = of_parse_phandle_with_args(np, "phandle-list-bad-phandle",
369 "#phandle-cells", 0, &args);
Grant Likelycabb7d52013-02-12 21:19:37 +0000370 selftest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc);
Grant Likelybd69f732013-02-10 22:57:21 +0000371 rc = of_count_phandle_with_args(np, "phandle-list-bad-phandle",
372 "#phandle-cells");
373 selftest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc);
Grant Likely53a42092011-12-12 09:25:57 -0700374
375 /* Check for incorrectly formed argument list */
376 rc = of_parse_phandle_with_args(np, "phandle-list-bad-args",
377 "#phandle-cells", 1, &args);
Grant Likelycabb7d52013-02-12 21:19:37 +0000378 selftest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc);
Grant Likelybd69f732013-02-10 22:57:21 +0000379 rc = of_count_phandle_with_args(np, "phandle-list-bad-args",
380 "#phandle-cells");
381 selftest(rc == -EINVAL, "expected:%i got:%i\n", -EINVAL, rc);
Grant Likely53a42092011-12-12 09:25:57 -0700382}
383
Grant Likelya87fa1d2014-11-03 15:15:35 +0000384static void __init of_selftest_property_string(void)
Grant Likely7aff0fe2011-12-12 09:25:58 -0700385{
Grant Likelya87fa1d2014-11-03 15:15:35 +0000386 const char *strings[4];
Grant Likely7aff0fe2011-12-12 09:25:58 -0700387 struct device_node *np;
388 int rc;
389
Grant Likely7aff0fe2011-12-12 09:25:58 -0700390 np = of_find_node_by_path("/testcase-data/phandle-tests/consumer-a");
391 if (!np) {
392 pr_err("No testcase data in device tree\n");
393 return;
394 }
395
396 rc = of_property_match_string(np, "phandle-list-names", "first");
397 selftest(rc == 0, "first expected:0 got:%i\n", rc);
398 rc = of_property_match_string(np, "phandle-list-names", "second");
Wang Long649022e2015-03-03 03:50:38 +0000399 selftest(rc == 1, "second expected:1 got:%i\n", rc);
Grant Likely7aff0fe2011-12-12 09:25:58 -0700400 rc = of_property_match_string(np, "phandle-list-names", "third");
Wang Long649022e2015-03-03 03:50:38 +0000401 selftest(rc == 2, "third expected:2 got:%i\n", rc);
Grant Likely7aff0fe2011-12-12 09:25:58 -0700402 rc = of_property_match_string(np, "phandle-list-names", "fourth");
Grant Likelya87fa1d2014-11-03 15:15:35 +0000403 selftest(rc == -ENODATA, "unmatched string; rc=%i\n", rc);
Grant Likely7aff0fe2011-12-12 09:25:58 -0700404 rc = of_property_match_string(np, "missing-property", "blah");
Grant Likelya87fa1d2014-11-03 15:15:35 +0000405 selftest(rc == -EINVAL, "missing property; rc=%i\n", rc);
Grant Likely7aff0fe2011-12-12 09:25:58 -0700406 rc = of_property_match_string(np, "empty-property", "blah");
Grant Likelya87fa1d2014-11-03 15:15:35 +0000407 selftest(rc == -ENODATA, "empty property; rc=%i\n", rc);
Grant Likely7aff0fe2011-12-12 09:25:58 -0700408 rc = of_property_match_string(np, "unterminated-string", "blah");
Grant Likelya87fa1d2014-11-03 15:15:35 +0000409 selftest(rc == -EILSEQ, "unterminated string; rc=%i\n", rc);
410
411 /* of_property_count_strings() tests */
412 rc = of_property_count_strings(np, "string-property");
413 selftest(rc == 1, "Incorrect string count; rc=%i\n", rc);
414 rc = of_property_count_strings(np, "phandle-list-names");
415 selftest(rc == 3, "Incorrect string count; rc=%i\n", rc);
416 rc = of_property_count_strings(np, "unterminated-string");
417 selftest(rc == -EILSEQ, "unterminated string; rc=%i\n", rc);
418 rc = of_property_count_strings(np, "unterminated-string-list");
419 selftest(rc == -EILSEQ, "unterminated string array; rc=%i\n", rc);
420
421 /* of_property_read_string_index() tests */
422 rc = of_property_read_string_index(np, "string-property", 0, strings);
423 selftest(rc == 0 && !strcmp(strings[0], "foobar"), "of_property_read_string_index() failure; rc=%i\n", rc);
424 strings[0] = NULL;
425 rc = of_property_read_string_index(np, "string-property", 1, strings);
426 selftest(rc == -ENODATA && strings[0] == NULL, "of_property_read_string_index() failure; rc=%i\n", rc);
427 rc = of_property_read_string_index(np, "phandle-list-names", 0, strings);
428 selftest(rc == 0 && !strcmp(strings[0], "first"), "of_property_read_string_index() failure; rc=%i\n", rc);
429 rc = of_property_read_string_index(np, "phandle-list-names", 1, strings);
430 selftest(rc == 0 && !strcmp(strings[0], "second"), "of_property_read_string_index() failure; rc=%i\n", rc);
431 rc = of_property_read_string_index(np, "phandle-list-names", 2, strings);
432 selftest(rc == 0 && !strcmp(strings[0], "third"), "of_property_read_string_index() failure; rc=%i\n", rc);
433 strings[0] = NULL;
434 rc = of_property_read_string_index(np, "phandle-list-names", 3, strings);
435 selftest(rc == -ENODATA && strings[0] == NULL, "of_property_read_string_index() failure; rc=%i\n", rc);
436 strings[0] = NULL;
437 rc = of_property_read_string_index(np, "unterminated-string", 0, strings);
438 selftest(rc == -EILSEQ && strings[0] == NULL, "of_property_read_string_index() failure; rc=%i\n", rc);
439 rc = of_property_read_string_index(np, "unterminated-string-list", 0, strings);
440 selftest(rc == 0 && !strcmp(strings[0], "first"), "of_property_read_string_index() failure; rc=%i\n", rc);
441 strings[0] = NULL;
442 rc = of_property_read_string_index(np, "unterminated-string-list", 2, strings); /* should fail */
443 selftest(rc == -EILSEQ && strings[0] == NULL, "of_property_read_string_index() failure; rc=%i\n", rc);
444 strings[1] = NULL;
445
446 /* of_property_read_string_array() tests */
447 rc = of_property_read_string_array(np, "string-property", strings, 4);
448 selftest(rc == 1, "Incorrect string count; rc=%i\n", rc);
449 rc = of_property_read_string_array(np, "phandle-list-names", strings, 4);
450 selftest(rc == 3, "Incorrect string count; rc=%i\n", rc);
451 rc = of_property_read_string_array(np, "unterminated-string", strings, 4);
452 selftest(rc == -EILSEQ, "unterminated string; rc=%i\n", rc);
453 /* -- An incorrectly formed string should cause a failure */
454 rc = of_property_read_string_array(np, "unterminated-string-list", strings, 4);
455 selftest(rc == -EILSEQ, "unterminated string array; rc=%i\n", rc);
456 /* -- parsing the correctly formed strings should still work: */
457 strings[2] = NULL;
458 rc = of_property_read_string_array(np, "unterminated-string-list", strings, 2);
459 selftest(rc == 2 && strings[2] == NULL, "of_property_read_string_array() failure; rc=%i\n", rc);
460 strings[1] = NULL;
461 rc = of_property_read_string_array(np, "phandle-list-names", strings, 1);
462 selftest(rc == 1 && strings[1] == NULL, "Overwrote end of string array; rc=%i, str='%s'\n", rc, strings[1]);
Grant Likely7aff0fe2011-12-12 09:25:58 -0700463}
464
Pantelis Antoniou69843392014-07-04 19:58:47 +0300465#define propcmp(p1, p2) (((p1)->length == (p2)->length) && \
466 (p1)->value && (p2)->value && \
467 !memcmp((p1)->value, (p2)->value, (p1)->length) && \
468 !strcmp((p1)->name, (p2)->name))
469static void __init of_selftest_property_copy(void)
470{
471#ifdef CONFIG_OF_DYNAMIC
472 struct property p1 = { .name = "p1", .length = 0, .value = "" };
473 struct property p2 = { .name = "p2", .length = 5, .value = "abcd" };
474 struct property *new;
475
476 new = __of_prop_dup(&p1, GFP_KERNEL);
477 selftest(new && propcmp(&p1, new), "empty property didn't copy correctly\n");
478 kfree(new->value);
479 kfree(new->name);
480 kfree(new);
481
482 new = __of_prop_dup(&p2, GFP_KERNEL);
483 selftest(new && propcmp(&p2, new), "non-empty property didn't copy correctly\n");
484 kfree(new->value);
485 kfree(new->name);
486 kfree(new);
487#endif
488}
489
Pantelis Antoniou201c9102014-07-04 19:58:49 +0300490static void __init of_selftest_changeset(void)
491{
492#ifdef CONFIG_OF_DYNAMIC
493 struct property *ppadd, padd = { .name = "prop-add", .length = 0, .value = "" };
494 struct property *ppupdate, pupdate = { .name = "prop-update", .length = 5, .value = "abcd" };
495 struct property *ppremove;
Grant Likelye5179582014-11-17 22:31:32 +0000496 struct device_node *n1, *n2, *n21, *nremove, *parent, *np;
Pantelis Antoniou201c9102014-07-04 19:58:49 +0300497 struct of_changeset chgset;
498
Grant Likelye5179582014-11-17 22:31:32 +0000499 n1 = __of_node_dup(NULL, "/testcase-data/changeset/n1");
Pantelis Antoniou201c9102014-07-04 19:58:49 +0300500 selftest(n1, "testcase setup failure\n");
Grant Likelye5179582014-11-17 22:31:32 +0000501 n2 = __of_node_dup(NULL, "/testcase-data/changeset/n2");
Pantelis Antoniou201c9102014-07-04 19:58:49 +0300502 selftest(n2, "testcase setup failure\n");
Grant Likelye5179582014-11-17 22:31:32 +0000503 n21 = __of_node_dup(NULL, "%s/%s", "/testcase-data/changeset/n2", "n21");
Pantelis Antoniou201c9102014-07-04 19:58:49 +0300504 selftest(n21, "testcase setup failure %p\n", n21);
505 nremove = of_find_node_by_path("/testcase-data/changeset/node-remove");
506 selftest(nremove, "testcase setup failure\n");
507 ppadd = __of_prop_dup(&padd, GFP_KERNEL);
508 selftest(ppadd, "testcase setup failure\n");
509 ppupdate = __of_prop_dup(&pupdate, GFP_KERNEL);
510 selftest(ppupdate, "testcase setup failure\n");
511 parent = nremove->parent;
512 n1->parent = parent;
513 n2->parent = parent;
514 n21->parent = n2;
515 n2->child = n21;
516 ppremove = of_find_property(parent, "prop-remove", NULL);
517 selftest(ppremove, "failed to find removal prop");
518
519 of_changeset_init(&chgset);
520 selftest(!of_changeset_attach_node(&chgset, n1), "fail attach n1\n");
521 selftest(!of_changeset_attach_node(&chgset, n2), "fail attach n2\n");
522 selftest(!of_changeset_detach_node(&chgset, nremove), "fail remove node\n");
523 selftest(!of_changeset_attach_node(&chgset, n21), "fail attach n21\n");
524 selftest(!of_changeset_add_property(&chgset, parent, ppadd), "fail add prop\n");
525 selftest(!of_changeset_update_property(&chgset, parent, ppupdate), "fail update prop\n");
526 selftest(!of_changeset_remove_property(&chgset, parent, ppremove), "fail remove prop\n");
527 mutex_lock(&of_mutex);
528 selftest(!of_changeset_apply(&chgset), "apply failed\n");
529 mutex_unlock(&of_mutex);
530
Grant Likelye5179582014-11-17 22:31:32 +0000531 /* Make sure node names are constructed correctly */
532 selftest((np = of_find_node_by_path("/testcase-data/changeset/n2/n21")),
533 "'%s' not added\n", n21->full_name);
Markus Elfringc46ca3c2014-12-02 13:54:00 +0100534 of_node_put(np);
Grant Likelye5179582014-11-17 22:31:32 +0000535
Pantelis Antoniou201c9102014-07-04 19:58:49 +0300536 mutex_lock(&of_mutex);
537 selftest(!of_changeset_revert(&chgset), "revert failed\n");
538 mutex_unlock(&of_mutex);
539
540 of_changeset_destroy(&chgset);
541#endif
542}
543
Grant Likelya9f10ca2013-10-11 22:04:23 +0100544static void __init of_selftest_parse_interrupts(void)
545{
546 struct device_node *np;
547 struct of_phandle_args args;
548 int i, rc;
549
550 np = of_find_node_by_path("/testcase-data/interrupts/interrupts0");
551 if (!np) {
552 pr_err("missing testcase data\n");
553 return;
554 }
555
556 for (i = 0; i < 4; i++) {
557 bool passed = true;
Frank Rowand3db316d2015-03-14 00:02:31 -0700558
Grant Likelya9f10ca2013-10-11 22:04:23 +0100559 args.args_count = 0;
560 rc = of_irq_parse_one(np, i, &args);
561
562 passed &= !rc;
563 passed &= (args.args_count == 1);
564 passed &= (args.args[0] == (i + 1));
565
566 selftest(passed, "index %i - data error on node %s rc=%i\n",
567 i, args.np->full_name, rc);
568 }
569 of_node_put(np);
570
571 np = of_find_node_by_path("/testcase-data/interrupts/interrupts1");
572 if (!np) {
573 pr_err("missing testcase data\n");
574 return;
575 }
576
577 for (i = 0; i < 4; i++) {
578 bool passed = true;
Frank Rowand3db316d2015-03-14 00:02:31 -0700579
Grant Likelya9f10ca2013-10-11 22:04:23 +0100580 args.args_count = 0;
581 rc = of_irq_parse_one(np, i, &args);
582
583 /* Test the values from tests-phandle.dtsi */
584 switch (i) {
585 case 0:
586 passed &= !rc;
587 passed &= (args.args_count == 1);
588 passed &= (args.args[0] == 9);
589 break;
590 case 1:
591 passed &= !rc;
592 passed &= (args.args_count == 3);
593 passed &= (args.args[0] == 10);
594 passed &= (args.args[1] == 11);
595 passed &= (args.args[2] == 12);
596 break;
597 case 2:
598 passed &= !rc;
599 passed &= (args.args_count == 2);
600 passed &= (args.args[0] == 13);
601 passed &= (args.args[1] == 14);
602 break;
603 case 3:
604 passed &= !rc;
605 passed &= (args.args_count == 2);
606 passed &= (args.args[0] == 15);
607 passed &= (args.args[1] == 16);
608 break;
609 default:
610 passed = false;
611 }
612 selftest(passed, "index %i - data error on node %s rc=%i\n",
613 i, args.np->full_name, rc);
614 }
615 of_node_put(np);
616}
617
Grant Likely79d97012013-09-19 16:47:37 -0500618static void __init of_selftest_parse_interrupts_extended(void)
619{
620 struct device_node *np;
621 struct of_phandle_args args;
622 int i, rc;
623
624 np = of_find_node_by_path("/testcase-data/interrupts/interrupts-extended0");
625 if (!np) {
626 pr_err("missing testcase data\n");
627 return;
628 }
629
630 for (i = 0; i < 7; i++) {
631 bool passed = true;
Frank Rowand3db316d2015-03-14 00:02:31 -0700632
Grant Likely79d97012013-09-19 16:47:37 -0500633 rc = of_irq_parse_one(np, i, &args);
634
635 /* Test the values from tests-phandle.dtsi */
636 switch (i) {
637 case 0:
638 passed &= !rc;
639 passed &= (args.args_count == 1);
640 passed &= (args.args[0] == 1);
641 break;
642 case 1:
643 passed &= !rc;
644 passed &= (args.args_count == 3);
645 passed &= (args.args[0] == 2);
646 passed &= (args.args[1] == 3);
647 passed &= (args.args[2] == 4);
648 break;
649 case 2:
650 passed &= !rc;
651 passed &= (args.args_count == 2);
652 passed &= (args.args[0] == 5);
653 passed &= (args.args[1] == 6);
654 break;
655 case 3:
656 passed &= !rc;
657 passed &= (args.args_count == 1);
658 passed &= (args.args[0] == 9);
659 break;
660 case 4:
661 passed &= !rc;
662 passed &= (args.args_count == 3);
663 passed &= (args.args[0] == 10);
664 passed &= (args.args[1] == 11);
665 passed &= (args.args[2] == 12);
666 break;
667 case 5:
668 passed &= !rc;
669 passed &= (args.args_count == 2);
670 passed &= (args.args[0] == 13);
671 passed &= (args.args[1] == 14);
672 break;
673 case 6:
674 passed &= !rc;
675 passed &= (args.args_count == 1);
676 passed &= (args.args[0] == 15);
677 break;
678 default:
679 passed = false;
680 }
681
682 selftest(passed, "index %i - data error on node %s rc=%i\n",
683 i, args.np->full_name, rc);
684 }
685 of_node_put(np);
686}
687
Frank Rowandafaed7a2015-03-14 00:00:36 -0700688static const struct of_device_id match_node_table[] = {
Grant Likely1f42e5d2014-02-18 21:38:55 +0000689 { .data = "A", .name = "name0", }, /* Name alone is lowest priority */
690 { .data = "B", .type = "type1", }, /* followed by type alone */
691
692 { .data = "Ca", .name = "name2", .type = "type1", }, /* followed by both together */
693 { .data = "Cb", .name = "name2", }, /* Only match when type doesn't match */
694 { .data = "Cc", .name = "name2", .type = "type2", },
695
696 { .data = "E", .compatible = "compat3" },
697 { .data = "G", .compatible = "compat2", },
698 { .data = "H", .compatible = "compat2", .name = "name5", },
699 { .data = "I", .compatible = "compat2", .type = "type1", },
700 { .data = "J", .compatible = "compat2", .type = "type1", .name = "name8", },
701 { .data = "K", .compatible = "compat2", .name = "name9", },
702 {}
703};
704
705static struct {
706 const char *path;
707 const char *data;
708} match_node_tests[] = {
709 { .path = "/testcase-data/match-node/name0", .data = "A", },
710 { .path = "/testcase-data/match-node/name1", .data = "B", },
711 { .path = "/testcase-data/match-node/a/name2", .data = "Ca", },
712 { .path = "/testcase-data/match-node/b/name2", .data = "Cb", },
713 { .path = "/testcase-data/match-node/c/name2", .data = "Cc", },
714 { .path = "/testcase-data/match-node/name3", .data = "E", },
715 { .path = "/testcase-data/match-node/name4", .data = "G", },
716 { .path = "/testcase-data/match-node/name5", .data = "H", },
717 { .path = "/testcase-data/match-node/name6", .data = "G", },
718 { .path = "/testcase-data/match-node/name7", .data = "I", },
719 { .path = "/testcase-data/match-node/name8", .data = "J", },
720 { .path = "/testcase-data/match-node/name9", .data = "K", },
721};
722
723static void __init of_selftest_match_node(void)
724{
725 struct device_node *np;
726 const struct of_device_id *match;
727 int i;
728
729 for (i = 0; i < ARRAY_SIZE(match_node_tests); i++) {
730 np = of_find_node_by_path(match_node_tests[i].path);
731 if (!np) {
732 selftest(0, "missing testcase node %s\n",
733 match_node_tests[i].path);
734 continue;
735 }
736
737 match = of_match_node(match_node_table, np);
738 if (!match) {
739 selftest(0, "%s didn't match anything\n",
740 match_node_tests[i].path);
741 continue;
742 }
743
744 if (strcmp(match->data, match_node_tests[i].data) != 0) {
745 selftest(0, "%s got wrong match. expected %s, got %s\n",
746 match_node_tests[i].path, match_node_tests[i].data,
747 (const char *)match->data);
748 continue;
749 }
750 selftest(1, "passed");
751 }
752}
753
Grant Likely851da972014-11-04 13:14:13 +0000754struct device test_bus = {
755 .init_name = "unittest-bus",
756};
Rob Herring82c0f582014-04-23 17:57:40 -0500757static void __init of_selftest_platform_populate(void)
758{
Grant Likely851da972014-11-04 13:14:13 +0000759 int irq, rc;
760 struct device_node *np, *child, *grandchild;
Rob Herring82c0f582014-04-23 17:57:40 -0500761 struct platform_device *pdev;
Frank Rowandafaed7a2015-03-14 00:00:36 -0700762 const struct of_device_id match[] = {
Rob Herringfb2caa52014-05-13 10:07:54 -0500763 { .compatible = "test-device", },
764 {}
765 };
Rob Herring82c0f582014-04-23 17:57:40 -0500766
767 np = of_find_node_by_path("/testcase-data");
768 of_platform_populate(np, of_default_bus_match_table, NULL, NULL);
769
770 /* Test that a missing irq domain returns -EPROBE_DEFER */
771 np = of_find_node_by_path("/testcase-data/testcase-device1");
772 pdev = of_find_device_by_node(np);
Rob Herring7d1cdc82014-05-13 10:07:29 -0500773 selftest(pdev, "device 1 creation failed\n");
774
Rob Herring82c0f582014-04-23 17:57:40 -0500775 irq = platform_get_irq(pdev, 0);
Rob Herring7d1cdc82014-05-13 10:07:29 -0500776 selftest(irq == -EPROBE_DEFER, "device deferred probe failed - %d\n", irq);
Rob Herring82c0f582014-04-23 17:57:40 -0500777
778 /* Test that a parsing failure does not return -EPROBE_DEFER */
779 np = of_find_node_by_path("/testcase-data/testcase-device2");
780 pdev = of_find_device_by_node(np);
Rob Herring7d1cdc82014-05-13 10:07:29 -0500781 selftest(pdev, "device 2 creation failed\n");
Rob Herring82c0f582014-04-23 17:57:40 -0500782 irq = platform_get_irq(pdev, 0);
Rob Herring7d1cdc82014-05-13 10:07:29 -0500783 selftest(irq < 0 && irq != -EPROBE_DEFER, "device parsing error failed - %d\n", irq);
Rob Herring82c0f582014-04-23 17:57:40 -0500784
Grant Likely851da972014-11-04 13:14:13 +0000785 if (selftest(np = of_find_node_by_path("/testcase-data/platform-tests"),
786 "No testcase data in device tree\n"));
Rob Herringfb2caa52014-05-13 10:07:54 -0500787 return;
Grant Likely851da972014-11-04 13:14:13 +0000788
789 if (selftest(!(rc = device_register(&test_bus)),
790 "testbus registration failed; rc=%i\n", rc));
791 return;
Rob Herringfb2caa52014-05-13 10:07:54 -0500792
793 for_each_child_of_node(np, child) {
Grant Likely851da972014-11-04 13:14:13 +0000794 of_platform_populate(child, match, NULL, &test_bus);
Rob Herringfb2caa52014-05-13 10:07:54 -0500795 for_each_child_of_node(child, grandchild)
796 selftest(of_find_device_by_node(grandchild),
797 "Could not create device for node '%s'\n",
798 grandchild->name);
799 }
Grant Likely851da972014-11-04 13:14:13 +0000800
801 of_platform_depopulate(&test_bus);
802 for_each_child_of_node(np, child) {
803 for_each_child_of_node(child, grandchild)
804 selftest(!of_find_device_by_node(grandchild),
805 "device didn't get destroyed '%s'\n",
806 grandchild->name);
807 }
808
809 device_unregister(&test_bus);
810 of_node_put(np);
Rob Herring82c0f582014-04-23 17:57:40 -0500811}
812
Gaurav Minochaae9304c2014-07-16 23:09:39 -0700813/**
814 * update_node_properties - adds the properties
815 * of np into dup node (present in live tree) and
816 * updates parent of children of np to dup.
817 *
818 * @np: node already present in live tree
819 * @dup: node present in live tree to be updated
820 */
821static void update_node_properties(struct device_node *np,
822 struct device_node *dup)
823{
824 struct property *prop;
825 struct device_node *child;
826
827 for_each_property_of_node(np, prop)
828 of_add_property(dup, prop);
829
830 for_each_child_of_node(np, child)
831 child->parent = dup;
832}
833
834/**
835 * attach_node_and_children - attaches nodes
836 * and its children to live tree
837 *
838 * @np: Node to attach to live tree
839 */
840static int attach_node_and_children(struct device_node *np)
841{
Grant Likely5063e252014-10-03 16:28:27 +0100842 struct device_node *next, *dup, *child;
Gaurav Minocha3ce04b42015-01-10 23:19:51 -0800843 unsigned long flags;
Gaurav Minochaae9304c2014-07-16 23:09:39 -0700844
Grant Likely5063e252014-10-03 16:28:27 +0100845 dup = of_find_node_by_path(np->full_name);
846 if (dup) {
847 update_node_properties(np, dup);
848 return 0;
849 }
Gaurav Minochaae9304c2014-07-16 23:09:39 -0700850
Grant Likely5063e252014-10-03 16:28:27 +0100851 child = np->child;
852 np->child = NULL;
Gaurav Minocha3ce04b42015-01-10 23:19:51 -0800853
854 mutex_lock(&of_mutex);
855 raw_spin_lock_irqsave(&devtree_lock, flags);
856 np->sibling = np->parent->child;
857 np->parent->child = np;
858 of_node_clear_flag(np, OF_DETACHED);
859 raw_spin_unlock_irqrestore(&devtree_lock, flags);
860
861 __of_attach_node_sysfs(np);
862 mutex_unlock(&of_mutex);
863
Grant Likely5063e252014-10-03 16:28:27 +0100864 while (child) {
865 next = child->sibling;
866 attach_node_and_children(child);
867 child = next;
Gaurav Minochaae9304c2014-07-16 23:09:39 -0700868 }
869
870 return 0;
871}
872
873/**
874 * selftest_data_add - Reads, copies data from
875 * linked tree and attaches it to the live tree
876 */
877static int __init selftest_data_add(void)
878{
879 void *selftest_data;
Gaurav Minochab951f9d2014-07-26 12:48:50 -0700880 struct device_node *selftest_data_node, *np;
Frank Rowandc8547112015-03-14 00:04:24 -0700881 /*
882 * __dtb_testcases_begin[] and __dtb_testcases_end[] are magically
883 * created by cmd_dt_S_dtb in scripts/Makefile.lib
884 */
Gaurav Minochaae9304c2014-07-16 23:09:39 -0700885 extern uint8_t __dtb_testcases_begin[];
886 extern uint8_t __dtb_testcases_end[];
887 const int size = __dtb_testcases_end - __dtb_testcases_begin;
Grant Likely2eb46da2014-10-02 14:36:46 +0100888 int rc;
Gaurav Minochaae9304c2014-07-16 23:09:39 -0700889
Gaurav Minochab951f9d2014-07-26 12:48:50 -0700890 if (!size) {
Gaurav Minochaae9304c2014-07-16 23:09:39 -0700891 pr_warn("%s: No testcase data to attach; not running tests\n",
892 __func__);
893 return -ENODATA;
894 }
895
896 /* creating copy */
897 selftest_data = kmemdup(__dtb_testcases_begin, size, GFP_KERNEL);
898
899 if (!selftest_data) {
900 pr_warn("%s: Failed to allocate memory for selftest_data; "
901 "not running tests\n", __func__);
902 return -ENOMEM;
903 }
904 of_fdt_unflatten_tree(selftest_data, &selftest_data_node);
Gaurav Minochab951f9d2014-07-26 12:48:50 -0700905 if (!selftest_data_node) {
906 pr_warn("%s: No tree to attach; not running tests\n", __func__);
907 return -ENODATA;
908 }
Grant Likely2eb46da2014-10-02 14:36:46 +0100909 of_node_set_flag(selftest_data_node, OF_DETACHED);
910 rc = of_resolve_phandles(selftest_data_node);
911 if (rc) {
912 pr_err("%s: Failed to resolve phandles (rc=%i)\n", __func__, rc);
913 return -EINVAL;
914 }
Gaurav Minochab951f9d2014-07-26 12:48:50 -0700915
Grant Likely5063e252014-10-03 16:28:27 +0100916 if (!of_root) {
Grant Likely5063e252014-10-03 16:28:27 +0100917 of_root = selftest_data_node;
Gaurav Minochab951f9d2014-07-26 12:48:50 -0700918 for_each_of_allnodes(np)
919 __of_attach_node_sysfs(np);
920 of_aliases = of_find_node_by_path("/aliases");
921 of_chosen = of_find_node_by_path("/chosen");
922 return 0;
923 }
Gaurav Minochaae9304c2014-07-16 23:09:39 -0700924
925 /* attach the sub-tree to live tree */
Grant Likely5063e252014-10-03 16:28:27 +0100926 np = selftest_data_node->child;
927 while (np) {
928 struct device_node *next = np->sibling;
Frank Rowand3db316d2015-03-14 00:02:31 -0700929
Grant Likely5063e252014-10-03 16:28:27 +0100930 np->parent = of_root;
931 attach_node_and_children(np);
932 np = next;
933 }
934 return 0;
Gaurav Minochaae9304c2014-07-16 23:09:39 -0700935}
936
Pantelis Antoniou177d2712014-10-28 22:35:59 +0200937#ifdef CONFIG_OF_OVERLAY
938
939static int selftest_probe(struct platform_device *pdev)
940{
941 struct device *dev = &pdev->dev;
942 struct device_node *np = dev->of_node;
943
944 if (np == NULL) {
945 dev_err(dev, "No OF data for device\n");
946 return -EINVAL;
947
948 }
949
950 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name);
Pantelis Antoniou6b1271d2014-12-19 14:34:34 +0200951
952 of_platform_populate(np, NULL, NULL, &pdev->dev);
953
Pantelis Antoniou177d2712014-10-28 22:35:59 +0200954 return 0;
955}
956
957static int selftest_remove(struct platform_device *pdev)
958{
959 struct device *dev = &pdev->dev;
960 struct device_node *np = dev->of_node;
961
962 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name);
963 return 0;
964}
965
Frank Rowandafaed7a2015-03-14 00:00:36 -0700966static const struct of_device_id selftest_match[] = {
Pantelis Antoniou177d2712014-10-28 22:35:59 +0200967 { .compatible = "selftest", },
968 {},
969};
Pantelis Antoniou177d2712014-10-28 22:35:59 +0200970
971static struct platform_driver selftest_driver = {
972 .probe = selftest_probe,
973 .remove = selftest_remove,
974 .driver = {
975 .name = "selftest",
976 .owner = THIS_MODULE,
977 .of_match_table = of_match_ptr(selftest_match),
978 },
979};
980
981/* get the platform device instantiated at the path */
982static struct platform_device *of_path_to_platform_device(const char *path)
983{
984 struct device_node *np;
985 struct platform_device *pdev;
986
987 np = of_find_node_by_path(path);
988 if (np == NULL)
989 return NULL;
990
991 pdev = of_find_device_by_node(np);
992 of_node_put(np);
993
994 return pdev;
995}
996
997/* find out if a platform device exists at that path */
998static int of_path_platform_device_exists(const char *path)
999{
1000 struct platform_device *pdev;
1001
1002 pdev = of_path_to_platform_device(path);
1003 platform_device_put(pdev);
1004 return pdev != NULL;
1005}
1006
Arnd Bergmann4252de32015-03-04 20:49:47 +01001007#if IS_BUILTIN(CONFIG_I2C)
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001008
1009/* get the i2c client device instantiated at the path */
1010static struct i2c_client *of_path_to_i2c_client(const char *path)
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001011{
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001012 struct device_node *np;
1013 struct i2c_client *client;
1014
1015 np = of_find_node_by_path(path);
1016 if (np == NULL)
1017 return NULL;
1018
1019 client = of_find_i2c_device_by_node(np);
1020 of_node_put(np);
1021
1022 return client;
1023}
1024
1025/* find out if a i2c client device exists at that path */
1026static int of_path_i2c_client_exists(const char *path)
1027{
1028 struct i2c_client *client;
1029
1030 client = of_path_to_i2c_client(path);
1031 if (client)
1032 put_device(&client->dev);
1033 return client != NULL;
1034}
1035#else
1036static int of_path_i2c_client_exists(const char *path)
1037{
1038 return 0;
1039}
1040#endif
1041
1042enum overlay_type {
1043 PDEV_OVERLAY,
1044 I2C_OVERLAY
1045};
1046
1047static int of_path_device_type_exists(const char *path,
1048 enum overlay_type ovtype)
1049{
1050 switch (ovtype) {
1051 case PDEV_OVERLAY:
1052 return of_path_platform_device_exists(path);
1053 case I2C_OVERLAY:
1054 return of_path_i2c_client_exists(path);
1055 }
1056 return 0;
1057}
1058
1059static const char *selftest_path(int nr, enum overlay_type ovtype)
1060{
1061 const char *base;
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001062 static char buf[256];
1063
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001064 switch (ovtype) {
1065 case PDEV_OVERLAY:
1066 base = "/testcase-data/overlay-node/test-bus";
1067 break;
1068 case I2C_OVERLAY:
1069 base = "/testcase-data/overlay-node/test-bus/i2c-test-bus";
1070 break;
1071 default:
1072 buf[0] = '\0';
1073 return buf;
1074 }
1075 snprintf(buf, sizeof(buf) - 1, "%s/test-selftest%d", base, nr);
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001076 buf[sizeof(buf) - 1] = '\0';
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001077 return buf;
1078}
1079
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001080static int of_selftest_device_exists(int selftest_nr, enum overlay_type ovtype)
1081{
1082 const char *path;
1083
1084 path = selftest_path(selftest_nr, ovtype);
1085
1086 switch (ovtype) {
1087 case PDEV_OVERLAY:
1088 return of_path_platform_device_exists(path);
1089 case I2C_OVERLAY:
1090 return of_path_i2c_client_exists(path);
1091 }
1092 return 0;
1093}
1094
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001095static const char *overlay_path(int nr)
1096{
1097 static char buf[256];
1098
1099 snprintf(buf, sizeof(buf) - 1,
1100 "/testcase-data/overlay%d", nr);
1101 buf[sizeof(buf) - 1] = '\0';
1102
1103 return buf;
1104}
1105
1106static const char *bus_path = "/testcase-data/overlay-node/test-bus";
1107
1108static int of_selftest_apply_overlay(int selftest_nr, int overlay_nr,
1109 int *overlay_id)
1110{
1111 struct device_node *np = NULL;
1112 int ret, id = -1;
1113
1114 np = of_find_node_by_path(overlay_path(overlay_nr));
1115 if (np == NULL) {
1116 selftest(0, "could not find overlay node @\"%s\"\n",
1117 overlay_path(overlay_nr));
1118 ret = -EINVAL;
1119 goto out;
1120 }
1121
1122 ret = of_overlay_create(np);
1123 if (ret < 0) {
1124 selftest(0, "could not create overlay from \"%s\"\n",
1125 overlay_path(overlay_nr));
1126 goto out;
1127 }
1128 id = ret;
1129
1130 ret = 0;
1131
1132out:
1133 of_node_put(np);
1134
1135 if (overlay_id)
1136 *overlay_id = id;
1137
1138 return ret;
1139}
1140
1141/* apply an overlay while checking before and after states */
1142static int of_selftest_apply_overlay_check(int overlay_nr, int selftest_nr,
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001143 int before, int after, enum overlay_type ovtype)
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001144{
1145 int ret;
1146
1147 /* selftest device must not be in before state */
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001148 if (of_selftest_device_exists(selftest_nr, ovtype) != before) {
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001149 selftest(0, "overlay @\"%s\" with device @\"%s\" %s\n",
1150 overlay_path(overlay_nr),
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001151 selftest_path(selftest_nr, ovtype),
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001152 !before ? "enabled" : "disabled");
1153 return -EINVAL;
1154 }
1155
1156 ret = of_selftest_apply_overlay(overlay_nr, selftest_nr, NULL);
1157 if (ret != 0) {
1158 /* of_selftest_apply_overlay already called selftest() */
1159 return ret;
1160 }
1161
1162 /* selftest device must be to set to after state */
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001163 if (of_selftest_device_exists(selftest_nr, ovtype) != after) {
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001164 selftest(0, "overlay @\"%s\" failed to create @\"%s\" %s\n",
1165 overlay_path(overlay_nr),
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001166 selftest_path(selftest_nr, ovtype),
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001167 !after ? "enabled" : "disabled");
1168 return -EINVAL;
1169 }
1170
1171 return 0;
1172}
1173
1174/* apply an overlay and then revert it while checking before, after states */
1175static int of_selftest_apply_revert_overlay_check(int overlay_nr,
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001176 int selftest_nr, int before, int after,
1177 enum overlay_type ovtype)
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001178{
1179 int ret, ov_id;
1180
1181 /* selftest device must be in before state */
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001182 if (of_selftest_device_exists(selftest_nr, ovtype) != before) {
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001183 selftest(0, "overlay @\"%s\" with device @\"%s\" %s\n",
1184 overlay_path(overlay_nr),
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001185 selftest_path(selftest_nr, ovtype),
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001186 !before ? "enabled" : "disabled");
1187 return -EINVAL;
1188 }
1189
1190 /* apply the overlay */
1191 ret = of_selftest_apply_overlay(overlay_nr, selftest_nr, &ov_id);
1192 if (ret != 0) {
1193 /* of_selftest_apply_overlay already called selftest() */
1194 return ret;
1195 }
1196
1197 /* selftest device must be in after state */
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001198 if (of_selftest_device_exists(selftest_nr, ovtype) != after) {
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001199 selftest(0, "overlay @\"%s\" failed to create @\"%s\" %s\n",
1200 overlay_path(overlay_nr),
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001201 selftest_path(selftest_nr, ovtype),
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001202 !after ? "enabled" : "disabled");
1203 return -EINVAL;
1204 }
1205
1206 ret = of_overlay_destroy(ov_id);
1207 if (ret != 0) {
1208 selftest(0, "overlay @\"%s\" failed to be destroyed @\"%s\"\n",
1209 overlay_path(overlay_nr),
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001210 selftest_path(selftest_nr, ovtype));
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001211 return ret;
1212 }
1213
1214 /* selftest device must be again in before state */
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001215 if (of_selftest_device_exists(selftest_nr, PDEV_OVERLAY) != before) {
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001216 selftest(0, "overlay @\"%s\" with device @\"%s\" %s\n",
1217 overlay_path(overlay_nr),
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001218 selftest_path(selftest_nr, ovtype),
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001219 !before ? "enabled" : "disabled");
1220 return -EINVAL;
1221 }
1222
1223 return 0;
1224}
1225
1226/* test activation of device */
1227static void of_selftest_overlay_0(void)
1228{
1229 int ret;
1230
1231 /* device should enable */
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001232 ret = of_selftest_apply_overlay_check(0, 0, 0, 1, PDEV_OVERLAY);
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001233 if (ret != 0)
1234 return;
1235
1236 selftest(1, "overlay test %d passed\n", 0);
1237}
1238
1239/* test deactivation of device */
1240static void of_selftest_overlay_1(void)
1241{
1242 int ret;
1243
1244 /* device should disable */
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001245 ret = of_selftest_apply_overlay_check(1, 1, 1, 0, PDEV_OVERLAY);
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001246 if (ret != 0)
1247 return;
1248
1249 selftest(1, "overlay test %d passed\n", 1);
1250}
1251
1252/* test activation of device */
1253static void of_selftest_overlay_2(void)
1254{
1255 int ret;
1256
1257 /* device should enable */
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001258 ret = of_selftest_apply_overlay_check(2, 2, 0, 1, PDEV_OVERLAY);
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001259 if (ret != 0)
1260 return;
1261
1262 selftest(1, "overlay test %d passed\n", 2);
1263}
1264
1265/* test deactivation of device */
1266static void of_selftest_overlay_3(void)
1267{
1268 int ret;
1269
1270 /* device should disable */
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001271 ret = of_selftest_apply_overlay_check(3, 3, 1, 0, PDEV_OVERLAY);
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001272 if (ret != 0)
1273 return;
1274
1275 selftest(1, "overlay test %d passed\n", 3);
1276}
1277
1278/* test activation of a full device node */
1279static void of_selftest_overlay_4(void)
1280{
1281 int ret;
1282
1283 /* device should disable */
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001284 ret = of_selftest_apply_overlay_check(4, 4, 0, 1, PDEV_OVERLAY);
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001285 if (ret != 0)
1286 return;
1287
1288 selftest(1, "overlay test %d passed\n", 4);
1289}
1290
1291/* test overlay apply/revert sequence */
1292static void of_selftest_overlay_5(void)
1293{
1294 int ret;
1295
1296 /* device should disable */
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001297 ret = of_selftest_apply_revert_overlay_check(5, 5, 0, 1, PDEV_OVERLAY);
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001298 if (ret != 0)
1299 return;
1300
1301 selftest(1, "overlay test %d passed\n", 5);
1302}
1303
1304/* test overlay application in sequence */
1305static void of_selftest_overlay_6(void)
1306{
1307 struct device_node *np;
1308 int ret, i, ov_id[2];
1309 int overlay_nr = 6, selftest_nr = 6;
1310 int before = 0, after = 1;
1311
1312 /* selftest device must be in before state */
1313 for (i = 0; i < 2; i++) {
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001314 if (of_selftest_device_exists(selftest_nr + i, PDEV_OVERLAY)
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001315 != before) {
1316 selftest(0, "overlay @\"%s\" with device @\"%s\" %s\n",
1317 overlay_path(overlay_nr + i),
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001318 selftest_path(selftest_nr + i,
1319 PDEV_OVERLAY),
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001320 !before ? "enabled" : "disabled");
1321 return;
1322 }
1323 }
1324
1325 /* apply the overlays */
1326 for (i = 0; i < 2; i++) {
1327
1328 np = of_find_node_by_path(overlay_path(overlay_nr + i));
1329 if (np == NULL) {
1330 selftest(0, "could not find overlay node @\"%s\"\n",
1331 overlay_path(overlay_nr + i));
1332 return;
1333 }
1334
1335 ret = of_overlay_create(np);
1336 if (ret < 0) {
1337 selftest(0, "could not create overlay from \"%s\"\n",
1338 overlay_path(overlay_nr + i));
1339 return;
1340 }
1341 ov_id[i] = ret;
1342 }
1343
1344 for (i = 0; i < 2; i++) {
1345 /* selftest device must be in after state */
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001346 if (of_selftest_device_exists(selftest_nr + i, PDEV_OVERLAY)
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001347 != after) {
1348 selftest(0, "overlay @\"%s\" failed @\"%s\" %s\n",
1349 overlay_path(overlay_nr + i),
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001350 selftest_path(selftest_nr + i,
1351 PDEV_OVERLAY),
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001352 !after ? "enabled" : "disabled");
1353 return;
1354 }
1355 }
1356
1357 for (i = 1; i >= 0; i--) {
1358 ret = of_overlay_destroy(ov_id[i]);
1359 if (ret != 0) {
1360 selftest(0, "overlay @\"%s\" failed destroy @\"%s\"\n",
1361 overlay_path(overlay_nr + i),
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001362 selftest_path(selftest_nr + i,
1363 PDEV_OVERLAY));
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001364 return;
1365 }
1366 }
1367
1368 for (i = 0; i < 2; i++) {
1369 /* selftest device must be again in before state */
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001370 if (of_selftest_device_exists(selftest_nr + i, PDEV_OVERLAY)
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001371 != before) {
1372 selftest(0, "overlay @\"%s\" with device @\"%s\" %s\n",
1373 overlay_path(overlay_nr + i),
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001374 selftest_path(selftest_nr + i,
1375 PDEV_OVERLAY),
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001376 !before ? "enabled" : "disabled");
1377 return;
1378 }
1379 }
1380
1381 selftest(1, "overlay test %d passed\n", 6);
1382}
1383
1384/* test overlay application in sequence */
1385static void of_selftest_overlay_8(void)
1386{
1387 struct device_node *np;
1388 int ret, i, ov_id[2];
1389 int overlay_nr = 8, selftest_nr = 8;
1390
1391 /* we don't care about device state in this test */
1392
1393 /* apply the overlays */
1394 for (i = 0; i < 2; i++) {
1395
1396 np = of_find_node_by_path(overlay_path(overlay_nr + i));
1397 if (np == NULL) {
1398 selftest(0, "could not find overlay node @\"%s\"\n",
1399 overlay_path(overlay_nr + i));
1400 return;
1401 }
1402
1403 ret = of_overlay_create(np);
1404 if (ret < 0) {
1405 selftest(0, "could not create overlay from \"%s\"\n",
1406 overlay_path(overlay_nr + i));
1407 return;
1408 }
1409 ov_id[i] = ret;
1410 }
1411
1412 /* now try to remove first overlay (it should fail) */
1413 ret = of_overlay_destroy(ov_id[0]);
1414 if (ret == 0) {
1415 selftest(0, "overlay @\"%s\" was destroyed @\"%s\"\n",
1416 overlay_path(overlay_nr + 0),
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001417 selftest_path(selftest_nr,
1418 PDEV_OVERLAY));
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001419 return;
1420 }
1421
1422 /* removing them in order should work */
1423 for (i = 1; i >= 0; i--) {
1424 ret = of_overlay_destroy(ov_id[i]);
1425 if (ret != 0) {
1426 selftest(0, "overlay @\"%s\" not destroyed @\"%s\"\n",
1427 overlay_path(overlay_nr + i),
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001428 selftest_path(selftest_nr,
1429 PDEV_OVERLAY));
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001430 return;
1431 }
1432 }
1433
1434 selftest(1, "overlay test %d passed\n", 8);
1435}
1436
Pantelis Antoniou6b1271d2014-12-19 14:34:34 +02001437/* test insertion of a bus with parent devices */
1438static void of_selftest_overlay_10(void)
1439{
1440 int ret;
1441 char *child_path;
1442
1443 /* device should disable */
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001444 ret = of_selftest_apply_overlay_check(10, 10, 0, 1, PDEV_OVERLAY);
1445 if (selftest(ret == 0,
1446 "overlay test %d failed; overlay application\n", 10))
Pantelis Antoniou6b1271d2014-12-19 14:34:34 +02001447 return;
1448
1449 child_path = kasprintf(GFP_KERNEL, "%s/test-selftest101",
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001450 selftest_path(10, PDEV_OVERLAY));
Pantelis Antoniou6b1271d2014-12-19 14:34:34 +02001451 if (selftest(child_path, "overlay test %d failed; kasprintf\n", 10))
1452 return;
1453
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001454 ret = of_path_device_type_exists(child_path, PDEV_OVERLAY);
Pantelis Antoniou6b1271d2014-12-19 14:34:34 +02001455 kfree(child_path);
1456 if (selftest(ret, "overlay test %d failed; no child device\n", 10))
1457 return;
1458}
1459
1460/* test insertion of a bus with parent devices (and revert) */
1461static void of_selftest_overlay_11(void)
1462{
1463 int ret;
1464
1465 /* device should disable */
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001466 ret = of_selftest_apply_revert_overlay_check(11, 11, 0, 1,
1467 PDEV_OVERLAY);
1468 if (selftest(ret == 0,
1469 "overlay test %d failed; overlay application\n", 11))
Pantelis Antoniou6b1271d2014-12-19 14:34:34 +02001470 return;
1471}
1472
Arnd Bergmann4252de32015-03-04 20:49:47 +01001473#if IS_BUILTIN(CONFIG_I2C) && IS_ENABLED(CONFIG_OF_OVERLAY)
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001474
1475struct selftest_i2c_bus_data {
1476 struct platform_device *pdev;
1477 struct i2c_adapter adap;
1478};
1479
1480static int selftest_i2c_master_xfer(struct i2c_adapter *adap,
1481 struct i2c_msg *msgs, int num)
1482{
1483 struct selftest_i2c_bus_data *std = i2c_get_adapdata(adap);
1484
1485 (void)std;
1486
1487 return num;
1488}
1489
1490static u32 selftest_i2c_functionality(struct i2c_adapter *adap)
1491{
1492 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
1493}
1494
1495static const struct i2c_algorithm selftest_i2c_algo = {
1496 .master_xfer = selftest_i2c_master_xfer,
1497 .functionality = selftest_i2c_functionality,
1498};
1499
1500static int selftest_i2c_bus_probe(struct platform_device *pdev)
1501{
1502 struct device *dev = &pdev->dev;
1503 struct device_node *np = dev->of_node;
1504 struct selftest_i2c_bus_data *std;
1505 struct i2c_adapter *adap;
1506 int ret;
1507
1508 if (np == NULL) {
1509 dev_err(dev, "No OF data for device\n");
1510 return -EINVAL;
1511
1512 }
1513
1514 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name);
1515
1516 std = devm_kzalloc(dev, sizeof(*std), GFP_KERNEL);
1517 if (!std) {
1518 dev_err(dev, "Failed to allocate selftest i2c data\n");
1519 return -ENOMEM;
1520 }
1521
1522 /* link them together */
1523 std->pdev = pdev;
1524 platform_set_drvdata(pdev, std);
1525
1526 adap = &std->adap;
1527 i2c_set_adapdata(adap, std);
1528 adap->nr = -1;
1529 strlcpy(adap->name, pdev->name, sizeof(adap->name));
1530 adap->class = I2C_CLASS_DEPRECATED;
1531 adap->algo = &selftest_i2c_algo;
1532 adap->dev.parent = dev;
1533 adap->dev.of_node = dev->of_node;
1534 adap->timeout = 5 * HZ;
1535 adap->retries = 3;
1536
1537 ret = i2c_add_numbered_adapter(adap);
1538 if (ret != 0) {
1539 dev_err(dev, "Failed to add I2C adapter\n");
1540 return ret;
1541 }
1542
1543 return 0;
1544}
1545
1546static int selftest_i2c_bus_remove(struct platform_device *pdev)
1547{
1548 struct device *dev = &pdev->dev;
1549 struct device_node *np = dev->of_node;
1550 struct selftest_i2c_bus_data *std = platform_get_drvdata(pdev);
1551
1552 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name);
1553 i2c_del_adapter(&std->adap);
1554
1555 return 0;
1556}
1557
Frank Rowandafaed7a2015-03-14 00:00:36 -07001558static const struct of_device_id selftest_i2c_bus_match[] = {
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001559 { .compatible = "selftest-i2c-bus", },
1560 {},
1561};
1562
1563static struct platform_driver selftest_i2c_bus_driver = {
1564 .probe = selftest_i2c_bus_probe,
1565 .remove = selftest_i2c_bus_remove,
1566 .driver = {
1567 .name = "selftest-i2c-bus",
1568 .of_match_table = of_match_ptr(selftest_i2c_bus_match),
1569 },
1570};
1571
1572static int selftest_i2c_dev_probe(struct i2c_client *client,
1573 const struct i2c_device_id *id)
1574{
1575 struct device *dev = &client->dev;
1576 struct device_node *np = client->dev.of_node;
1577
1578 if (!np) {
1579 dev_err(dev, "No OF node\n");
1580 return -EINVAL;
1581 }
1582
1583 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name);
1584
1585 return 0;
1586};
1587
1588static int selftest_i2c_dev_remove(struct i2c_client *client)
1589{
1590 struct device *dev = &client->dev;
1591 struct device_node *np = client->dev.of_node;
1592
1593 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name);
1594 return 0;
1595}
1596
1597static const struct i2c_device_id selftest_i2c_dev_id[] = {
1598 { .name = "selftest-i2c-dev" },
1599 { }
1600};
1601
1602static struct i2c_driver selftest_i2c_dev_driver = {
1603 .driver = {
1604 .name = "selftest-i2c-dev",
1605 .owner = THIS_MODULE,
1606 },
1607 .probe = selftest_i2c_dev_probe,
1608 .remove = selftest_i2c_dev_remove,
1609 .id_table = selftest_i2c_dev_id,
1610};
1611
Arnd Bergmann4252de32015-03-04 20:49:47 +01001612#if IS_BUILTIN(CONFIG_I2C_MUX)
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001613
1614struct selftest_i2c_mux_data {
1615 int nchans;
1616 struct i2c_adapter *adap[];
1617};
1618
1619static int selftest_i2c_mux_select_chan(struct i2c_adapter *adap,
1620 void *client, u32 chan)
1621{
1622 return 0;
1623}
1624
1625static int selftest_i2c_mux_probe(struct i2c_client *client,
1626 const struct i2c_device_id *id)
1627{
1628 int ret, i, nchans, size;
1629 struct device *dev = &client->dev;
1630 struct i2c_adapter *adap = to_i2c_adapter(dev->parent);
1631 struct device_node *np = client->dev.of_node, *child;
1632 struct selftest_i2c_mux_data *stm;
1633 u32 reg, max_reg;
1634
1635 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name);
1636
1637 if (!np) {
1638 dev_err(dev, "No OF node\n");
1639 return -EINVAL;
1640 }
1641
1642 max_reg = (u32)-1;
1643 for_each_child_of_node(np, child) {
1644 ret = of_property_read_u32(child, "reg", &reg);
1645 if (ret)
1646 continue;
1647 if (max_reg == (u32)-1 || reg > max_reg)
1648 max_reg = reg;
1649 }
1650 nchans = max_reg == (u32)-1 ? 0 : max_reg + 1;
1651 if (nchans == 0) {
1652 dev_err(dev, "No channels\n");
1653 return -EINVAL;
1654 }
1655
1656 size = offsetof(struct selftest_i2c_mux_data, adap[nchans]);
1657 stm = devm_kzalloc(dev, size, GFP_KERNEL);
1658 if (!stm) {
1659 dev_err(dev, "Out of memory\n");
1660 return -ENOMEM;
1661 }
1662 stm->nchans = nchans;
1663 for (i = 0; i < nchans; i++) {
1664 stm->adap[i] = i2c_add_mux_adapter(adap, dev, client,
1665 0, i, 0, selftest_i2c_mux_select_chan, NULL);
1666 if (!stm->adap[i]) {
1667 dev_err(dev, "Failed to register mux #%d\n", i);
1668 for (i--; i >= 0; i--)
1669 i2c_del_mux_adapter(stm->adap[i]);
1670 return -ENODEV;
1671 }
1672 }
1673
1674 i2c_set_clientdata(client, stm);
1675
1676 return 0;
1677};
1678
1679static int selftest_i2c_mux_remove(struct i2c_client *client)
1680{
1681 struct device *dev = &client->dev;
1682 struct device_node *np = client->dev.of_node;
1683 struct selftest_i2c_mux_data *stm = i2c_get_clientdata(client);
1684 int i;
1685
1686 dev_dbg(dev, "%s for node @%s\n", __func__, np->full_name);
1687 for (i = stm->nchans - 1; i >= 0; i--)
1688 i2c_del_mux_adapter(stm->adap[i]);
1689 return 0;
1690}
1691
1692static const struct i2c_device_id selftest_i2c_mux_id[] = {
1693 { .name = "selftest-i2c-mux" },
1694 { }
1695};
1696
1697static struct i2c_driver selftest_i2c_mux_driver = {
1698 .driver = {
1699 .name = "selftest-i2c-mux",
1700 .owner = THIS_MODULE,
1701 },
1702 .probe = selftest_i2c_mux_probe,
1703 .remove = selftest_i2c_mux_remove,
1704 .id_table = selftest_i2c_mux_id,
1705};
1706
1707#endif
1708
1709static int of_selftest_overlay_i2c_init(void)
1710{
1711 int ret;
1712
1713 ret = i2c_add_driver(&selftest_i2c_dev_driver);
1714 if (selftest(ret == 0,
1715 "could not register selftest i2c device driver\n"))
1716 return ret;
1717
1718 ret = platform_driver_register(&selftest_i2c_bus_driver);
1719 if (selftest(ret == 0,
1720 "could not register selftest i2c bus driver\n"))
1721 return ret;
1722
Arnd Bergmann4252de32015-03-04 20:49:47 +01001723#if IS_BUILTIN(CONFIG_I2C_MUX)
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001724 ret = i2c_add_driver(&selftest_i2c_mux_driver);
1725 if (selftest(ret == 0,
1726 "could not register selftest i2c mux driver\n"))
1727 return ret;
1728#endif
1729
1730 return 0;
1731}
1732
1733static void of_selftest_overlay_i2c_cleanup(void)
1734{
Arnd Bergmann4252de32015-03-04 20:49:47 +01001735#if IS_BUILTIN(CONFIG_I2C_MUX)
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001736 i2c_del_driver(&selftest_i2c_mux_driver);
1737#endif
1738 platform_driver_unregister(&selftest_i2c_bus_driver);
1739 i2c_del_driver(&selftest_i2c_dev_driver);
1740}
1741
1742static void of_selftest_overlay_i2c_12(void)
1743{
1744 int ret;
1745
1746 /* device should enable */
1747 ret = of_selftest_apply_overlay_check(12, 12, 0, 1, I2C_OVERLAY);
1748 if (ret != 0)
1749 return;
1750
1751 selftest(1, "overlay test %d passed\n", 12);
1752}
1753
1754/* test deactivation of device */
1755static void of_selftest_overlay_i2c_13(void)
1756{
1757 int ret;
1758
1759 /* device should disable */
1760 ret = of_selftest_apply_overlay_check(13, 13, 1, 0, I2C_OVERLAY);
1761 if (ret != 0)
1762 return;
1763
1764 selftest(1, "overlay test %d passed\n", 13);
1765}
1766
1767/* just check for i2c mux existence */
1768static void of_selftest_overlay_i2c_14(void)
1769{
1770}
1771
1772static void of_selftest_overlay_i2c_15(void)
1773{
1774 int ret;
1775
1776 /* device should enable */
1777 ret = of_selftest_apply_overlay_check(16, 15, 0, 1, I2C_OVERLAY);
1778 if (ret != 0)
1779 return;
1780
1781 selftest(1, "overlay test %d passed\n", 15);
1782}
1783
1784#else
1785
1786static inline void of_selftest_overlay_i2c_14(void) { }
1787static inline void of_selftest_overlay_i2c_15(void) { }
1788
1789#endif
1790
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001791static void __init of_selftest_overlay(void)
1792{
1793 struct device_node *bus_np = NULL;
1794 int ret;
1795
1796 ret = platform_driver_register(&selftest_driver);
1797 if (ret != 0) {
1798 selftest(0, "could not register selftest driver\n");
1799 goto out;
1800 }
1801
1802 bus_np = of_find_node_by_path(bus_path);
1803 if (bus_np == NULL) {
1804 selftest(0, "could not find bus_path \"%s\"\n", bus_path);
1805 goto out;
1806 }
1807
1808 ret = of_platform_populate(bus_np, of_default_bus_match_table,
1809 NULL, NULL);
1810 if (ret != 0) {
1811 selftest(0, "could not populate bus @ \"%s\"\n", bus_path);
1812 goto out;
1813 }
1814
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001815 if (!of_selftest_device_exists(100, PDEV_OVERLAY)) {
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001816 selftest(0, "could not find selftest0 @ \"%s\"\n",
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001817 selftest_path(100, PDEV_OVERLAY));
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001818 goto out;
1819 }
1820
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001821 if (of_selftest_device_exists(101, PDEV_OVERLAY)) {
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001822 selftest(0, "selftest1 @ \"%s\" should not exist\n",
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001823 selftest_path(101, PDEV_OVERLAY));
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001824 goto out;
1825 }
1826
1827 selftest(1, "basic infrastructure of overlays passed");
1828
1829 /* tests in sequence */
1830 of_selftest_overlay_0();
1831 of_selftest_overlay_1();
1832 of_selftest_overlay_2();
1833 of_selftest_overlay_3();
1834 of_selftest_overlay_4();
1835 of_selftest_overlay_5();
1836 of_selftest_overlay_6();
1837 of_selftest_overlay_8();
1838
Pantelis Antoniou6b1271d2014-12-19 14:34:34 +02001839 of_selftest_overlay_10();
1840 of_selftest_overlay_11();
1841
Arnd Bergmann4252de32015-03-04 20:49:47 +01001842#if IS_BUILTIN(CONFIG_I2C)
Pantelis Antonioud5e75502015-01-12 19:02:49 +02001843 if (selftest(of_selftest_overlay_i2c_init() == 0, "i2c init failed\n"))
1844 goto out;
1845
1846 of_selftest_overlay_i2c_12();
1847 of_selftest_overlay_i2c_13();
1848 of_selftest_overlay_i2c_14();
1849 of_selftest_overlay_i2c_15();
1850
1851 of_selftest_overlay_i2c_cleanup();
1852#endif
1853
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001854out:
1855 of_node_put(bus_np);
1856}
1857
1858#else
1859static inline void __init of_selftest_overlay(void) { }
1860#endif
1861
Grant Likely53a42092011-12-12 09:25:57 -07001862static int __init of_selftest(void)
1863{
1864 struct device_node *np;
Gaurav Minochaae9304c2014-07-16 23:09:39 -07001865 int res;
1866
1867 /* adding data for selftest */
1868 res = selftest_data_add();
1869 if (res)
1870 return res;
Grant Likely788ec2f2014-11-19 17:13:44 +00001871 if (!of_aliases)
1872 of_aliases = of_find_node_by_path("/aliases");
Grant Likely53a42092011-12-12 09:25:57 -07001873
1874 np = of_find_node_by_path("/testcase-data/phandle-tests/consumer-a");
1875 if (!np) {
1876 pr_info("No testcase data in device tree; not running tests\n");
1877 return 0;
1878 }
1879 of_node_put(np);
1880
1881 pr_info("start of selftest - you will see error messages\n");
Grant Likelyf2051d62014-10-01 17:40:22 +01001882 of_selftest_check_tree_linkage();
Grant Likely841ec212014-10-02 13:09:15 +01001883 of_selftest_check_phandles();
Grant Likelyae91ff72014-03-14 13:53:10 +00001884 of_selftest_find_node_by_name();
Grant Likely7e66c5c2013-11-15 17:19:09 +00001885 of_selftest_dynamic();
Grant Likely53a42092011-12-12 09:25:57 -07001886 of_selftest_parse_phandle_with_args();
Grant Likelya87fa1d2014-11-03 15:15:35 +00001887 of_selftest_property_string();
Pantelis Antoniou69843392014-07-04 19:58:47 +03001888 of_selftest_property_copy();
Pantelis Antoniou201c9102014-07-04 19:58:49 +03001889 of_selftest_changeset();
Grant Likelya9f10ca2013-10-11 22:04:23 +01001890 of_selftest_parse_interrupts();
Grant Likely79d97012013-09-19 16:47:37 -05001891 of_selftest_parse_interrupts_extended();
Grant Likely1f42e5d2014-02-18 21:38:55 +00001892 of_selftest_match_node();
Rob Herring82c0f582014-04-23 17:57:40 -05001893 of_selftest_platform_populate();
Pantelis Antoniou177d2712014-10-28 22:35:59 +02001894 of_selftest_overlay();
Gaurav Minochaae9304c2014-07-16 23:09:39 -07001895
Grant Likelyf2051d62014-10-01 17:40:22 +01001896 /* Double check linkage after removing testcase data */
1897 of_selftest_check_tree_linkage();
1898
1899 pr_info("end of selftest - %i passed, %i failed\n",
1900 selftest_results.passed, selftest_results.failed);
1901
Grant Likely53a42092011-12-12 09:25:57 -07001902 return 0;
1903}
1904late_initcall(of_selftest);