4 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
11 * -Check if we are running on Simulator or on real hardware
12 * to skip certain things during boot on simulator
15 #include <linux/linkage.h>
16 #include <asm/asm-offsets.h>
17 #include <asm/entry.h>
18 #include <asm/arcregs.h>
19 #include <asm/cache.h>
20 #include <asm/irqflags.h>
22 .macro CPU_EARLY_SETUP
24 ; Setting up Vectror Table (in case exception happens in early boot
25 sr @_int_vec_base_lds, [AUX_INTR_VEC_BASE]
27 ; Disable I-cache/D-cache if kernel so configured
28 lr r5, [ARC_REG_IC_BCR]
29 breq r5, 0, 1f ; I$ doesn't exist
30 lr r5, [ARC_REG_IC_CTRL]
31 #ifdef CONFIG_ARC_HAS_ICACHE
32 bclr r5, r5, 0 ; 0 - Enable, 1 is Disable
34 bset r5, r5, 0 ; I$ exists, but is not used
36 sr r5, [ARC_REG_IC_CTRL]
39 lr r5, [ARC_REG_DC_BCR]
40 breq r5, 0, 1f ; D$ doesn't exist
41 lr r5, [ARC_REG_DC_CTRL]
42 bclr r5, r5, 6 ; Invalidate (discard w/o wback)
43 #ifdef CONFIG_ARC_HAS_DCACHE
44 bclr r5, r5, 0 ; Enable (+Inv)
46 bset r5, r5, 0 ; Disable (+Inv)
48 sr r5, [ARC_REG_DC_CTRL]
52 #ifdef CONFIG_ISA_ARCV2
53 ; Unaligned access is disabled at reset, so re-enable early as
54 ; gcc 7.3.1 (ARC GNU 2018.03) onwards generates unaligned access
57 bset r5, r5, STATUS_AD_BIT
62 .section .init.text, "ax",@progbits
64 ;----------------------------------------------------------------
65 ; Default Reset Handler (jumped into from Reset vector)
66 ; - Don't clobber r0,r1,r2 as they might have u-boot provided args
67 ; - Platforms can override this weak version if needed
68 ;----------------------------------------------------------------
73 ;----------------------------------------------------------------
75 ;----------------------------------------------------------------
86 ; Non-Masters wait for Master to boot enough and bring them up
87 ; when they resume, tail-call to entry point
88 mov blink, @first_lines_of_secondary
89 j arc_platform_smp_wait_to_boot
94 ; Clear BSS before updating any globals
97 sub r6, __bss_stop, r5
104 ; r0 = [0] No uboot interaction, [1] cmdline in r2, [2] DTB in r2
105 ; r1 = magic number (always zero as of now)
106 ; r2 = pointer to uboot provided cmdline or external DTB in mem
107 ; These are handled later in handle_uboot_args()
111 ; setup "current" tsk and optionally cache it in dedicated r25
113 SET_CURR_TASK_ON_CPU r9, r0 ; r9 = tsk, r0 = scratch
115 ; setup stack (fp, sp)
118 ; tsk->thread_info is really a PAGE, whose bottom hoists stack
119 GET_TSK_STACK_BASE r9, sp ; r9 = tsk, sp = stack base(output)
121 j start_kernel ; "C" entry point
125 ;----------------------------------------------------------------
126 ; First lines of code run by secondary before jumping to 'C'
127 ;----------------------------------------------------------------
128 .section .text, "ax",@progbits
129 ENTRY(first_lines_of_secondary)
131 ; setup per-cpu idle task as "current" on this CPU
132 ld r0, [@secondary_idle_tsk]
133 SET_CURR_TASK_ON_CPU r0, r1
135 ; setup stack (fp, sp)
138 ; set it's stack base to tsk->thread_info bottom
139 GET_TSK_STACK_BASE r0, sp
141 j start_kernel_secondary
142 END(first_lines_of_secondary)