Subversion Repositories HelenOS-historic

Rev

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

Rev 1256 Rev 1258
1
/*
1
/*
2
 * Copyright (C) 2001-2004 Jakub Jermar
2
 * Copyright (C) 2001-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
#include <arch/interrupt.h>
29
#include <arch/interrupt.h>
30
#include <print.h>
30
#include <print.h>
31
#include <debug.h>
31
#include <debug.h>
32
#include <panic.h>
32
#include <panic.h>
33
#include <arch/i8259.h>
33
#include <arch/i8259.h>
34
#include <func.h>
34
#include <func.h>
35
#include <cpu.h>
35
#include <cpu.h>
36
#include <arch/asm.h>
36
#include <arch/asm.h>
37
#include <mm/tlb.h>
37
#include <mm/tlb.h>
38
#include <mm/as.h>
38
#include <mm/as.h>
39
#include <arch.h>
39
#include <arch.h>
40
#include <symtab.h>
40
#include <symtab.h>
41
#include <arch/asm.h>
41
#include <arch/asm.h>
42
#include <proc/scheduler.h>
42
#include <proc/scheduler.h>
43
#include <proc/thread.h>
43
#include <proc/thread.h>
44
#include <proc/task.h>
44
#include <proc/task.h>
45
#include <synch/spinlock.h>
45
#include <synch/spinlock.h>
46
#include <arch/ddi/ddi.h>
46
#include <arch/ddi/ddi.h>
-
 
47
#include <interrupt.h>
-
 
48
#include <ipc/sysipc.h>
47
 
49
 
48
void print_info_errcode(int n, istate_t *istate)
50
void print_info_errcode(int n, istate_t *istate)
49
{
51
{
50
    char *symbol;
52
    char *symbol;
51
/*  __u64 *x = &istate->stack[0]; */
53
/*  __u64 *x = &istate->stack[0]; */
52
 
54
 
53
    if (!(symbol=get_symtab_entry(istate->rip)))
55
    if (!(symbol=get_symtab_entry(istate->rip)))
54
        symbol = "";
56
        symbol = "";
55
 
57
 
56
    printf("-----EXCEPTION(%d) OCCURED----- ( %s )\n",n, __FUNCTION__);
58
    printf("-----EXCEPTION(%d) OCCURED----- ( %s )\n",n, __FUNCTION__);
57
    printf("%%rip: %#llX (%s)\n",istate->rip, symbol);
59
    printf("%%rip: %#llX (%s)\n",istate->rip, symbol);
58
    printf("ERROR_WORD=%#llX\n", istate->error_word);
60
    printf("ERROR_WORD=%#llX\n", istate->error_word);
59
    printf("%%rcs=%#llX, flags=%#llX, %%cr0=%#llX\n", istate->cs, istate->rflags,read_cr0());
61
    printf("%%rcs=%#llX, flags=%#llX, %%cr0=%#llX\n", istate->cs, istate->rflags,read_cr0());
60
    printf("%%rax=%#llX, %%rcx=%#llX, %%rdx=%#llX\n",istate->rax,istate->rcx,istate->rdx);
62
    printf("%%rax=%#llX, %%rcx=%#llX, %%rdx=%#llX\n",istate->rax,istate->rcx,istate->rdx);
61
    printf("%%rsi=%#llX, %%rdi=%#llX, %%r8 =%#llX\n",istate->rsi,istate->rdi,istate->r8);
63
    printf("%%rsi=%#llX, %%rdi=%#llX, %%r8 =%#llX\n",istate->rsi,istate->rdi,istate->r8);
62
    printf("%%r9 =%#llX, %%r10 =%#llX, %%r11=%#llX\n",istate->r9,istate->r10,istate->r11);
64
    printf("%%r9 =%#llX, %%r10 =%#llX, %%r11=%#llX\n",istate->r9,istate->r10,istate->r11);
63
#ifdef CONFIG_DEBUG_ALLREGS 
65
#ifdef CONFIG_DEBUG_ALLREGS 
64
    printf("%%r12=%#llX, %%r13=%#llX, %%r14=%#llX\n",istate->r12,istate->r13,istate->r14);
66
    printf("%%r12=%#llX, %%r13=%#llX, %%r14=%#llX\n",istate->r12,istate->r13,istate->r14);
65
    printf("%%r15=%#llX, %%rbx=%#llX, %%rbp=%#llX\n",istate->r15,istate->rbx,&istate->rbp);
67
    printf("%%r15=%#llX, %%rbx=%#llX, %%rbp=%#llX\n",istate->r15,istate->rbx,&istate->rbp);
66
#endif
68
#endif
67
    printf("%%rsp=%#llX\n",&istate->stack[0]);
69
    printf("%%rsp=%#llX\n",&istate->stack[0]);
68
}
70
}
69
 
71
 
70
/*
72
/*
71
 * Interrupt and exception dispatching.
73
 * Interrupt and exception dispatching.
72
 */
74
 */
73
 
75
 
74
void (* disable_irqs_function)(__u16 irqmask) = NULL;
76
void (* disable_irqs_function)(__u16 irqmask) = NULL;
75
void (* enable_irqs_function)(__u16 irqmask) = NULL;
77
void (* enable_irqs_function)(__u16 irqmask) = NULL;
76
void (* eoi_function)(void) = NULL;
78
void (* eoi_function)(void) = NULL;
77
 
