Subversion Repositories HelenOS

Rev

Rev 3153 | Rev 3674 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3153 Rev 3403
1
/*
1
/*
2
 * Copyright (c) 2003-2004 Jakub Jermar
2
 * Copyright (c) 2003-2004 Jakub Jermar
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
8
 *
8
 *
9
 * - Redistributions of source code must retain the above copyright
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
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
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.
15
 *   derived from this software without specific prior written permission.
16
 *
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
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
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
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
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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
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.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
/** @addtogroup mips32
29
/** @addtogroup mips32
30
 * @{
30
 * @{
31
 */
31
 */
32
/** @file
32
/** @file
33
 */
33
 */
34
 
34
 
35
#include <arch.h>
35
#include <arch.h>
36
#include <arch/boot.h>
36
#include <arch/boot.h>
37
#include <arch/cp0.h>
37
#include <arch/cp0.h>
38
#include <arch/exception.h>
38
#include <arch/exception.h>
39
#include <mm/as.h>
39
#include <mm/as.h>
40
 
40
 
41
#include <userspace.h>
41
#include <userspace.h>
42
#include <arch/console.h>
42
#include <arch/console.h>
43
#include <memstr.h>
43
#include <memstr.h>
44
#include <proc/thread.h>
44
#include <proc/thread.h>
45
#include <proc/uarg.h>
45
#include <proc/uarg.h>
46
#include <print.h>
46
#include <print.h>
47
#include <syscall/syscall.h>
47
#include <syscall/syscall.h>
48
#include <sysinfo/sysinfo.h>
48
#include <sysinfo/sysinfo.h>
49
 
49
 
50
#include <arch/interrupt.h>
50
#include <arch/interrupt.h>
51
#include <arch/drivers/arc.h>
-
 
52
#include <console/chardev.h>
51
#include <console/chardev.h>
53
#include <arch/barrier.h>
52
#include <arch/barrier.h>
54
#include <arch/debugger.h>
53
#include <arch/debugger.h>
55
#include <genarch/fb/fb.h>
54
#include <genarch/fb/fb.h>
56
#include <genarch/fb/visuals.h>
55
#include <genarch/fb/visuals.h>
57
#include <macros.h>
56
#include <macros.h>
58
#include <ddi/device.h>
57
#include <ddi/device.h>
59
 
58
 
60
#include <arch/asm/regname.h>
59
#include <arch/asm/regname.h>
61
 
60
 
62
/* Size of the code jumping to the exception handler code
61
/* Size of the code jumping to the exception handler code
63
 * - J+NOP
62
 * - J+NOP
64
 */
63
 */
65
#define EXCEPTION_JUMP_SIZE    8
64
#define EXCEPTION_JUMP_SIZE    8
66
 
65
 
67
#define TLB_EXC ((char *) 0x80000000)
66
#define TLB_EXC ((char *) 0x80000000)
68
#define NORM_EXC ((char *) 0x80000180)
67
#define NORM_EXC ((char *) 0x80000180)
69
#define CACHE_EXC ((char *) 0x80000100)
68
#define CACHE_EXC ((char *) 0x80000100)
70
 
69
 
71
 
70
 
72
/* Why the linker moves the variable 64K away in assembler
71
/* Why the linker moves the variable 64K away in assembler
73
 * when not in .text section ????????
72
 * when not in .text section ????????
74
 */
73
 */
75
uintptr_t supervisor_sp __attribute__ ((section (".text")));
74
uintptr_t supervisor_sp __attribute__ ((section (".text")));
76
/* Stack pointer saved when entering user mode */
75
/* Stack pointer saved when entering user mode */
77
/* TODO: How do we do it on SMP system???? */
76
/* TODO: How do we do it on SMP system???? */
78
bootinfo_t bootinfo __attribute__ ((section (".text")));
77
bootinfo_t bootinfo __attribute__ ((section (".text")));
79
 
78
 
