Subversion Repositories HelenOS-historic

Rev

Rev 1281 | Rev 1595 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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