sysreset.c 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright (C) 2015 Google, Inc
  4. */
  5. #include <common.h>
  6. #include <dm.h>
  7. #include <sysreset.h>
  8. #include <asm/state.h>
  9. #include <asm/test.h>
  10. #include <dm/test.h>
  11. #include <test/ut.h>
  12. /* Test that we can use particular sysreset devices */
  13. static int dm_test_sysreset_base(struct unit_test_state *uts)
  14. {
  15. struct sandbox_state *state = state_get_current();
  16. struct udevice *dev;
  17. /* Device 0 is the platform data device - it should never respond */
  18. ut_assertok(uclass_get_device(UCLASS_SYSRESET, 0, &dev));
  19. ut_asserteq(-ENODEV, sysreset_request(dev, SYSRESET_WARM));
  20. ut_asserteq(-ENODEV, sysreset_request(dev, SYSRESET_COLD));
  21. ut_asserteq(-ENODEV, sysreset_request(dev, SYSRESET_POWER));
  22. /* Device 1 is the warm sysreset device */
  23. ut_assertok(uclass_get_device(UCLASS_SYSRESET, 1, &dev));
  24. ut_asserteq(-EACCES, sysreset_request(dev, SYSRESET_WARM));
  25. ut_asserteq(-ENOSYS, sysreset_request(dev, SYSRESET_COLD));
  26. ut_asserteq(-ENOSYS, sysreset_request(dev, SYSRESET_POWER));
  27. state->sysreset_allowed[SYSRESET_WARM] = true;
  28. ut_asserteq(-EINPROGRESS, sysreset_request(dev, SYSRESET_WARM));
  29. state->sysreset_allowed[SYSRESET_WARM] = false;
  30. /* Device 2 is the cold sysreset device */
  31. ut_assertok(uclass_get_device(UCLASS_SYSRESET, 2, &dev));
  32. ut_asserteq(-ENOSYS, sysreset_request(dev, SYSRESET_WARM));
  33. ut_asserteq(-EACCES, sysreset_request(dev, SYSRESET_COLD));
  34. state->sysreset_allowed[SYSRESET_POWER] = false;
  35. ut_asserteq(-EACCES, sysreset_request(dev, SYSRESET_POWER));
  36. state->sysreset_allowed[SYSRESET_POWER] = true;
  37. return 0;
  38. }
  39. DM_TEST(dm_test_sysreset_base, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);
  40. /* Test that we can walk through the sysreset devices */
  41. static int dm_test_sysreset_walk(struct unit_test_state *uts)
  42. {
  43. struct sandbox_state *state = state_get_current();
  44. /* If we generate a power sysreset, we will exit sandbox! */
  45. state->sysreset_allowed[SYSRESET_POWER] = false;
  46. ut_asserteq(-EACCES, sysreset_walk(SYSRESET_WARM));
  47. ut_asserteq(-EACCES, sysreset_walk(SYSRESET_COLD));
  48. ut_asserteq(-EACCES, sysreset_walk(SYSRESET_POWER));
  49. /*
  50. * Enable cold system reset - this should make cold system reset work,
  51. * plus a warm system reset should be promoted to cold, since this is
  52. * the next step along.
  53. */
  54. state->sysreset_allowed[SYSRESET_COLD] = true;
  55. ut_asserteq(-EINPROGRESS, sysreset_walk(SYSRESET_WARM));
  56. ut_asserteq(-EINPROGRESS, sysreset_walk(SYSRESET_COLD));
  57. ut_asserteq(-EACCES, sysreset_walk(SYSRESET_POWER));
  58. state->sysreset_allowed[SYSRESET_COLD] = false;
  59. state->sysreset_allowed[SYSRESET_POWER] = true;
  60. return 0;
  61. }
  62. DM_TEST(dm_test_sysreset_walk, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);