80
void arch_pre_main(void)
79
void arch_pre_main(void)
81
{
80
{
82
    /* Setup usermode */
81
    /* Setup usermode */
83
    init.cnt = bootinfo.cnt;
82
    init.cnt = bootinfo.cnt;
84
   
83
   
85
    uint32_t i;
84
    uint32_t i;
86
   
85
   
87
    for (i = 0; i < bootinfo.cnt; i++) {
86
    for (i = 0; i < bootinfo.cnt; i++) {
88
        init.tasks[i].addr = bootinfo.tasks[i].addr;
87
        init.tasks[i].addr = bootinfo.tasks[i].addr;
89
        init.tasks[i].size = bootinfo.tasks[i].size;
88
        init.tasks[i].size = bootinfo.tasks[i].size;
90
    }
89
    }
91
}
90
}
92
 
91
 
93
void arch_pre_mm_init(void)
92
void arch_pre_mm_init(void)
94
{
93
{
95
    /* It is not assumed by default */
94
    /* It is not assumed by default */
96
    interrupts_disable();
95
    interrupts_disable();
97
   
96
   
98
    /* Initialize dispatch table */
97
    /* Initialize dispatch table */
99
    exception_init();
98
    exception_init();
100
    arc_init();
-
 
101
 
99
 
102
    /* Copy the exception vectors to the right places */
100
    /* Copy the exception vectors to the right places */
103
    memcpy(TLB_EXC, (char *) tlb_refill_entry, EXCEPTION_JUMP_SIZE);
101
    memcpy(TLB_EXC, (char *) tlb_refill_entry, EXCEPTION_JUMP_SIZE);
104
    smc_coherence_block(TLB_EXC, EXCEPTION_JUMP_SIZE);
102
    smc_coherence_block(TLB_EXC, EXCEPTION_JUMP_SIZE);
105
    memcpy(NORM_EXC, (char *) exception_entry, EXCEPTION_JUMP_SIZE);
103
    memcpy(NORM_EXC, (char *) exception_entry, EXCEPTION_JUMP_SIZE);
106
    smc_coherence_block(NORM_EXC, EXCEPTION_JUMP_SIZE);
104
    smc_coherence_block(NORM_EXC, EXCEPTION_JUMP_SIZE);
107
    memcpy(CACHE_EXC, (char *) cache_error_entry, EXCEPTION_JUMP_SIZE);
105
    memcpy(CACHE_EXC, (char *) cache_error_entry, EXCEPTION_JUMP_SIZE);
108
    smc_coherence_block(CACHE_EXC, EXCEPTION_JUMP_SIZE);
106
    smc_coherence_block(CACHE_EXC, EXCEPTION_JUMP_SIZE);
109
   
107
   
110
    /*
108
    /*
111
     * Switch to BEV normal level so that exception vectors point to the
109
     * Switch to BEV normal level so that exception vectors point to the
112
     * kernel. Clear the error level.
110
     * kernel. Clear the error level.
113
     */
111
     */
114
    cp0_status_write(cp0_status_read() &
112
    cp0_status_write(cp0_status_read() &
115
        ~(cp0_status_bev_bootstrap_bit | cp0_status_erl_error_bit));
113
        ~(cp0_status_bev_bootstrap_bit | cp0_status_erl_error_bit));
116
 
114
 
117
    /*
115
    /*
118
     * Mask all interrupts
116
     * Mask all interrupts
119
     */
117
     */
120
    cp0_mask_all_int();
118
    cp0_mask_all_int();
121
       
119
       
122
    debugger_init();
120
    debugger_init();
123
}
121
}
124
 
122
 
125
void arch_post_mm_init(void)
123
void arch_post_mm_init(void)
126
{
124
{
127
    interrupt_init();
125
    interrupt_init();
128
    console_init(device_assign_devno());
126
    console_init(device_assign_devno());
129
#ifdef CONFIG_FB
127
#ifdef CONFIG_FB
130
    /* GXemul framebuffer */
128
    /* GXemul framebuffer */
131
    fb_init(0x12000000, 640, 480, 1920, VISUAL_RGB_8_8_8);
129
    fb_init(0x12000000, 640, 480, 1920, VISUAL_RGB_8_8_8);
132
#endif
130
#endif
133
    sysinfo_set_item_val("machine." STRING(MACHINE), NULL, 1);
131
    sysinfo_set_item_val("machine." STRING(MACHINE), NULL, 1);
134
}
132
}
135
 
