[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] | 69 | uintptr_t supervisor_sp __attribute__ ((section (".text")));
|
---|
[971cf31f] | 70 |
|
---|
[98000fb] | 71 | size_t cpu_count = 0;
|
---|
[96e0748d] | 72 |
|
---|
[bcad855] | 73 | #if defined(MACHINE_lmalta) || defined(MACHINE_bmalta)
|
---|
| 74 | size_t sdram_size = 0;
|
---|
| 75 | #endif
|
---|
| 76 |
|
---|
[06f96234] | 77 | /** Performs mips32-specific initialization before main_bsp() is called. */
|
---|
[96e0748d] | 78 | void arch_pre_main(void *entry __attribute__((unused)), bootinfo_t *bootinfo)
|
---|
[12c7f27] | 79 | {
|
---|
[4872160] | 80 | init.cnt = min3(bootinfo->cnt, TASKMAP_MAX_RECORDS, CONFIG_INIT_TASKS);
|
---|
[971cf31f] | 81 |
|
---|
[98000fb] | 82 | size_t i;
|
---|
[4872160] | 83 | for (i = 0; i < init.cnt; i++) {
|
---|
[32817cc] | 84 | init.tasks[i].paddr = KA2PA(bootinfo->tasks[i].addr);
|
---|
[96e0748d] | 85 | init.tasks[i].size = bootinfo->tasks[i].size;
|
---|
[f4b1535] | 86 | str_cpy(init.tasks[i].name, CONFIG_TASK_NAME_BUFLEN,
|
---|
| 87 | bootinfo->tasks[i].name);
|
---|
[96e0748d] | 88 | }
|
---|
[971cf31f] | 89 |
|
---|
[96e0748d] | 90 | for (i = 0; i < CPUMAP_MAX_RECORDS; i++) {
|
---|
| 91 | if ((bootinfo->cpumap & (1 << i)) != 0)
|
---|
| 92 | cpu_count++;
|
---|
[971cf31f] | 93 | }
|
---|
[bcad855] | 94 |
|
---|
| 95 | #if defined(MACHINE_lmalta) || defined(MACHINE_bmalta)
|
---|
| 96 | sdram_size = bootinfo->sdram_size;
|
---|
| 97 | #endif
|
---|
[12c7f27] | 98 | }
|
---|
| 99 |
|
---|
[f07bba5] | 100 | void arch_pre_mm_init(void)
|
---|
[f761f1eb] | 101 | {
|
---|
[24241cf] | 102 | /* It is not assumed by default */
|
---|
[22f7769] | 103 | interrupts_disable();
|
---|
[973be64e] | 104 |
|
---|
| 105 | /* Initialize dispatch table */
|
---|
[7a8c866a] | 106 | exception_init();
|
---|
[3156582] | 107 |
|
---|
[ffc277e] | 108 | /* Copy the exception vectors to the right places */
|
---|
[7688b5d] | 109 | memcpy(TLB_EXC, (char *) tlb_refill_entry, EXCEPTION_JUMP_SIZE);
|
---|
[c7511ec] | 110 | smc_coherence_block(TLB_EXC, EXCEPTION_JUMP_SIZE);
|
---|
[7688b5d] | 111 | memcpy(NORM_EXC, (char *) exception_entry, EXCEPTION_JUMP_SIZE);
|
---|
[c7511ec] | 112 | smc_coherence_block(NORM_EXC, EXCEPTION_JUMP_SIZE);
|
---|
[7688b5d] | 113 | memcpy(CACHE_EXC, (char *) cache_error_entry, EXCEPTION_JUMP_SIZE);
|
---|
[c7511ec] | 114 | smc_coherence_block(CACHE_EXC, EXCEPTION_JUMP_SIZE);
|
---|
[7688b5d] | 115 |
|
---|
[f761f1eb] | 116 | /*
|
---|
[c7511ec] | 117 | * Switch to BEV normal level so that exception vectors point to the
|
---|
| 118 | * kernel. Clear the error level.
|
---|
[f761f1eb] | 119 | */
|
---|
[c7511ec] | 120 | cp0_status_write(cp0_status_read() &
|
---|
| 121 | ~(cp0_status_bev_bootstrap_bit | cp0_status_erl_error_bit));
|
---|
[6da1013f] | 122 |
|
---|
| 123 | /*
|
---|
| 124 | * Mask all interrupts
|
---|
[24241cf] | 125 | */
|
---|
| 126 | cp0_mask_all_int();
|
---|
[6da1013f] | 127 |
|
---|
[5bb8e45] | 128 | debugger_init();
|
---|
[f761f1eb] | 129 | }
|
---|
[7eade45] | 130 |
|
---|
| 131 | void arch_post_mm_init(void)
|
---|
| 132 | {
|
---|
[7688b5d] | 133 | interrupt_init();
|
---|
[1410f35] | 134 |
|
---|
| 135 | #ifdef CONFIG_MIPS_PRN
|
---|
[a71c158] | 136 | outdev_t *dsrlndev = dsrlnout_init((ioport8_t *) MSIM_KBD_ADDRESS);
|
---|
| 137 | if (dsrlndev)
|
---|
| 138 | stdout_wire(dsrlndev);
|
---|
| 139 | #endif
|
---|
[7eade45] | 140 | }
|
---|
[babcb148] | 141 |
|
---|
[26678e5] | 142 | void arch_post_cpu_init(void)
|
---|
| 143 | {
|
---|
| 144 | }
|
---|
| 145 |
|
---|
[7453929] | 146 | void arch_pre_smp_init(void)
|
---|
| 147 | {
|
---|
| 148 | }
|
---|
| 149 |
|
---|
| 150 | void arch_post_smp_init(void)
|
---|
[babcb148] | 151 | {
|
---|
[eff1f033] | 152 | static const char *platform;
|
---|
| 153 |
|
---|
| 154 | /* Set platform name. */
|
---|
[3f69f63d] | 155 | #if defined(MACHINE_msim)
|
---|
[eff1f033] | 156 | platform = "msim";
|
---|
[3f69f63d] | 157 | #endif
|
---|
| 158 | #if defined(MACHINE_lmalta) || defined(MACHINE_bmalta)
|
---|
| 159 | platform = "malta";
|
---|
[eff1f033] | 160 | #endif
|
---|
| 161 | sysinfo_set_item_data("platform", NULL, (void *) platform,
|
---|
| 162 | str_size(platform));
|
---|
| 163 |
|
---|
[1410f35] | 164 | #ifdef CONFIG_MIPS_KBD
|
---|
| 165 | /*
|
---|
[232cd4f] | 166 | * Initialize the msim keyboard port. Then initialize the serial line
|
---|
| 167 | * module and connect it to the msim keyboard. Enable keyboard
|
---|
| 168 | * interrupts.
|
---|
[1410f35] | 169 | */
|
---|
[c2417bc] | 170 | dsrlnin_instance_t *dsrlnin_instance
|
---|
| 171 | = dsrlnin_init((dsrlnin_t *) MSIM_KBD_ADDRESS, MSIM_KBD_IRQ);
|
---|
| 172 | if (dsrlnin_instance) {
|
---|
| 173 | srln_instance_t *srln_instance = srln_init();
|
---|
| 174 | if (srln_instance) {
|
---|
| 175 | indev_t *sink = stdin_wire();
|
---|
| 176 | indev_t *srln = srln_wire(srln_instance, sink);
|
---|
| 177 | dsrlnin_wire(dsrlnin_instance, srln);
|
---|
| 178 | cp0_unmask_int(MSIM_KBD_IRQ);
|
---|
| 179 | }
|
---|
[1410f35] | 180 | }
|
---|
| 181 |
|
---|
| 182 | /*
|
---|
| 183 | * This is the necessary evil until the userspace driver is entirely
|
---|
| 184 | * self-sufficient.
|
---|
| 185 | */
|
---|
| 186 | sysinfo_set_item_val("kbd", NULL, true);
|
---|
| 187 | sysinfo_set_item_val("kbd.inr", NULL, MSIM_KBD_IRQ);
|
---|
[27ed3edd] | 188 | sysinfo_set_item_val("kbd.address.physical", NULL,
|
---|
| 189 | PA2KA(MSIM_KBD_ADDRESS));
|
---|
[1410f35] | 190 | #endif
|
---|
[babcb148] | 191 | }
|
---|
[2bd4fdf] | 192 |
|
---|
[7f341820] | 193 | void calibrate_delay_loop(void)
|
---|
| 194 | {
|
---|
| 195 | }
|
---|
| 196 |
|
---|
[0f250f9] | 197 | void userspace(uspace_arg_t *kernel_uarg)
|
---|
[2bd4fdf] | 198 | {
|
---|
[b5ed4f8] | 199 | /* EXL = 1, UM = 1, IE = 1 */
|
---|
[2bd4fdf] | 200 | cp0_status_write(cp0_status_read() | (cp0_status_exl_exception_bit |
|
---|
[c7511ec] | 201 | cp0_status_um_bit | cp0_status_ie_enabled_bit));
|
---|
[7f1c620] | 202 | cp0_epc_write((uintptr_t) kernel_uarg->uspace_entry);
|
---|
[2902e1bb] | 203 | userspace_asm(((uintptr_t) kernel_uarg->uspace_stack +
|
---|
| 204 | kernel_uarg->uspace_stack_size),
|
---|
[c7511ec] | 205 | (uintptr_t) kernel_uarg->uspace_uarg,
|
---|
| 206 | (uintptr_t) kernel_uarg->uspace_entry);
|
---|
[b5ed4f8] | 207 |
|
---|
[6da1013f] | 208 | while (1);
|
---|
[2bd4fdf] | 209 | }
|
---|
| 210 |
|
---|
[39cea6a] | 211 | /** Perform mips32 specific tasks needed before the new task is run. */
|
---|
| 212 | void before_task_runs_arch(void)
|
---|
| 213 | {
|
---|
| 214 | }
|
---|
| 215 |
|
---|
| 216 | /** Perform mips32 specific tasks needed before the new thread is scheduled. */
|
---|
[2bd4fdf] | 217 | void before_thread_runs_arch(void)
|
---|
| 218 | {
|
---|
[26aafe8] | 219 | supervisor_sp =
|
---|
| 220 | (uintptr_t) &THREAD->kstack[STACK_SIZE - SP_DELTA];
|
---|
[2bd4fdf] | 221 | }
|
---|
[97f1691] | 222 |
|
---|
| 223 | void after_thread_ran_arch(void)
|
---|
| 224 | {
|
---|
| 225 | }
|
---|
[281b607] | 226 |
|
---|
[e1be3b6] | 227 | /** Set thread-local-storage pointer
|
---|
[281b607] | 228 | *
|
---|
| 229 | * We have it currently in K1, it is
|
---|
| 230 | * possible to have it separately in the future.
|
---|
| 231 | */
|
---|
[d8db519] | 232 | sysarg_t sys_tls_set(uintptr_t addr)
|
---|
[281b607] | 233 | {
|
---|
[d8db519] | 234 | return EOK;
|
---|
[281b607] | 235 | }
|
---|
[41d33ac] | 236 |
|
---|
[f74bbaf] | 237 | void arch_reboot(void)
|
---|
| 238 | {
|
---|
[edebc15c] | 239 | ___halt();
|
---|
[6da1013f] | 240 | while (1);
|
---|
| 241 | }
|
---|
| 242 |
|
---|
| 243 | /** Construct function pointer
|
---|
| 244 | *
|
---|
| 245 | * @param fptr function pointer structure
|
---|
| 246 | * @param addr function address
|
---|
| 247 | * @param caller calling function address
|
---|
| 248 | *
|
---|
| 249 | * @return address of the function pointer
|
---|
| 250 | *
|
---|
| 251 | */
|
---|
| 252 | void *arch_construct_function(fncptr_t *fptr, void *addr, void *caller)
|
---|
| 253 | {
|
---|
| 254 | return addr;
|
---|
[f74bbaf] | 255 | }
|
---|
| 256 |
|
---|
[3a2f8aa] | 257 | void irq_initialize_arch(irq_t *irq)
|
---|
| 258 | {
|
---|
| 259 | (void) irq;
|
---|
| 260 | }
|
---|
| 261 |
|
---|
[d227101] | 262 | /** @}
|
---|
[b45c443] | 263 | */
|
---|