alpine_cpu_pm.c 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. * Low-level power-management support for Alpine platform.
  3. *
  4. * Copyright (C) 2015 Annapurna Labs Ltd.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. */
  16. #include <linux/io.h>
  17. #include <linux/of.h>
  18. #include <linux/of_address.h>
  19. #include <linux/regmap.h>
  20. #include <linux/mfd/syscon.h>
  21. #include "alpine_cpu_pm.h"
  22. #include "alpine_cpu_resume.h"
  23. /* NB registers */
  24. #define AL_SYSFAB_POWER_CONTROL(cpu) (0x2000 + (cpu)*0x100 + 0x20)
  25. static struct regmap *al_sysfabric;
  26. static struct al_cpu_resume_regs __iomem *al_cpu_resume_regs;
  27. static int wakeup_supported;
  28. int alpine_cpu_wakeup(unsigned int phys_cpu, uint32_t phys_resume_addr)
  29. {
  30. if (!wakeup_supported)
  31. return -ENOSYS;
  32. /*
  33. * Set CPU resume address -
  34. * secure firmware running on boot will jump to this address
  35. * after setting proper CPU mode, and initialiing e.g. secure
  36. * regs (the same mode all CPUs are booted to - usually HYP)
  37. */
  38. writel(phys_resume_addr,
  39. &al_cpu_resume_regs->per_cpu[phys_cpu].resume_addr);
  40. /* Power-up the CPU */
  41. regmap_write(al_sysfabric, AL_SYSFAB_POWER_CONTROL(phys_cpu), 0);
  42. return 0;
  43. }
  44. void __init alpine_cpu_pm_init(void)
  45. {
  46. struct device_node *np;
  47. uint32_t watermark;
  48. al_sysfabric = syscon_regmap_lookup_by_compatible("al,alpine-sysfabric-service");
  49. np = of_find_compatible_node(NULL, NULL, "al,alpine-cpu-resume");
  50. al_cpu_resume_regs = of_iomap(np, 0);
  51. wakeup_supported = !IS_ERR(al_sysfabric) && al_cpu_resume_regs;
  52. if (wakeup_supported) {
  53. watermark = readl(&al_cpu_resume_regs->watermark);
  54. wakeup_supported = (watermark & AL_CPU_RESUME_MAGIC_NUM_MASK)
  55. == AL_CPU_RESUME_MAGIC_NUM;
  56. }
  57. }