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
102 /* Touch to zero for the boot way */
103 0: ldr r0, = 0x00408006 @ touch to zero with address range
104 str r0, [r1, #SSCOQM]
105 ldr r0, = BOOT_RAM_BASE
106 str r0, [r1, #SSCOQAD]
107 ldr r0, = BOOT_RAM_SIZE
108 str r0, [r1, #SSCOQSZ]
109 ldr r0, = BOOT_RAM_WAYS
110 str r0, [r1, #SSCOQWN]
111 ldr r0, [r1, #SSCOPPQSEF]
112 cmp r0, #0 @ check if the command is successfully set
113 bne 0b @ try again if an error occurs
115 1: ldr r0, [r1, #SSCOLPQS]
117 bne 1b @ wait until the operation is completed
118 str r0, [r1, #SSCOLPQS] @ clear the complete notification flag
121 ENDPROC(setup_init_ram)
123 #define DEVICE 0x00002002 /* Non-shareable Device */
124 #define NORMAL 0x0000000e /* Normal Memory Write-Back, No Write-Allocate */
126 ENTRY(create_page_table)
128 ldr r1, = BOOT_RAM_BASE
129 mov r12, r1 @ r12 is preserved during D-cache flush
130 0: str r0, [r1], #4 @ specify all the sections as Device
131 adds r0, r0, #0x00100000
135 str r0, [r12] @ mark the first section as Normal
136 add r0, r0, #0x00100000
137 str r0, [r12, #4] @ mark the second section as Normal
139 ENDPROC(create_page_table)