133
 
136
void arch_post_cpu_init(void)
134
void arch_post_cpu_init(void)
137
{
135
{
138
}
136
}
139
 
137
 
140
void arch_pre_smp_init(void)
138
void arch_pre_smp_init(void)
141
{
139
{
142
}
140
}
143
 
141
 
144
void arch_post_smp_init(void)
142
void arch_post_smp_init(void)
145
{
143
{
146
}
144
}
147
 
145
 
148
void userspace(uspace_arg_t *kernel_uarg)
146
void userspace(uspace_arg_t *kernel_uarg)
149
{
147
{
150
    /* EXL = 1, UM = 1, IE = 1 */
148
    /* EXL = 1, UM = 1, IE = 1 */
151
    cp0_status_write(cp0_status_read() | (cp0_status_exl_exception_bit |
149
    cp0_status_write(cp0_status_read() | (cp0_status_exl_exception_bit |
152
        cp0_status_um_bit | cp0_status_ie_enabled_bit));
150
        cp0_status_um_bit | cp0_status_ie_enabled_bit));
153
    cp0_epc_write((uintptr_t) kernel_uarg->uspace_entry);
151
    cp0_epc_write((uintptr_t) kernel_uarg->uspace_entry);
154
    userspace_asm(((uintptr_t) kernel_uarg->uspace_stack + PAGE_SIZE),
152
    userspace_asm(((uintptr_t) kernel_uarg->uspace_stack + PAGE_SIZE),
155
        (uintptr_t) kernel_uarg->uspace_uarg,
153
        (uintptr_t) kernel_uarg->uspace_uarg,
156
        (uintptr_t) kernel_uarg->uspace_entry);
154
        (uintptr_t) kernel_uarg->uspace_entry);
157
   
155
   
158
    while (1)
156
    while (1)
159
        ;
157
        ;
160
}
158
}
161
 
159
 
162
/** Perform mips32 specific tasks needed before the new task is run. */
160
/** Perform mips32 specific tasks needed before the new task is run. */
163
void before_task_runs_arch(void)
161
void before_task_runs_arch(void)
164
{
162
{
165
}
163
}
166
 
164
 
167
/** Perform mips32 specific tasks needed before the new thread is scheduled. */
165
/** Perform mips32 specific tasks needed before the new thread is scheduled. */
168
void before_thread_runs_arch(void)
166
void before_thread_runs_arch(void)
169
{
167
{
170
    supervisor_sp = (uintptr_t) &THREAD->kstack[THREAD_STACK_SIZE -
168
    supervisor_sp = (uintptr_t) &THREAD->kstack[THREAD_STACK_SIZE -
171
        SP_DELTA];
169
        SP_DELTA];
172
}
170
}
173
 
171
 
174
void after_thread_ran_arch(void)
172
void after_thread_ran_arch(void)
175
{
173
{
176
}
174
}
177
 
175
 
178
/** Set thread-local-storage pointer
176
/** Set thread-local-storage pointer
179
 *
177
 *
180
 * We have it currently in K1, it is
178
 * We have it currently in K1, it is
181
 * possible to have it separately in the future.
179
 * possible to have it separately in the future.
182
 */
180
 */
183
unative_t sys_tls_set(unative_t addr)
181
unative_t sys_tls_set(unative_t addr)
184
{
182
{
185
    return 0;
183
    return 0;
186
}
184
}
187
 
185
 
188
void arch_reboot(void)
186
void arch_reboot(void)
189
{
187
{
190
    if (!arc_reboot())
-
 
191
        ___halt();
188
    ___halt();
192
   
189
   
193
    while (1)
190
    while (1)
194
        ;
191
        ;
195
}
192
}
196
 
193
 
197
/** @}
194
/** @}
198
 */
195
 */
199
 
196