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>
21 .macro CPU_EARLY_SETUP
23 ; Setting up Vectror Table (in case exception happens in early boot
24 sr @_int_vec_base_lds, [AUX_INTR_VEC_BASE]
26 ; Disable I-cache/D-cache if kernel so configured
27 lr r5, [ARC_REG_IC_BCR]
28 breq r5, 0, 1f ; I$ doesn't exist
29 lr r5, [ARC_REG_IC_CTRL]
30 #ifdef CONFIG_ARC_HAS_ICACHE
31 bclr r5, r5, 0 ; 0 - Enable, 1 is Disable
33 bset r5, r5, 0 ; I$ exists, but is not used
35 sr r5, [ARC_REG_IC_CTRL]
38 lr r5, [ARC_REG_DC_BCR]
39 breq r5, 0, 1f ; D$ doesn't exist
40 lr r5, [ARC_REG_DC_CTRL]
41 bclr r5, r5, 6 ; Invalidate (discard w/o wback)
42 #ifdef CONFIG_ARC_HAS_DCACHE
43 bclr r5, r5, 0 ; Enable (+Inv)
45 bset r5, r5, 0 ; Disable (+Inv)
47 sr r5, [ARC_REG_DC_CTRL]
54 .section .init.text, "ax",@progbits
55 .type stext, @function
58 ;-------------------------------------------------------------------
59 ; Don't clobber r0-r2 yet. It might have bootloader provided info
60 ;-------------------------------------------------------------------
65 ; Ensure Boot (Master) proceeds. Others wait in platform dependent way
66 ; IDENTITY Reg [ 3 2 1 0 ]
67 ; (cpu-id) ^^^ => Zero for UP ARC700
68 ; => #Core-ID if SMP (Master 0)
69 ; Note that non-boot CPUs might not land here if halt-on-reset and
70 ; instead breath life from @first_lines_of_secondary, but we still
71 ; need to make sure only boot cpu takes this path.
75 jne arc_platform_smp_wait_to_boot
77 ; Clear BSS before updating any globals
80 sub r6, __bss_stop, r5
87 ; r0 = [0] No uboot interaction, [1] cmdline in r2, [2] DTB in r2
88 ; r1 = magic number (board identity, unused as of now
89 ; r2 = pointer to uboot provided cmdline or external DTB in mem
90 ; These are handled later in setup_arch()
94 ; setup "current" tsk and optionally cache it in dedicated r25
96 SET_CURR_TASK_ON_CPU r9, r0 ; r9 = tsk, r0 = scratch
98 ; setup stack (fp, sp)
101 ; tsk->thread_info is really a PAGE, whose bottom hoists stack
102 GET_TSK_STACK_BASE r9, sp ; r9 = tsk, sp = stack base(output)
104 j start_kernel ; "C" entry point
107 ;----------------------------------------------------------------
108 ; First lines of code run by secondary before jumping to 'C'
109 ;----------------------------------------------------------------
110 .section .text, "ax",@progbits
111 .type first_lines_of_secondary, @function
112 .globl first_lines_of_secondary
114 first_lines_of_secondary:
118 ; setup per-cpu idle task as "current" on this CPU
119 ld r0, [@secondary_idle_tsk]
120 SET_CURR_TASK_ON_CPU r0, r1
122 ; setup stack (fp, sp)
125 ; set it's stack base to tsk->thread_info bottom
126 GET_TSK_STACK_BASE r0, sp
128 j start_kernel_secondary