smp-sh73a0.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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 <mach/common.h>
  26. #include <asm/smp_plat.h>
  27. #include <asm/smp_scu.h>
  28. #include <asm/smp_twd.h>
  29. #include <asm/hardware/gic.h>
  30. #define WUPCR IOMEM(0xe6151010)
  31. #define SRESCR IOMEM(0xe6151018)
  32. #define PSTR IOMEM(0xe6151040)
  33. #define SBAR IOMEM(0xe6180020)
  34. #define APARMBAREA IOMEM(0xe6f10020)
  35. static void __iomem *scu_base_addr(void)
  36. {
  37. return (void __iomem *)0xf0000000;
  38. }
  39. static DEFINE_SPINLOCK(scu_lock);
  40. static unsigned long tmp;
  41. static DEFINE_TWD_LOCAL_TIMER(twd_local_timer, 0xf0000600, 29);
  42. static void modify_scu_cpu_psr(unsigned long set, unsigned long clr)
  43. {
  44. void __iomem *scu_base = scu_base_addr();
  45. spin_lock(&scu_lock);
  46. tmp = __raw_readl(scu_base + 8);
  47. tmp &= ~clr;
  48. tmp |= set;
  49. spin_unlock(&scu_lock);
  50. /* disable cache coherency after releasing the lock */
  51. __raw_writel(tmp, scu_base + 8);
  52. }
  53. unsigned int __init sh73a0_get_core_count(void)
  54. {
  55. void __iomem *scu_base = scu_base_addr();
  56. shmobile_twd_init(&twd_local_timer);
  57. return scu_get_core_count(scu_base);
  58. }
  59. void __cpuinit sh73a0_secondary_init(unsigned int cpu)
  60. {
  61. gic_secondary_init(0);
  62. }
  63. int __cpuinit sh73a0_boot_secondary(unsigned int cpu)
  64. {
  65. cpu = cpu_logical_map(cpu);
  66. /* enable cache coherency */
  67. modify_scu_cpu_psr(0, 3 << (cpu * 8));
  68. if (((__raw_readl(PSTR) >> (4 * cpu)) & 3) == 3)
  69. __raw_writel(1 << cpu, WUPCR); /* wake up */
  70. else
  71. __raw_writel(1 << cpu, SRESCR); /* reset */
  72. return 0;
  73. }
  74. void __init sh73a0_smp_prepare_cpus(void)
  75. {
  76. int cpu = cpu_logical_map(0);
  77. scu_enable(scu_base_addr());
  78. /* Map the reset vector (in headsmp.S) */
  79. __raw_writel(0, APARMBAREA); /* 4k */
  80. __raw_writel(__pa(shmobile_secondary_vector), SBAR);
  81. /* enable cache coherency on CPU0 */
  82. modify_scu_cpu_psr(0, 3 << (cpu * 8));
  83. }