wlan_dsc_test.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607
  1. /*
  2. * Copyright (c) 2018-2019 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. #include "__wlan_dsc.h"
  19. #include "qdf_event.h"
  20. #include "qdf_threads.h"
  21. #include "qdf_trace.h"
  22. #include "qdf_types.h"
  23. #include "wlan_dsc.h"
  24. #include "wlan_dsc_test.h"
  25. #define dsc_driver_trans_start(driver) dsc_driver_trans_start(driver, __func__)
  26. #define dsc_psoc_trans_start(psoc) dsc_psoc_trans_start(psoc, __func__)
  27. #define dsc_vdev_trans_start(vdev) dsc_vdev_trans_start(vdev, __func__)
  28. #define dsc_driver_trans_start_wait(driver) \
  29. dsc_driver_trans_start_wait(driver, "")
  30. #define dsc_psoc_trans_start_wait(psoc) \
  31. dsc_psoc_trans_start_wait(psoc, __func__)
  32. #define dsc_vdev_trans_start_wait(vdev) \
  33. dsc_vdev_trans_start_wait(vdev, __func__)
  34. static struct dsc_psoc *nth_psoc(struct dsc_driver *driver, int n)
  35. {
  36. struct dsc_psoc *psoc;
  37. QDF_BUG(n > 0);
  38. if (n <= 0)
  39. return NULL;
  40. dsc_for_each_driver_psoc(driver, psoc) {
  41. n--;
  42. if (n)
  43. continue;
  44. return psoc;
  45. }
  46. QDF_DEBUG_PANIC("Failed to find nth psoc: %d", n);
  47. return NULL;
  48. }
  49. static struct dsc_vdev *nth_vdev(struct dsc_psoc *psoc, int n)
  50. {
  51. struct dsc_vdev *vdev;
  52. QDF_BUG(n > 0);
  53. if (n <= 0)
  54. return NULL;
  55. dsc_for_each_psoc_vdev(psoc, vdev) {
  56. n--;
  57. if (n)
  58. continue;
  59. return vdev;
  60. }
  61. QDF_DEBUG_PANIC("Failed to find nth vdev: %d", n);
  62. return NULL;
  63. }
  64. static void __dsc_tree_destroy(struct dsc_driver *driver)
  65. {
  66. struct dsc_psoc *psoc;
  67. struct dsc_psoc *next_psoc;
  68. QDF_BUG(driver);
  69. qdf_list_for_each_del(&driver->psocs, psoc, next_psoc, node) {
  70. struct dsc_vdev *vdev;
  71. struct dsc_vdev *next_vdev;
  72. qdf_list_for_each_del(&psoc->vdevs, vdev, next_vdev, node)
  73. dsc_vdev_destroy(&vdev);
  74. dsc_psoc_destroy(&psoc);
  75. }
  76. dsc_driver_destroy(&driver);
  77. }
  78. static QDF_STATUS __dsc_tree_create(struct dsc_driver **out_driver,
  79. uint8_t psocs_per_driver,
  80. uint8_t vdevs_per_psoc)
  81. {
  82. QDF_STATUS status;
  83. struct dsc_driver *driver;
  84. int i, j;
  85. status = dsc_driver_create(&driver);
  86. if (QDF_IS_STATUS_ERROR(status)) {
  87. dsc_err("Failed to create driver; status:%u", status);
  88. return status;
  89. }
  90. for (i = 0; i < psocs_per_driver; i++) {
  91. struct dsc_psoc *psoc;
  92. status = dsc_psoc_create(driver, &psoc);
  93. if (QDF_IS_STATUS_ERROR(status)) {
  94. dsc_err("Failed to create psoc; status:%u", status);
  95. goto free_tree;
  96. }
  97. for (j = 0; j < vdevs_per_psoc; j++) {
  98. struct dsc_vdev *vdev;
  99. status = dsc_vdev_create(psoc, &vdev);
  100. if (QDF_IS_STATUS_ERROR(status)) {
  101. dsc_err("Failed to create vdev; status:%u",
  102. status);
  103. goto free_tree;
  104. }
  105. }
  106. }
  107. *out_driver = driver;
  108. return QDF_STATUS_SUCCESS;
  109. free_tree:
  110. __dsc_tree_destroy(driver);
  111. return status;
  112. }
  113. static uint32_t dsc_test_create_destroy(void)
  114. {
  115. uint32_t errors = 0;
  116. QDF_STATUS status;
  117. struct dsc_driver *driver;
  118. dsc_enter();
  119. status = __dsc_tree_create(&driver, 2, 2);
  120. if (QDF_IS_STATUS_ERROR(status)) {
  121. errors++;
  122. goto exit;
  123. }
  124. __dsc_tree_destroy(driver);
  125. exit:
  126. dsc_exit();
  127. return errors;
  128. }
  129. #define action_expect(obj, action, status, errors) \
  130. do { \
  131. void *__obj = obj; \
  132. QDF_STATUS __expected = status; \
  133. QDF_STATUS __result; \
  134. \
  135. __result = dsc_##obj##_##action##_start(__obj); \
  136. if (__result != __expected) { \
  137. dsc_err("FAIL: " #obj " " #action \
  138. "; expected " #status " (%u), found %u", \
  139. __expected, __result); \
  140. (errors)++; \
  141. } \
  142. if (QDF_IS_STATUS_SUCCESS(__result) && QDF_IS_STATUS_ERROR(__expected))\
  143. dsc_##obj##_##action##_stop(__obj); \
  144. } while (false)
  145. static uint32_t dsc_test_driver_trans_blocks(void)
  146. {
  147. uint32_t errors = 0;
  148. QDF_STATUS status;
  149. struct dsc_driver *driver;
  150. struct dsc_psoc *psoc;
  151. struct dsc_vdev *vdev;
  152. dsc_enter();
  153. /* setup */
  154. status = __dsc_tree_create(&driver, 2, 2);
  155. if (QDF_IS_STATUS_ERROR(status)) {
  156. errors++;
  157. goto exit;
  158. }
  159. /* test */
  160. /* a driver in transition should cause ... */
  161. action_expect(driver, trans, QDF_STATUS_SUCCESS, errors);
  162. /* ... the same driver trans/ops to fail */
  163. action_expect(driver, trans, QDF_STATUS_E_AGAIN, errors);
  164. action_expect(driver, op, QDF_STATUS_E_AGAIN, errors);
  165. /* ... children psoc trans/ops to fail */
  166. dsc_for_each_driver_psoc(driver, psoc) {
  167. action_expect(psoc, trans, QDF_STATUS_E_INVAL, errors);
  168. action_expect(psoc, op, QDF_STATUS_E_INVAL, errors);
  169. /* ... grandchildren vdev trans/ops to fail */
  170. dsc_for_each_psoc_vdev(psoc, vdev) {
  171. action_expect(vdev, trans, QDF_STATUS_E_INVAL, errors);
  172. action_expect(vdev, op, QDF_STATUS_E_INVAL, errors);
  173. }
  174. }
  175. /* teardown */
  176. dsc_driver_trans_stop(driver);
  177. __dsc_tree_destroy(driver);
  178. exit:
  179. dsc_exit();
  180. return errors;
  181. }
  182. static uint32_t dsc_test_psoc_trans_blocks(void)
  183. {
  184. uint32_t errors = 0;
  185. QDF_STATUS status;
  186. struct dsc_driver *driver;
  187. struct dsc_psoc *psoc;
  188. struct dsc_vdev *vdev;
  189. dsc_enter();
  190. /* setup */
  191. status = __dsc_tree_create(&driver, 2, 2);
  192. if (QDF_IS_STATUS_ERROR(status)) {
  193. errors++;
  194. goto exit;
  195. }
  196. /* test */
  197. /* a psoc in transition should cause ... */
  198. psoc = nth_psoc(driver, 1);
  199. action_expect(psoc, trans, QDF_STATUS_SUCCESS, errors);
  200. /* ... driver trans/ops to fail */
  201. action_expect(driver, trans, QDF_STATUS_E_AGAIN, errors);
  202. action_expect(driver, op, QDF_STATUS_E_AGAIN, errors);
  203. /* ... the same psoc trans/ops to fail */
  204. action_expect(psoc, trans, QDF_STATUS_E_AGAIN, errors);
  205. action_expect(psoc, op, QDF_STATUS_E_AGAIN, errors);
  206. /* ... children vdev trans/ops to fail */
  207. dsc_for_each_psoc_vdev(psoc, vdev) {
  208. action_expect(vdev, trans, QDF_STATUS_E_INVAL, errors);
  209. action_expect(vdev, op, QDF_STATUS_E_INVAL, errors);
  210. }
  211. /* a sibling psoc in transition should succeed and cause ... */
  212. psoc = nth_psoc(driver, 2);
  213. action_expect(psoc, trans, QDF_STATUS_SUCCESS, errors);
  214. /* ... driver trans/ops to fail */
  215. action_expect(driver, trans, QDF_STATUS_E_AGAIN, errors);
  216. action_expect(driver, op, QDF_STATUS_E_AGAIN, errors);
  217. /* ... the same psoc trans/ops to fail */
  218. action_expect(psoc, trans, QDF_STATUS_E_AGAIN, errors);
  219. action_expect(psoc, op, QDF_STATUS_E_AGAIN, errors);
  220. /* ... children vdev trans/ops to fail */
  221. dsc_for_each_psoc_vdev(psoc, vdev) {
  222. action_expect(vdev, trans, QDF_STATUS_E_INVAL, errors);
  223. action_expect(vdev, op, QDF_STATUS_E_INVAL, errors);
  224. }
  225. /* teardown */
  226. dsc_for_each_driver_psoc(driver, psoc)
  227. dsc_psoc_trans_stop(psoc);
  228. __dsc_tree_destroy(driver);
  229. exit:
  230. dsc_exit();
  231. return errors;
  232. }
  233. static uint32_t dsc_test_vdev_trans_blocks(void)
  234. {
  235. uint32_t errors = 0;
  236. QDF_STATUS status;
  237. struct dsc_driver *driver;
  238. struct dsc_psoc *psoc;
  239. struct dsc_vdev *vdev;
  240. dsc_enter();
  241. /* setup */
  242. status = __dsc_tree_create(&driver, 2, 2);
  243. if (QDF_IS_STATUS_ERROR(status)) {
  244. errors++;
  245. goto exit;
  246. }
  247. /* test */
  248. /* a vdev in transition should cause ... */
  249. dsc_for_each_driver_psoc(driver, psoc) {
  250. dsc_for_each_psoc_vdev(psoc, vdev)
  251. action_expect(vdev, trans, QDF_STATUS_SUCCESS, errors);
  252. }
  253. /* ... driver trans/ops to fail */
  254. action_expect(driver, trans, QDF_STATUS_E_AGAIN, errors);
  255. action_expect(driver, op, QDF_STATUS_E_AGAIN, errors);
  256. /* ... psoc trans/ops to fail */
  257. dsc_for_each_driver_psoc(driver, psoc) {
  258. action_expect(psoc, trans, QDF_STATUS_E_AGAIN, errors);
  259. action_expect(psoc, op, QDF_STATUS_E_AGAIN, errors);
  260. /* ... the same vdev trans/ops to fail */
  261. dsc_for_each_psoc_vdev(psoc, vdev) {
  262. action_expect(vdev, trans, QDF_STATUS_E_AGAIN, errors);
  263. action_expect(vdev, op, QDF_STATUS_E_AGAIN, errors);
  264. }
  265. }
  266. /* teardown */
  267. dsc_for_each_driver_psoc(driver, psoc) {
  268. dsc_for_each_psoc_vdev(psoc, vdev)
  269. dsc_vdev_trans_stop(vdev);
  270. }
  271. __dsc_tree_destroy(driver);
  272. exit:
  273. dsc_exit();
  274. return errors;
  275. }
  276. #define THREAD_TIMEOUT 1000 /* ms */
  277. #define dsc_event_wait(event) qdf_wait_single_event(event, THREAD_TIMEOUT)
  278. #define step_assert(field, expected) \
  279. do { \
  280. uint32_t _step = ++(field); \
  281. uint32_t _expected = (expected); \
  282. \
  283. if (_step != _expected) \
  284. QDF_DEBUG_PANIC("Step count is %u; Expected %u", \
  285. _step, _expected); \
  286. } while (false)
  287. #define trans_waiting(ctx) (!qdf_list_empty(&(ctx)->trans.queue))
  288. struct thread_ctx {
  289. struct dsc_driver *driver;
  290. qdf_event_t start_vdev_trans;
  291. qdf_event_t start_vdev_wait;
  292. uint32_t step;
  293. };
  294. static QDF_STATUS dsc_thread_ops(void *context)
  295. {
  296. struct thread_ctx *ctx = context;
  297. struct dsc_driver *driver = ctx->driver;
  298. struct dsc_psoc *psoc = nth_psoc(driver, 1);
  299. struct dsc_vdev *vdev = nth_vdev(psoc, 1);
  300. dsc_enter();
  301. /* thread 1 is doing some operations ... */
  302. step_assert(ctx->step, 1);
  303. dsc_assert_success(dsc_driver_op_start(driver));
  304. dsc_assert_success(dsc_psoc_op_start(psoc));
  305. dsc_assert_success(dsc_vdev_op_start(vdev));
  306. step_assert(ctx->step, 2);
  307. /* ... at which point, thread 2 starts to transition the vdevs */
  308. qdf_event_set(&ctx->start_vdev_trans);
  309. /* meanwhile, thread 3,4,5 queue up to transition vdev/psoc/driver */
  310. while (!trans_waiting(driver))
  311. schedule();
  312. /* at this point, each thread is:
  313. * 1) doing operations
  314. * 2) transitioning vdevs 1/2, waiting for ops to finish
  315. * 3) waiting to transition vdev 1
  316. * 4) waiting to transition psoc
  317. * 5) waitint to transition driver
  318. */
  319. step_assert(ctx->step, 8);
  320. dsc_driver_op_stop(driver);
  321. schedule();
  322. dsc_psoc_op_stop(psoc);
  323. schedule();
  324. dsc_vdev_op_stop(vdev);
  325. /* all operations complete; thread2 is now unblocked */
  326. dsc_exit();
  327. return QDF_STATUS_SUCCESS;
  328. }
  329. static QDF_STATUS dsc_thread_vdev_trans(void *context)
  330. {
  331. struct thread_ctx *ctx = context;
  332. struct dsc_driver *driver = ctx->driver;
  333. struct dsc_psoc *psoc = nth_psoc(driver, 1);
  334. struct dsc_vdev *vdev;
  335. dsc_enter();
  336. /* wait for thread 1 to start operations */
  337. dsc_assert_success(dsc_event_wait(&ctx->start_vdev_trans));
  338. /* start transitions on all vdevs */
  339. step_assert(ctx->step, 3);
  340. dsc_for_each_psoc_vdev(psoc, vdev)
  341. dsc_assert_success(dsc_vdev_trans_start(vdev));
  342. step_assert(ctx->step, 4);
  343. /* meanwhile, thread 3,4,5 queue up to transition vdev/psoc/driver */
  344. qdf_event_set(&ctx->start_vdev_wait);
  345. /* wait for thread 1 to complete pending vdev ops */
  346. dsc_for_each_psoc_vdev(psoc, vdev)
  347. dsc_vdev_wait_for_ops(vdev);
  348. /* actual vdev transition work would happen here */
  349. /* stop transition on vdev 1 */
  350. step_assert(ctx->step, 9);
  351. dsc_vdev_trans_stop(nth_vdev(psoc, 1));
  352. /* psoc trans should not start until both vdev trans are complete */
  353. schedule();
  354. step_assert(ctx->step, 10);
  355. dsc_vdev_trans_stop(nth_vdev(psoc, 2));
  356. dsc_exit();
  357. return QDF_STATUS_SUCCESS;
  358. }
  359. static QDF_STATUS dsc_thread_vdev_wait(void *context)
  360. {
  361. struct thread_ctx *ctx = context;
  362. struct dsc_vdev *vdev = nth_vdev(nth_psoc(ctx->driver, 1), 1);
  363. dsc_enter();
  364. dsc_assert_success(dsc_event_wait(&ctx->start_vdev_wait));
  365. step_assert(ctx->step, 5);
  366. /* vdev trans queues first ... */
  367. dsc_assert_success(dsc_vdev_trans_start_wait(vdev));
  368. /* ... but de-queues third */
  369. step_assert(ctx->step, 15);
  370. dsc_vdev_wait_for_ops(vdev);
  371. step_assert(ctx->step, 16);
  372. dsc_vdev_trans_stop(vdev);
  373. dsc_exit();
  374. return QDF_STATUS_SUCCESS;
  375. }
  376. static QDF_STATUS dsc_thread_psoc_wait(void *context)
  377. {
  378. struct thread_ctx *ctx = context;
  379. struct dsc_psoc *psoc = nth_psoc(ctx->driver, 1);
  380. struct dsc_vdev *vdev = nth_vdev(psoc, 1);
  381. dsc_enter();
  382. while (!trans_waiting(vdev))
  383. schedule();
  384. step_assert(ctx->step, 6);
  385. /* psoc trans queues second ... */
  386. dsc_assert_success(dsc_psoc_trans_start_wait(psoc));
  387. /* ... and de-queues second */
  388. step_assert(ctx->step, 13);
  389. dsc_psoc_wait_for_ops(psoc);
  390. step_assert(ctx->step, 14);
  391. dsc_psoc_trans_stop(psoc);
  392. dsc_exit();
  393. return QDF_STATUS_SUCCESS;
  394. }
  395. static QDF_STATUS dsc_thread_driver_wait(void *context)
  396. {
  397. struct thread_ctx *ctx = context;
  398. struct dsc_driver *driver = ctx->driver;
  399. struct dsc_psoc *psoc = nth_psoc(driver, 1);
  400. dsc_enter();
  401. while (!trans_waiting(psoc))
  402. schedule();
  403. step_assert(ctx->step, 7);
  404. /* driver trans queues third ... */
  405. dsc_assert_success(dsc_driver_trans_start_wait(driver));
  406. /* ... but de-queues first */
  407. step_assert(ctx->step, 11);
  408. dsc_driver_wait_for_ops(driver);
  409. step_assert(ctx->step, 12);
  410. dsc_driver_trans_stop(driver);
  411. dsc_exit();
  412. return QDF_STATUS_SUCCESS;
  413. }
  414. static uint32_t dsc_test_trans_wait(void)
  415. {
  416. uint32_t errors = 0;
  417. QDF_STATUS status;
  418. qdf_thread_t *ops_thread;
  419. qdf_thread_t *vdev_trans_thread;
  420. qdf_thread_t *vdev_wait_thread;
  421. qdf_thread_t *psoc_wait_thread;
  422. qdf_thread_t *driver_wait_thread;
  423. struct thread_ctx ctx = { 0 };
  424. dsc_enter();
  425. status = __dsc_tree_create(&ctx.driver, 1, 2);
  426. if (QDF_IS_STATUS_ERROR(status)) {
  427. errors++;
  428. goto exit;
  429. }
  430. dsc_assert_success(qdf_event_create(&ctx.start_vdev_trans));
  431. dsc_assert_success(qdf_event_create(&ctx.start_vdev_wait));
  432. dsc_debug("starting threads");
  433. ops_thread = qdf_thread_run(dsc_thread_ops, &ctx);
  434. vdev_trans_thread = qdf_thread_run(dsc_thread_vdev_trans, &ctx);
  435. vdev_wait_thread = qdf_thread_run(dsc_thread_vdev_wait, &ctx);
  436. psoc_wait_thread = qdf_thread_run(dsc_thread_psoc_wait, &ctx);
  437. driver_wait_thread = qdf_thread_run(dsc_thread_driver_wait, &ctx);
  438. qdf_thread_join(ops_thread);
  439. qdf_thread_join(vdev_trans_thread);
  440. qdf_thread_join(vdev_wait_thread);
  441. qdf_thread_join(psoc_wait_thread);
  442. qdf_thread_join(driver_wait_thread);
  443. dsc_debug("threads joined");
  444. qdf_event_destroy(&ctx.start_vdev_wait);
  445. qdf_event_destroy(&ctx.start_vdev_trans);
  446. __dsc_tree_destroy(ctx.driver);
  447. exit:
  448. dsc_exit();
  449. return errors;
  450. }
  451. uint32_t dsc_unit_test(void)
  452. {
  453. uint32_t errors = 0;
  454. errors += dsc_test_create_destroy();
  455. errors += dsc_test_driver_trans_blocks();
  456. errors += dsc_test_psoc_trans_blocks();
  457. errors += dsc_test_vdev_trans_blocks();
  458. errors += dsc_test_trans_wait();
  459. return errors;
  460. }