]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/armv7/rmobile/lowlevel_init_ca15.S
Merge branch 'u-boot-samsung/master' into 'u-boot-arm/master'
[karo-tx-uboot.git] / arch / arm / cpu / armv7 / rmobile / lowlevel_init_ca15.S
1 /*
2  * arch/arm/cpu/armv7/rmobile/lowlevel_init_ca15.S
3  *     This file is lager low level initialize.
4  *
5  * Copyright (C) 2013, 2014 Renesas Electronics Corporation
6  *
7  * SPDX-License-Identifier: GPL-2.0
8  */
9
10 #include <config.h>
11 #include <linux/linkage.h>
12
13 ENTRY(lowlevel_init)
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
26 do_cpu_waiting:
27         ldr     r1, =0xe6180000 /* sysc */
28 1:      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
37 do_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     _exit_init_l2_a15
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
64         ldr     r2, =0xFF000044         /* PRR */
65         ldr     r1, [r2]
66         and     r1, r1, #0x7F00
67         lsrs    r1, r1, #8
68         cmp     r1, #0x45               /* 0x45 is ID of r8a7790 */
69         bne     L2CTLR_5_SKIP
70         orrne r0, r0, #0x20             /* L2CTLR[5] */
71 L2CTLR_5_SKIP:
72         mcrne p15, 1, r0, c9, c0, 2
73
74 _exit_init_l2_a15:
75         ldr     r3, =(CONFIG_SYS_INIT_SP_ADDR)
76         sub     sp, r3, #4
77         str     lr, [sp]
78
79         /* initialize system */
80         bl s_init
81
82         ldr     lr, [sp]
83         mov     pc, lr
84         nop
85 ENDPROC(lowlevel_init)
86         .ltorg