1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * arch/arm/cpu/armv7/rmobile/lowlevel_init_ca15.S 4 * This file is lager low level initialize. 5 * 6 * Copyright (C) 2013, 2014 Renesas Electronics Corporation 7 */ 8 9#include <config.h> 10#include <linux/linkage.h> 11 12ENTRY(lowlevel_init) 13#ifndef CONFIG_SPL_BUILD 14 mrc p15, 0, r4, c0, c0, 5 /* mpidr */ 15 orr r4, r4, r4, lsr #6 16 and r4, r4, #7 /* id 0-3 = ca15.0,1,2,3 */ 17 18 b do_lowlevel_init 19 20 .pool 21 22/* 23 * CPU ID #1-#3 come here 24 */ 25 .align 4 26do_cpu_waiting: 27 ldr r1, =0xe6180000 /* sysc */ 281: ldr r0, [r1, #0x20] /* sbar */ 29 tst r0, r0 30 beq 1b 31 bx r0 32 33/* 34 * Only CPU ID #0 comes here 35 */ 36 .align 4 37do_lowlevel_init: 38 ldr r2, =0xFF000044 /* PRR */ 39 ldr r1, [r2] 40 and r1, r1, #0x7F00 41 lsrs r1, r1, #8 42 cmp r1, #0x4C /* 0x4C is ID of r8a7794 */ 43 beq _enable_actlr_smp 44 45 /* surpress wfe if ca15 */ 46 tst r4, #4 47 mrceq p15, 0, r0, c1, c0, 1 /* actlr */ 48 orreq r0, r0, #(1<<7) 49 mcreq p15, 0, r0, c1, c0, 1 50 51 /* and set l2 latency */ 52 mrc p15, 0, r0, c0, c0, 5 /* r0 = MPIDR */ 53 and r0, r0, #0xf00 54 lsr r0, r0, #8 55 tst r0, #1 /* only need for cluster 0 */ 56 bne _exit_init_l2_a15 57 58 mrc p15, 1, r0, c9, c0, 2 /* r0 = L2CTLR */ 59 and r1, r0, #7 60 cmp r1, #3 /* has already been set up */ 61 bicne r0, r0, #0xe7 62 orrne r0, r0, #0x83 /* L2CTLR[7:6] + L2CTLR[2:0] */ 63#if defined(CONFIG_R8A7790) 64 orrne r0, r0, #0x20 /* L2CTLR[5] */ 65#endif 66 mcrne p15, 1, r0, c9, c0, 2 67 68 b _exit_init_l2_a15 69 70_enable_actlr_smp: /* R8A7794 only (CA7) */ 71#ifndef CONFIG_DCACHE_OFF 72 mrc p15, 0, r0, c1, c0, 1 73 orr r0, r0, #0x40 74 mcr p15, 0, r0, c1, c0, 1 75#endif 76 77_exit_init_l2_a15: 78 ldr r3, =(CONFIG_SYS_INIT_SP_ADDR) 79 sub sp, r3, #4 80 str lr, [sp] 81 82 /* initialize system */ 83 bl s_init 84 85 ldr lr, [sp] 86#endif 87 mov pc, lr 88 nop 89ENDPROC(lowlevel_init) 90 .ltorg 91