smp-sh73a0.c 2.5 KB

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