headsmp-scu.S 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * Shared SCU setup for mach-shmobile
  3. *
  4. * Copyright (C) 2012 Bastian Hecht
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License as
  8. * published by the Free Software Foundation; either version 2 of
  9. * the License, or (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. * 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., 59 Temple Place, Suite 330, Boston,
  19. * MA 02111-1307 USA
  20. */
  21. #include <linux/linkage.h>
  22. #include <linux/init.h>
  23. #include <asm/memory.h>
  24. __CPUINIT
  25. /*
  26. * Reset vector for secondary CPUs.
  27. *
  28. * First we turn on L1 cache coherency for our CPU. Then we jump to
  29. * shmobile_invalidate_start that invalidates the cache and hands over control
  30. * to the common ARM startup code.
  31. * This function will be mapped to address 0 by the SBAR register.
  32. * A normal branch is out of range here so we need a long jump. We jump to
  33. * the physical address as the MMU is still turned off.
  34. */
  35. .align 12
  36. ENTRY(shmobile_secondary_vector_scu)
  37. mrc p15, 0, r0, c0, c0, 5 @ read MIPDR
  38. and r0, r0, #3 @ mask out cpu ID
  39. lsl r0, r0, #3 @ we will shift by cpu_id * 8 bits
  40. ldr r1, 2f
  41. ldr r1, [r1] @ SCU base address
  42. ldr r2, [r1, #8] @ SCU Power Status Register
  43. mov r3, #3
  44. bic r2, r2, r3, lsl r0 @ Clear bits of our CPU (Run Mode)
  45. str r2, [r1, #8] @ write back
  46. ldr pc, 1f
  47. 1: .long shmobile_invalidate_start - PAGE_OFFSET + PLAT_PHYS_OFFSET
  48. 2: .long shmobile_scu_base - PAGE_OFFSET + PLAT_PHYS_OFFSET
  49. ENDPROC(shmobile_secondary_vector_scu)
  50. .text
  51. .globl shmobile_scu_base
  52. shmobile_scu_base:
  53. .space 4