1 /* SPDX-License-Identifier: GPL-2.0-only */
5 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
8 * -Check if we are running on Simulator or on real hardware
9 * to skip certain things during boot on simulator
12 #include <linux/linkage.h>
13 #include <asm/asm-offsets.h>
14 #include <asm/entry.h>
15 #include <asm/arcregs.h>
16 #include <asm/cache.h>
17 #include <asm/dsp-impl.h>
18 #include <asm/irqflags.h>
20 .macro CPU_EARLY_SETUP
22 ; Setting up Vectror Table (in case exception happens in early boot
23 sr @_int_vec_base_lds, [AUX_INTR_VEC_BASE]
25 ; Disable I-cache/D-cache if kernel so configured
26 lr r5, [ARC_REG_IC_BCR]
27 breq r5, 0, 1f ; I$ doesn't exist
28 lr r5, [ARC_REG_IC_CTRL]
29 #ifdef CONFIG_ARC_HAS_ICACHE
30 bclr r5, r5, 0 ; 0 - Enable, 1 is Disable
32 bset r5, r5, 0 ; I$ exists, but is not used
34 sr r5, [ARC_REG_IC_CTRL]
37 lr r5, [ARC_REG_DC_BCR]
38 breq r5, 0, 1f ; D$ doesn't exist
39 lr r5, [ARC_REG_DC_CTRL]
40 bclr r5, r5, 6 ; Invalidate (discard w/o wback)
41 #ifdef CONFIG_ARC_HAS_DCACHE
42 bclr r5, r5, 0 ; Enable (+Inv)
44 bset r5, r5, 0 ; Disable (+Inv)
46 sr r5, [ARC_REG_DC_CTRL]
50 #ifdef CONFIG_ISA_ARCV2
51 ; Unaligned access is disabled at reset, so re-enable early as
52 ; gcc 7.3.1 (ARC GNU 2018.03) onwards generates unaligned access
55 #ifdef CONFIG_ARC_USE_UNALIGNED_MEM_ACCESS
56 bset r5, r5, STATUS_AD_BIT
58 ; Although disabled at reset, bootloader might have enabled it
59 bclr r5, r5, STATUS_AD_BIT
63 #ifdef CONFIG_ARC_LPB_DISABLE
64 lr r5, [ARC_REG_LPB_BUILD]
65 breq r5, 0, 1f ; LPB doesn't exist
67 sr r5, [ARC_REG_LPB_CTRL]
69 #endif /* CONFIG_ARC_LPB_DISABLE */
71 /* On HSDK, CCMs need to remapped super early */
72 #ifdef CONFIG_ARC_SOC_HSDK
74 lr r5, [ARC_REG_ICCM_BUILD]
76 sr r6, [ARC_REG_AUX_ICCM]
78 lr r5, [ARC_REG_DCCM_BUILD]
80 sr r6, [ARC_REG_AUX_DCCM]
82 #endif /* CONFIG_ARC_SOC_HSDK */
84 #endif /* CONFIG_ISA_ARCV2 */
86 ; Config DSP_CTRL properly, so kernel may use integer multiply,
87 ; multiply-accumulate, and divide operations
91 .section .init.text, "ax",@progbits
93 ;----------------------------------------------------------------
94 ; Default Reset Handler (jumped into from Reset vector)
95 ; - Don't clobber r0,r1,r2 as they might have u-boot provided args
96 ; - Platforms can override this weak version if needed
97 ;----------------------------------------------------------------
102 ;----------------------------------------------------------------
104 ;----------------------------------------------------------------
115 ; Non-Masters wait for Master to boot enough and bring them up
116 ; when they resume, tail-call to entry point
117 mov blink, @first_lines_of_secondary
118 j arc_platform_smp_wait_to_boot
123 ; Clear BSS before updating any globals
126 sub r6, __bss_stop, r5
127 lsr.f lp_count, r6, 2
133 ; r0 = [0] No uboot interaction, [1] cmdline in r2, [2] DTB in r2
134 ; r1 = magic number (always zero as of now)
135 ; r2 = pointer to uboot provided cmdline or external DTB in mem
136 ; These are handled later in handle_uboot_args()
138 st r1, [@uboot_magic]
141 ; setup "current" tsk and optionally cache it in dedicated r25
143 SET_CURR_TASK_ON_CPU r9, r0 ; r9 = tsk, r0 = scratch
145 ; setup stack (fp, sp)
148 ; tsk->thread_info is really a PAGE, whose bottom hoists stack
149 GET_TSK_STACK_BASE r9, sp ; r9 = tsk, sp = stack base(output)
151 j start_kernel ; "C" entry point
155 ;----------------------------------------------------------------
156 ; First lines of code run by secondary before jumping to 'C'
157 ;----------------------------------------------------------------
158 .section .text, "ax",@progbits
159 ENTRY(first_lines_of_secondary)
161 ; setup per-cpu idle task as "current" on this CPU
162 ld r0, [@secondary_idle_tsk]
163 SET_CURR_TASK_ON_CPU r0, r1
165 ; setup stack (fp, sp)
168 ; set its stack base to tsk->thread_info bottom
169 GET_TSK_STACK_BASE r0, sp
171 j start_kernel_secondary
172 END(first_lines_of_secondary)