sunxi_idle_states.c 566 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Copyright (c) 2022, ARM Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #include <sunxi_private.h>
  7. const struct psci_cpu_idle_state sunxi_idle_states[] = {
  8. {
  9. .name = "cpu-sleep",
  10. .power_state = 0x00010003,
  11. .local_timer_stop = true,
  12. .entry_latency_us = 800,
  13. .exit_latency_us = 1500,
  14. .min_residency_us = 25000
  15. },
  16. {
  17. .name = "cluster-sleep",
  18. .power_state = 0x01010013,
  19. .local_timer_stop = true,
  20. .entry_latency_us = 850,
  21. .exit_latency_us = 1500,
  22. .min_residency_us = 50000
  23. },
  24. {}
  25. };