79
 
78
void null_interrupt(int n, istate_t *istate)
80
void null_interrupt(int n, istate_t *istate)
79
{
81
{
80
    print_info_errcode(n, istate);
82
    print_info_errcode(n, istate);
81
    panic("unserviced interrupt\n");
83
    panic("unserviced interrupt\n");
82
}
84
}
83
 
85
 
84
/** General Protection Fault. */
86
/** General Protection Fault. */
85
void gp_fault(int n, istate_t *istate)
87
void gp_fault(int n, istate_t *istate)
86
{
88
{
87
    if (TASK) {
89
    if (TASK) {
88
        count_t ver;
90
        count_t ver;
89
 
91
 
90
        spinlock_lock(&TASK->lock);
92
        spinlock_lock(&TASK->lock);
91
        ver = TASK->arch.iomapver;
93
        ver = TASK->arch.iomapver;
92
        spinlock_unlock(&TASK->lock);
94
        spinlock_unlock(&TASK->lock);
93
 
95
 
94
        if (CPU->arch.iomapver_copy != ver) {
96
        if (CPU->arch.iomapver_copy != ver) {
95
            /*
97
            /*
96
             * This fault can be caused by an early access
98
             * This fault can be caused by an early access
97
             * to I/O port because of an out-dated
99
             * to I/O port because of an out-dated
98
             * I/O Permission bitmap installed on CPU.
100
             * I/O Permission bitmap installed on CPU.
99
             * Install the fresh copy and restart
101
             * Install the fresh copy and restart
100
             * the instruction.
102
             * the instruction.
101
             */
103
             */
102
            io_perm_bitmap_install();
104
            io_perm_bitmap_install();
103
            return;
105
            return;
104
        }
106
        }
105
    }
107
    }
106
 
108
 
107
    print_info_errcode(n, istate);
109
    print_info_errcode(n, istate);
108
    panic("general protection fault\n");
110
    panic("general protection fault\n");
109
}
111
}
110
 
112
 
111
void ss_fault(int n, istate_t *istate)
113
void ss_fault(int n, istate_t *istate)
112
{
114
{
113
    print_info_errcode(n, istate);
115
    print_info_errcode(n, istate);
114
    panic("stack fault\n");
116
    panic("stack fault\n");
115
}
117
}
116
 
118
 
117
void nm_fault(int n, istate_t *istate)
119
void nm_fault(int n, istate_t *istate)
118
{
120
{
119
#ifdef CONFIG_FPU_LAZY     
121
#ifdef CONFIG_FPU_LAZY     
120
    scheduler_fpu_lazy_request();
122
    scheduler_fpu_lazy_request();
121
#else
123
#else
122
    panic("fpu fault");
124
    panic("fpu fault");
123
#endif
125
#endif
124
}
126
}
125
 
127
 
126
void tlb_shootdown_ipi(int n, istate_t *istate)
128
void tlb_shootdown_ipi(int n, istate_t *istate)
127
{
129
{
128
    trap_virtual_eoi();
130
    trap_virtual_eoi();
129
    tlb_shootdown_ipi_recv();
131
    tlb_shootdown_ipi_recv();
130
}
132
}
131
 
133
 
132
void trap_virtual_enable_irqs(__u16 irqmask)
134
void trap_virtual_enable_irqs(__u16 irqmask)
133
{
135
{
134
    if (enable_irqs_function)
136
    if (enable_irqs_function)
135
        enable_irqs_function(irqmask);
137
        enable_irqs_function(irqmask);
136
    else
138
    else
137
        panic("no enable_irqs_function\n");
139
        panic("no enable_irqs_function\n");
138
}
140
}
139
 
141
 
140
void trap_virtual_disable_irqs(__u16 irqmask)
142
void trap_virtual_disable_irqs(__u16 irqmask)
141
{
143
{
142
    if (disable_irqs_function)
144
    if (disable_irqs_function)
143
        disable_irqs_function(irqmask);
145
        disable_irqs_function(irqmask);
144
    else
146
    else
145
        panic("no disable_irqs_function\n");
147
        panic("no disable_irqs_function\n");
146
}
148
}
147
 
149
 
148
void trap_virtual_eoi(void)
150
void trap_virtual_eoi(void)
149
{
151
{
150
    if (eoi_function)
152
    if (eoi_function)
151
        eoi_function();
153
        eoi_function();
152
    else
154
    else
153
        panic("no eoi_function\n");
155
        panic("no eoi_function\n");
154
 
156
 
155
}
157
}
-
 
158
 
-
 
159
static void ipc_int(int n, istate_t *istate)
-
 
160
{
-
 
161
    trap_virtual_eoi();
-
 
162
    ipc_irq_send_notif(n-IVT_IRQBASE);
-
 
163
}
-
 
164
 
-
 
165
 
-
 
166
/* Reregister irq to be IPC-ready */
-
 
167
void irq_ipc_bind_arch(__native irq)
-
 
168
{
-
 
169
    if (irq == IRQ_CLK)
-
 
170
        return;
-
 
171
    exc_register(IVT_IRQBASE+irq, "ipc_int", ipc_int);
-
 
172
}
156
 
173