2 * Copyright (C) 2012-2015 Panasonic Corporation
3 * Copyright (C) 2015-2016 Socionext Inc.
4 * Author: Masahiro Yamada <yamada.masahiro@socionext.com>
6 * SPDX-License-Identifier: GPL-2.0+
10 #include <linux/linkage.h>
11 #include <linux/sizes.h>
12 #include <asm/system.h>
15 mov r8, lr @ persevere link reg across call
18 * The UniPhier Boot ROM loads SPL code to the L2 cache.
19 * But CPUs can only do instruction fetch now because start.S has
20 * cleared C and M bits.
21 * First we need to turn on MMU and Dcache again to get back
24 mrc p15, 0, r0, c1, c0, 0 @ SCTLR (System Control Register)
25 orr r0, r0, #(CR_C | CR_M) @ enable MMU and Dcache
26 mcr p15, 0, r0, c1, c0, 0
28 #ifdef CONFIG_DEBUG_LL
32 bl setup_init_ram @ RAM area for stack and page table
35 * Now we are using the page table embedded in the Boot ROM.
36 * What we need to do next is to create a page table and switch
40 bl __v7_flush_dcache_all
42 /* Disable MMU and Dcache before switching Page Table */
43 mrc p15, 0, r0, c1, c0, 0 @ SCTLR (System Control Register)
44 bic r0, r0, #(CR_C | CR_M) @ disable MMU and Dcache
45 mcr p15, 0, r0, c1, c0, 0
49 mov lr, r8 @ restore link
50 mov pc, lr @ back to my caller
51 ENDPROC(lowlevel_init)
54 mrc p15, 0, r0, c2, c0, 2 @ TTBCR (Translation Table Base Control Register)
56 orr r0, r0, #0x20 @ disable TTBR1
57 mcr p15, 0, r0, c2, c0, 2
59 orr r0, r12, #0x8 @ Outer Cacheability for table walks: WBWA
60 mcr p15, 0, r0, c2, c0, 0 @ TTBR0
63 mcr p15, 0, r0, c8, c7, 0 @ invalidate TLBs
65 mov r0, #-1 @ manager for all domains (No permission check)
66 mcr p15, 0, r0, c3, c0, 0 @ DACR (Domain Access Control Register)
72 * TLBs was already invalidated in "../start.S"
73 * So, we don't need to invalidate it here.
75 mrc p15, 0, r0, c1, c0, 0 @ SCTLR (System Control Register)
76 orr r0, r0, #(CR_C | CR_M) @ MMU and Dcache enable
77 mcr p15, 0, r0, c1, c0, 0
83 * For PH1-Pro4 or older SoCs, the size of WAY is 32KB.
84 * It is large enough for tmp RAM.
86 #define BOOT_RAM_SIZE (SZ_32K)
87 #define BOOT_RAM_BASE ((CONFIG_SPL_STACK) - (BOOT_RAM_SIZE))
88 #define BOOT_RAM_WAYS (0x00000100) @ way 8
90 #define SSCO_BASE 0x506c0000
96 #define SSCOPPQSEF 0x25c
97 #define SSCOLPQS 0x260
101 mrc p15, 0, r0, c2, c0, 0 @ TTBR0
102 ldr r0, [r0, #0x400] @ entry for virtual address 0x100*****
104 cmp r0, #0x50000000 @ is sLD3 page table?
105 biceq r1, r1, #0xc0000000 @ sLD3 ROM maps 0x5******* to 0x1*******
107 /* Touch to zero for the boot way */
108 0: ldr r0, = 0x00408006 @ touch to zero with address range
109 str r0, [r1, #SSCOQM]
110 ldr r0, = BOOT_RAM_BASE
111 str r0, [r1, #SSCOQAD]
112 ldr r0, = BOOT_RAM_SIZE
113 str r0, [r1, #SSCOQSZ]
114 ldr r0, = BOOT_RAM_WAYS
115 str r0, [r1, #SSCOQWN]
116 ldr r0, [r1, #SSCOPPQSEF]
117 cmp r0, #0 @ check if the command is successfully set
118 bne 0b @ try again if an error occurs
120 1: ldr r0, [r1, #SSCOLPQS]
122 bne 1b @ wait until the operation is completed
123 str r0, [r1, #SSCOLPQS] @ clear the complete notification flag
126 ENDPROC(setup_init_ram)
128 #define DEVICE 0x00002002 /* Non-shareable Device */
129 #define NORMAL 0x0000000e /* Normal Memory Write-Back, No Write-Allocate */
131 ENTRY(create_page_table)
133 ldr r1, = BOOT_RAM_BASE
134 mov r12, r1 @ r12 is preserved during D-cache flush
135 0: str r0, [r1], #4 @ specify all the sections as Device
136 adds r0, r0, #0x00100000
140 str r0, [r12] @ mark the first section as Normal
141 add r0, r0, #0x00100000
142 str r0, [r12, #4] @ mark the second section as Normal
144 ENDPROC(create_page_table)