1 | /*
|
---|
2 | * Copyright (c) 2003-2004 Jakub Jermar
|
---|
3 | * All rights reserved.
|
---|
4 | *
|
---|
5 | * Redistribution and use in source and binary forms, with or without
|
---|
6 | * modification, are permitted provided that the following conditions
|
---|
7 | * are met:
|
---|
8 | *
|
---|
9 | * - Redistributions of source code must retain the above copyright
|
---|
10 | * notice, this list of conditions and the following disclaimer.
|
---|
11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
12 | * notice, this list of conditions and the following disclaimer in the
|
---|
13 | * documentation and/or other materials provided with the distribution.
|
---|
14 | * - The name of the author may not be used to endorse or promote products
|
---|
15 | * derived from this software without specific prior written permission.
|
---|
16 | *
|
---|
17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
27 | */
|
---|
28 |
|
---|
29 | /** @addtogroup mips32
|
---|
30 | * @{
|
---|
31 | */
|
---|
32 | /** @file
|
---|
33 | */
|
---|
34 |
|
---|
35 | #include <arch.h>
|
---|
36 | #include <arch/arch.h>
|
---|
37 | #include <typedefs.h>
|
---|
38 | #include <errno.h>
|
---|
39 | #include <interrupt.h>
|
---|
40 | #include <macros.h>
|
---|
41 | #include <str.h>
|
---|
42 | #include <mem.h>
|
---|
43 | #include <userspace.h>
|
---|
44 | #include <syscall/syscall.h>
|
---|
45 | #include <sysinfo/sysinfo.h>
|
---|
46 | #include <arch/debug.h>
|
---|
47 | #include <arch/debugger.h>
|
---|
48 | #include <arch/machine_func.h>
|
---|
49 |
|
---|
50 | /* Size of the code jumping to the exception handler code
|
---|
51 | * - J+NOP
|
---|
52 | */
|
---|
53 | #define EXCEPTION_JUMP_SIZE 8
|
---|
54 |
|
---|
55 | #define TLB_EXC ((char *) 0x80000000)
|
---|
56 | #define NORM_EXC ((char *) 0x80000180)
|
---|
57 | #define CACHE_EXC ((char *) 0x80000100)
|
---|
58 |
|
---|
59 | static void mips32_pre_mm_init(void);
|
---|
60 | static void mips32_post_mm_init(void);
|
---|
61 | static void mips32_post_smp_init(void);
|
---|
62 |
|
---|
63 | arch_ops_t mips32_ops = {
|
---|
64 | .pre_mm_init = mips32_pre_mm_init,
|
---|
65 | .post_mm_init = mips32_post_mm_init,
|
---|
66 | .post_smp_init = mips32_post_smp_init,
|
---|
67 | };
|
---|
68 |
|
---|
69 | arch_ops_t *arch_ops = &mips32_ops;
|
---|
70 |
|
---|
71 | /* Why the linker moves the variable 64K away in assembler
|
---|
72 | * when not in .text section?
|
---|
73 | */
|
---|
74 |
|
---|
75 | /* Stack pointer saved when entering user mode */
|
---|
76 | uintptr_t supervisor_sp __attribute__ ((section (".text")));
|
---|
77 |
|
---|
78 | size_t cpu_count = 0;
|
---|
79 |
|
---|
80 | #if defined(MACHINE_lmalta) || defined(MACHINE_bmalta)
|
---|
81 | size_t sdram_size = 0;
|
---|
82 | #endif
|
---|
83 |
|
---|
84 | /** Performs mips32-specific initialization before main_bsp() is called. */
|
---|
85 | void mips32_pre_main(void *entry __attribute__((unused)), bootinfo_t *bootinfo)
|
---|
86 | {
|
---|
87 | init.cnt = min3(bootinfo->cnt, TASKMAP_MAX_RECORDS, CONFIG_INIT_TASKS);
|
---|
88 |
|
---|
89 | size_t i;
|
---|
90 | for (i = 0; i < init.cnt; i++) {
|
---|
91 | init.tasks[i].paddr = KA2PA(bootinfo->tasks[i].addr);
|
---|
92 | init.tasks[i].size = bootinfo->tasks[i].size;
|
---|
93 | str_cpy(init.tasks[i].name, CONFIG_TASK_NAME_BUFLEN,
|
---|
94 | bootinfo->tasks[i].name);
|
---|
95 | }
|
---|
96 |
|
---|
97 | for (i = 0; i < CPUMAP_MAX_RECORDS; i++) {
|
---|
98 | if ((bootinfo->cpumap & (1 << i)) != 0)
|
---|
99 | cpu_count++;
|
---|
100 | }
|
---|
101 |
|
---|
102 | #if defined(MACHINE_lmalta) || defined(MACHINE_bmalta)
|
---|
103 | sdram_size = bootinfo->sdram_size;
|
---|
104 | #endif
|
---|
105 |
|
---|
106 | /* Initialize machine_ops pointer. */
|
---|
107 | machine_ops_init();
|
---|
108 | }
|
---|
109 |
|
---|
110 | void mips32_pre_mm_init(void)
|
---|
111 | {
|
---|
112 | /* It is not assumed by default */
|
---|
113 | interrupts_disable();
|
---|
114 |
|
---|
115 | /* Initialize dispatch table */
|
---|
116 | exception_init();
|
---|
117 |
|
---|
118 | /* Copy the exception vectors to the right places */
|
---|
119 | memcpy(TLB_EXC, (char *) tlb_refill_entry, EXCEPTION_JUMP_SIZE);
|
---|
120 | smc_coherence_block(TLB_EXC, EXCEPTION_JUMP_SIZE);
|
---|
121 | memcpy(NORM_EXC, (char *) exception_entry, EXCEPTION_JUMP_SIZE);
|
---|
122 | smc_coherence_block(NORM_EXC, EXCEPTION_JUMP_SIZE);
|
---|
123 | memcpy(CACHE_EXC, (char *) cache_error_entry, EXCEPTION_JUMP_SIZE);
|
---|
124 | smc_coherence_block(CACHE_EXC, EXCEPTION_JUMP_SIZE);
|
---|
125 |
|
---|
126 | /*
|
---|
127 | * Switch to BEV normal level so that exception vectors point to the
|
---|
128 | * kernel. Clear the error level.
|
---|
129 | */
|
---|
130 | cp0_status_write(cp0_status_read() &
|
---|
131 | ~(cp0_status_bev_bootstrap_bit | cp0_status_erl_error_bit));
|
---|
132 |
|
---|
133 | /*
|
---|
134 | * Mask all interrupts
|
---|
135 | */
|
---|
136 | cp0_mask_all_int();
|
---|
137 |
|
---|
138 | debugger_init();
|
---|
139 | }
|
---|
140 |
|
---|
141 | void mips32_post_mm_init(void)
|
---|
142 | {
|
---|
143 | interrupt_init();
|
---|
144 |
|
---|
145 | machine_init();
|
---|
146 | machine_output_init();
|
---|
147 | }
|
---|
148 |
|
---|
149 | void mips32_post_smp_init(void)
|
---|
150 | {
|
---|
151 | /* Set platform name. */
|
---|
152 | sysinfo_set_item_data("platform", NULL,
|
---|
153 | (void *) machine_get_platform_name(),
|
---|
154 | str_size(machine_get_platform_name()));
|
---|
155 |
|
---|
156 | machine_input_init();
|
---|
157 | }
|
---|
158 |
|
---|
159 | void calibrate_delay_loop(void)
|
---|
160 | {
|
---|
161 | }
|
---|
162 |
|
---|
163 | void userspace(uspace_arg_t *kernel_uarg)
|
---|
164 | {
|
---|
165 | /* EXL = 1, UM = 1, IE = 1 */
|
---|
166 | cp0_status_write(cp0_status_read() | (cp0_status_exl_exception_bit |
|
---|
167 | cp0_status_um_bit | cp0_status_ie_enabled_bit));
|
---|
168 | cp0_epc_write((uintptr_t) kernel_uarg->uspace_entry);
|
---|
169 | userspace_asm(((uintptr_t) kernel_uarg->uspace_stack +
|
---|
170 | kernel_uarg->uspace_stack_size),
|
---|
171 | (uintptr_t) kernel_uarg->uspace_uarg,
|
---|
172 | (uintptr_t) kernel_uarg->uspace_entry);
|
---|
173 |
|
---|
174 | while (1);
|
---|
175 | }
|
---|
176 |
|
---|
177 | /** Perform mips32 specific tasks needed before the new task is run. */
|
---|
178 | void before_task_runs_arch(void)
|
---|
179 | {
|
---|
180 | }
|
---|
181 |
|
---|
182 | /** Perform mips32 specific tasks needed before the new thread is scheduled. */
|
---|
183 | void before_thread_runs_arch(void)
|
---|
184 | {
|
---|
185 | supervisor_sp =
|
---|
186 | (uintptr_t) &THREAD->kstack[STACK_SIZE];
|
---|
187 | }
|
---|
188 |
|
---|
189 | void after_thread_ran_arch(void)
|
---|
190 | {
|
---|
191 | }
|
---|
192 |
|
---|
193 | void arch_reboot(void)
|
---|
194 | {
|
---|
195 | ___halt();
|
---|
196 | while (1);
|
---|
197 | }
|
---|
198 |
|
---|
199 | /** Construct function pointer
|
---|
200 | *
|
---|
201 | * @param fptr function pointer structure
|
---|
202 | * @param addr function address
|
---|
203 | * @param caller calling function address
|
---|
204 | *
|
---|
205 | * @return address of the function pointer
|
---|
206 | *
|
---|
207 | */
|
---|
208 | void *arch_construct_function(fncptr_t *fptr, void *addr, void *caller)
|
---|
209 | {
|
---|
210 | return addr;
|
---|
211 | }
|
---|
212 |
|
---|
213 | void irq_initialize_arch(irq_t *irq)
|
---|
214 | {
|
---|
215 | (void) irq;
|
---|
216 | }
|
---|
217 |
|
---|
218 | /** @}
|
---|
219 | */
|
---|