source: mainline/kernel/arch/mips32/src/mips32.c@ 32817cc

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 32817cc was 32817cc, checked in by Jakub Jermar <jakub@…>, 13 years ago

Make the kernel ready for init tasks loaded to high memory.

  • Property mode set to 100644
File size: 6.8 KB
RevLine 
[f761f1eb]1/*
[df4ed85]2 * Copyright (c) 2003-2004 Jakub Jermar
[f761f1eb]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
[d227101]29/** @addtogroup mips32
[b45c443]30 * @{
31 */
32/** @file
33 */
34
[f761f1eb]35#include <arch.h>
[d8db519]36#include <typedefs.h>
37#include <errno.h>
38#include <interrupt.h>
39#include <macros.h>
40#include <str.h>
[ffc277e]41#include <memstr.h>
[d8db519]42#include <userspace.h>
[c2417bc]43#include <console/console.h>
[281b607]44#include <syscall/syscall.h>
[06a583e]45#include <sysinfo/sysinfo.h>
[d8db519]46#include <arch/debug.h>
[5bb8e45]47#include <arch/debugger.h>
[d8db519]48#include <arch/drivers/msim.h>
[bd55bbb]49#include <genarch/fb/fb.h>
[1410f35]50#include <genarch/drivers/dsrln/dsrlnin.h>
51#include <genarch/drivers/dsrln/dsrlnout.h>
52#include <genarch/srln/srln.h>
[973be64e]53
[96e0748d]54/* Size of the code jumping to the exception handler code
55 * - J+NOP
[ffc277e]56 */
[96e0748d]57#define EXCEPTION_JUMP_SIZE 8
[ffc277e]58
[96e0748d]59#define TLB_EXC ((char *) 0x80000000)
60#define NORM_EXC ((char *) 0x80000180)
61#define CACHE_EXC ((char *) 0x80000100)
[ffc277e]62
[8449000]63
64/* Why the linker moves the variable 64K away in assembler
[96e0748d]65 * when not in .text section?
[8449000]66 */
[96e0748d]67
[8449000]68/* Stack pointer saved when entering user mode */
[96e0748d]69uintptr_t supervisor_sp __attribute__ ((section (".text")));
[971cf31f]70
[98000fb]71size_t cpu_count = 0;
[96e0748d]72
[06f96234]73/** Performs mips32-specific initialization before main_bsp() is called. */
[96e0748d]74void arch_pre_main(void *entry __attribute__((unused)), bootinfo_t *bootinfo)
[12c7f27]75{
[4872160]76 init.cnt = min3(bootinfo->cnt, TASKMAP_MAX_RECORDS, CONFIG_INIT_TASKS);
[971cf31f]77
[98000fb]78 size_t i;
[4872160]79 for (i = 0; i < init.cnt; i++) {
[32817cc]80 init.tasks[i].paddr = KA2PA(bootinfo->tasks[i].addr);
[96e0748d]81 init.tasks[i].size = bootinfo->tasks[i].size;
[f4b1535]82 str_cpy(init.tasks[i].name, CONFIG_TASK_NAME_BUFLEN,
83 bootinfo->tasks[i].name);
[96e0748d]84 }
[971cf31f]85
[96e0748d]86 for (i = 0; i < CPUMAP_MAX_RECORDS; i++) {
87 if ((bootinfo->cpumap & (1 << i)) != 0)
88 cpu_count++;
[971cf31f]89 }
[12c7f27]90}
91
[f07bba5]92void arch_pre_mm_init(void)
[f761f1eb]93{
[24241cf]94 /* It is not assumed by default */
[22f7769]95 interrupts_disable();
[973be64e]96
97 /* Initialize dispatch table */
[7a8c866a]98 exception_init();
[3156582]99
[ffc277e]100 /* Copy the exception vectors to the right places */
[7688b5d]101 memcpy(TLB_EXC, (char *) tlb_refill_entry, EXCEPTION_JUMP_SIZE);
[c7511ec]102 smc_coherence_block(TLB_EXC, EXCEPTION_JUMP_SIZE);
[7688b5d]103 memcpy(NORM_EXC, (char *) exception_entry, EXCEPTION_JUMP_SIZE);
[c7511ec]104 smc_coherence_block(NORM_EXC, EXCEPTION_JUMP_SIZE);
[7688b5d]105 memcpy(CACHE_EXC, (char *) cache_error_entry, EXCEPTION_JUMP_SIZE);
[c7511ec]106 smc_coherence_block(CACHE_EXC, EXCEPTION_JUMP_SIZE);
[7688b5d]107
[f761f1eb]108 /*
[c7511ec]109 * Switch to BEV normal level so that exception vectors point to the
110 * kernel. Clear the error level.
[f761f1eb]111 */
[c7511ec]112 cp0_status_write(cp0_status_read() &
113 ~(cp0_status_bev_bootstrap_bit | cp0_status_erl_error_bit));
[6da1013f]114
115 /*
116 * Mask all interrupts
[24241cf]117 */
118 cp0_mask_all_int();
[6da1013f]119
[5bb8e45]120 debugger_init();
[f761f1eb]121}
[7eade45]122
123void arch_post_mm_init(void)
124{
[7688b5d]125 interrupt_init();
[1410f35]126
[bd55bbb]127#ifdef CONFIG_FB
[c7511ec]128 /* GXemul framebuffer */
[965dc18]129 fb_properties_t gxemul_prop = {
130 .addr = 0x12000000,
131 .offset = 0,
132 .x = 640,
133 .y = 480,
134 .scan = 1920,
[30885b9]135 .visual = VISUAL_RGB_8_8_8,
[965dc18]136 };
[a71c158]137
138 outdev_t *fbdev = fb_init(&gxemul_prop);
139 if (fbdev)
140 stdout_wire(fbdev);
141#endif
142
[1410f35]143#ifdef CONFIG_MIPS_PRN
[a71c158]144 outdev_t *dsrlndev = dsrlnout_init((ioport8_t *) MSIM_KBD_ADDRESS);
145 if (dsrlndev)
146 stdout_wire(dsrlndev);
147#endif
[7eade45]148}
[babcb148]149
[26678e5]150void arch_post_cpu_init(void)
151{
152}
153
[7453929]154void arch_pre_smp_init(void)
155{
156}
157
158void arch_post_smp_init(void)
[babcb148]159{
[eff1f033]160 static const char *platform;
161
162 /* Set platform name. */
163#ifdef MACHINE_msim
164 platform = "msim";
165#endif
166#ifdef MACHINE_bgxemul
167 platform = "gxemul";
168#endif
169#ifdef MACHINE_lgxemul
170 platform = "gxemul";
171#endif
172 sysinfo_set_item_data("platform", NULL, (void *) platform,
173 str_size(platform));
174
[1410f35]175#ifdef CONFIG_MIPS_KBD
176 /*
177 * Initialize the msim/GXemul keyboard port. Then initialize the serial line
178 * module and connect it to the msim/GXemul keyboard. Enable keyboard interrupts.
179 */
[c2417bc]180 dsrlnin_instance_t *dsrlnin_instance
181 = dsrlnin_init((dsrlnin_t *) MSIM_KBD_ADDRESS, MSIM_KBD_IRQ);
182 if (dsrlnin_instance) {
183 srln_instance_t *srln_instance = srln_init();
184 if (srln_instance) {
185 indev_t *sink = stdin_wire();
186 indev_t *srln = srln_wire(srln_instance, sink);
187 dsrlnin_wire(dsrlnin_instance, srln);
188 cp0_unmask_int(MSIM_KBD_IRQ);
189 }
[1410f35]190 }
191
192 /*
193 * This is the necessary evil until the userspace driver is entirely
194 * self-sufficient.
195 */
196 sysinfo_set_item_val("kbd", NULL, true);
197 sysinfo_set_item_val("kbd.inr", NULL, MSIM_KBD_IRQ);
198 sysinfo_set_item_val("kbd.address.virtual", NULL, MSIM_KBD_ADDRESS);
199#endif
[babcb148]200}
[2bd4fdf]201
[7f341820]202void calibrate_delay_loop(void)
203{
204}
205
[0f250f9]206void userspace(uspace_arg_t *kernel_uarg)
[2bd4fdf]207{
[b5ed4f8]208 /* EXL = 1, UM = 1, IE = 1 */
[2bd4fdf]209 cp0_status_write(cp0_status_read() | (cp0_status_exl_exception_bit |
[c7511ec]210 cp0_status_um_bit | cp0_status_ie_enabled_bit));
[7f1c620]211 cp0_epc_write((uintptr_t) kernel_uarg->uspace_entry);
[26aafe8]212 userspace_asm(((uintptr_t) kernel_uarg->uspace_stack + STACK_SIZE),
[c7511ec]213 (uintptr_t) kernel_uarg->uspace_uarg,
214 (uintptr_t) kernel_uarg->uspace_entry);
[b5ed4f8]215
[6da1013f]216 while (1);
[2bd4fdf]217}
218
[39cea6a]219/** Perform mips32 specific tasks needed before the new task is run. */
220void before_task_runs_arch(void)
221{
222}
223
224/** Perform mips32 specific tasks needed before the new thread is scheduled. */
[2bd4fdf]225void before_thread_runs_arch(void)
226{
[26aafe8]227 supervisor_sp =
228 (uintptr_t) &THREAD->kstack[STACK_SIZE - SP_DELTA];
[2bd4fdf]229}
[97f1691]230
231void after_thread_ran_arch(void)
232{
233}
[281b607]234
[e1be3b6]235/** Set thread-local-storage pointer
[281b607]236 *
237 * We have it currently in K1, it is
238 * possible to have it separately in the future.
239 */
[d8db519]240sysarg_t sys_tls_set(uintptr_t addr)
[281b607]241{
[d8db519]242 return EOK;
[281b607]243}
[41d33ac]244
[f74bbaf]245void arch_reboot(void)
246{
[edebc15c]247 ___halt();
[6da1013f]248 while (1);
249}
250
251/** Construct function pointer
252 *
253 * @param fptr function pointer structure
254 * @param addr function address
255 * @param caller calling function address
256 *
257 * @return address of the function pointer
258 *
259 */
260void *arch_construct_function(fncptr_t *fptr, void *addr, void *caller)
261{
262 return addr;
[f74bbaf]263}
264
[3a2f8aa]265void irq_initialize_arch(irq_t *irq)
266{
267 (void) irq;
268}
269
[d227101]270/** @}
[b45c443]271 */
Note: See TracBrowser for help on using the repository browser.