smp_psci.c 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. * PSCI SMP initialisation
  3. *
  4. * Copyright (C) 2013 ARM 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 version 2 as
  8. * published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #include <linux/init.h>
  19. #include <linux/of.h>
  20. #include <linux/smp.h>
  21. #include <asm/psci.h>
  22. #include <asm/smp_plat.h>
  23. static int __init smp_psci_init_cpu(struct device_node *dn, int cpu)
  24. {
  25. return 0;
  26. }
  27. static int __init smp_psci_prepare_cpu(int cpu)
  28. {
  29. int err;
  30. if (!psci_ops.cpu_on) {
  31. pr_err("psci: no cpu_on method, not booting CPU%d\n", cpu);
  32. return -ENODEV;
  33. }
  34. err = psci_ops.cpu_on(cpu_logical_map(cpu), __pa(secondary_holding_pen));
  35. if (err) {
  36. pr_err("psci: failed to boot CPU%d (%d)\n", cpu, err);
  37. return err;
  38. }
  39. return 0;
  40. }
  41. const struct smp_enable_ops smp_psci_ops __initconst = {
  42. .name = "psci",
  43. .init_cpu = smp_psci_init_cpu,
  44. .prepare_cpu = smp_psci_prepare_cpu,
  45. };