Magnus Damm | ec0d84a | 2013-02-13 22:47:07 +0900 | [diff] [blame] | 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. |
Magnus Damm | ec0d84a | 2013-02-13 22:47:07 +0900 | [diff] [blame] | 15 | */ |
| 16 | |
| 17 | #include <linux/linkage.h> |
| 18 | #include <linux/init.h> |
| 19 | #include <asm/memory.h> |
| 20 | |
Magnus Damm | ec0d84a | 2013-02-13 22:47:07 +0900 | [diff] [blame] | 21 | /* |
Magnus Damm | 4f6da36 | 2013-06-10 18:20:25 +0900 | [diff] [blame] | 22 | * Boot code for secondary CPUs. |
Magnus Damm | ec0d84a | 2013-02-13 22:47:07 +0900 | [diff] [blame] | 23 | * |
| 24 | * First we turn on L1 cache coherency for our CPU. Then we jump to |
Russell King | 02b4e27 | 2015-05-19 17:06:44 +0100 | [diff] [blame] | 25 | * secondary_startup that invalidates the cache and hands over control |
Magnus Damm | ec0d84a | 2013-02-13 22:47:07 +0900 | [diff] [blame] | 26 | * to the common ARM startup code. |
Magnus Damm | ec0d84a | 2013-02-13 22:47:07 +0900 | [diff] [blame] | 27 | */ |
Magnus Damm | bfabbcc | 2013-06-10 18:19:46 +0900 | [diff] [blame] | 28 | ENTRY(shmobile_boot_scu) |
| 29 | @ r0 = SCU base address |
Geert Uytterhoeven | e24f317 | 2016-01-28 16:13:30 +0100 | [diff] [blame] | 30 | mrc p15, 0, r1, c0, c0, 5 @ read MPIDR |
Magnus Damm | bfabbcc | 2013-06-10 18:19:46 +0900 | [diff] [blame] | 31 | and r1, r1, #3 @ mask out cpu ID |
| 32 | lsl r1, r1, #3 @ we will shift by cpu_id * 8 bits |
| 33 | ldr r2, [r0, #8] @ SCU Power Status Register |
| 34 | mov r3, #3 |
Tetsuyuki Kobayashi | bdea6c6 | 2013-07-10 10:56:35 +0900 | [diff] [blame] | 35 | lsl r3, r3, r1 |
| 36 | bic r2, r2, r3 @ Clear bits of our CPU (Run Mode) |
Magnus Damm | bfabbcc | 2013-06-10 18:19:46 +0900 | [diff] [blame] | 37 | str r2, [r0, #8] @ write back |
| 38 | |
Russell King | 02b4e27 | 2015-05-19 17:06:44 +0100 | [diff] [blame] | 39 | b secondary_startup |
Magnus Damm | bfabbcc | 2013-06-10 18:19:46 +0900 | [diff] [blame] | 40 | ENDPROC(shmobile_boot_scu) |