smp-sh73a0.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. /*
  2. * SMP support for R-Mobile / SH-Mobile - sh73a0 portion
  3. *
  4. * Copyright (C) 2010 Magnus Damm
  5. * Copyright (C) 2010 Takashi Yoshii
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; version 2 of the License.
  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. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include <linux/kernel.h>
  21. #include <linux/init.h>
  22. #include <linux/smp.h>
  23. #include <linux/spinlock.h>
  24. #include <linux/io.h>
  25. #include <linux/delay.h>
  26. #include <mach/common.h>
  27. #include <asm/cacheflush.h>
  28. #include <asm/smp_plat.h>
  29. #include <mach/sh73a0.h>
  30. #include <asm/smp_scu.h>
  31. #include <asm/smp_twd.h>
  32. #define WUPCR IOMEM(0xe6151010)
  33. #define SRESCR IOMEM(0xe6151018)
  34. #define PSTR IOMEM(0xe6151040)
  35. #define SBAR IOMEM(0xe6180020)
  36. #define APARMBAREA IOMEM(0xe6f10020)
  37. #define PSTR_SHUTDOWN_MODE 3
  38. #define SH73A0_SCU_BASE 0xf0000000
  39. #ifdef CONFIG_HAVE_ARM_TWD
  40. static DEFINE_TWD_LOCAL_TIMER(twd_local_timer, SH73A0_SCU_BASE + 0x600, 29);
  41. void __init sh73a0_register_twd(void)
  42. {
  43. twd_local_timer_register(&twd_local_timer);
  44. }
  45. #endif
  46. static int sh73a0_boot_secondary(unsigned int cpu, struct task_struct *idle)
  47. {
  48. cpu = cpu_logical_map(cpu);
  49. if (((__raw_readl(PSTR) >> (4 * cpu)) & 3) == 3)
  50. __raw_writel(1 << cpu, WUPCR); /* wake up */
  51. else
  52. __raw_writel(1 << cpu, SRESCR); /* reset */
  53. return 0;
  54. }
  55. static void __init sh73a0_smp_prepare_cpus(unsigned int max_cpus)
  56. {
  57. scu_enable(shmobile_scu_base);
  58. /* Map the reset vector (in headsmp-scu.S, headsmp.S) */
  59. __raw_writel(0, APARMBAREA); /* 4k */
  60. __raw_writel(__pa(shmobile_boot_vector), SBAR);
  61. shmobile_boot_fn = virt_to_phys(shmobile_boot_scu);
  62. shmobile_boot_arg = (unsigned long)shmobile_scu_base;
  63. /* enable cache coherency on booting CPU */
  64. scu_power_mode(shmobile_scu_base, SCU_PM_NORMAL);
  65. }
  66. static void __init sh73a0_smp_init_cpus(void)
  67. {
  68. /* setup sh73a0 specific SCU base */
  69. shmobile_scu_base = IOMEM(SH73A0_SCU_BASE);
  70. shmobile_smp_init_cpus(scu_get_core_count(shmobile_scu_base));
  71. }
  72. #ifdef CONFIG_HOTPLUG_CPU
  73. static int sh73a0_cpu_kill(unsigned int cpu)
  74. {
  75. int k;
  76. u32 pstr;
  77. /*
  78. * wait until the power status register confirms the shutdown of the
  79. * offline target
  80. */
  81. for (k = 0; k < 1000; k++) {
  82. pstr = (__raw_readl(PSTR) >> (4 * cpu)) & 3;
  83. if (pstr == PSTR_SHUTDOWN_MODE)
  84. return 1;
  85. mdelay(1);
  86. }
  87. return 0;
  88. }
  89. static void sh73a0_cpu_die(unsigned int cpu)
  90. {
  91. /* Set power off mode. This takes the CPU out of the MP cluster */
  92. scu_power_mode(shmobile_scu_base, SCU_PM_POWEROFF);
  93. /* Enter shutdown mode */
  94. cpu_do_idle();
  95. }
  96. static int sh73a0_cpu_disable(unsigned int cpu)
  97. {
  98. return 0; /* CPU0 and CPU1 supported */
  99. }
  100. #endif /* CONFIG_HOTPLUG_CPU */
  101. struct smp_operations sh73a0_smp_ops __initdata = {
  102. .smp_init_cpus = sh73a0_smp_init_cpus,
  103. .smp_prepare_cpus = sh73a0_smp_prepare_cpus,
  104. .smp_boot_secondary = sh73a0_boot_secondary,
  105. #ifdef CONFIG_HOTPLUG_CPU
  106. .cpu_kill = sh73a0_cpu_kill,
  107. .cpu_die = sh73a0_cpu_die,
  108. .cpu_disable = sh73a0_cpu_disable,
  109. #endif
  110. };