00001
00002
00003 #include "routix/paging.h"
00004 #include "routix/segm.h"
00005 #include "routix/8259.h"
00006 #include "routix/debug.h"
00007 #include "routix/kalloc.h"
00008 #include <routix/kstdio.h>
00009
00010 #include "drivers/fat.h"
00011
00012 #ifndef __SYSTEM
00013 #include "routix/system.h"
00014 #endif
00015
00016 #include "routix/event.h"
00017
00018
00019
00020 extern void intDefaultHandler(void);
00021 extern void intTeclado(void);
00022 extern void switch_to_kernel_mode(void);
00023 extern void intProximaTarea(void);
00024 extern void excepcion0(void);
00025 extern void excepcion1(void);
00026 extern void excepcion2(void);
00027 extern void excepcion3(void);
00028 extern void excepcion4(void);
00029 extern void excepcion5(void);
00030 extern void excepcion6(void);
00031 extern void excepcion7(void);
00032 extern void excepcion8(void);
00033 extern void excepcion9(void);
00034 extern void excepcion10(void);
00035 extern void excepcion11(void);
00036 extern void excepcion12(void);
00037 extern void excepcion13(void);
00038 extern void excepcion14(void);
00039 extern void excepcion15(void);
00040 extern void excepcion16(void);
00041 extern void excepcion17(void);
00042 extern void excepcion18(void);
00043 extern void excepcion19(void);
00044
00045 pd_t *directorio = (pd_t *) POSICION_DIR_PAGINAS;
00046
00047 void DefaultHandler(void)
00048 {
00049
00050
00051
00052 endOfInterrupt();
00053 }
00054
00055
00056 void ExcepcionHandler(int numero,dword err1, dword err2, dword err3)
00057 {
00058 char *excepciones[] = { "Divide error",
00059 "Debug",
00060 "NMI Interrupt",
00061 "Breakpoing",
00062 "Overflow",
00063 "Bound range exceeded",
00064 "Invalid opcode",
00065 "Device not available",
00066 "Double fault",
00067 "Coprocessor segment overrun",
00068 "Invalid TSS",
00069 "Segment not present",
00070 "Stack Fault",
00071 "General Protection",
00072 "Page Fault",
00073 "",
00074 "x87 FPU floating point error",
00075 "Alignment check",
00076 "Machine check",
00077 "SIMD floating point" };
00078
00079
00080
00081
00082
00083
00084
00085 kprintf("\n EXCEPCION %d - %s\n",numero,excepciones[numero]);
00086 kprintf(" Error 1: 0x%x\n",err1);
00087 kprintf(" Error 2: 0x%x\n",err2);
00088 kprintf(" Error 3: 0x%x\n",err3);
00089 kprintf("Deteniendo el sistema.");
00090
00091 while(1);
00092 }
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144
00145
00146
00147
00148 void inicializarInterrupciones( void )
00149 {
00150 pt_t *ptIDT;
00151 descriptor_t *paginaIDT;
00152 idtr_t *idtr_so;
00153 page_index_t pi;
00154
00155
00156
00157 paginaIDT = (descriptor_t *) kmalloc_page();
00158 ptIDT = (pt_t *) kmalloc_page();
00159
00160
00161
00162 pi = get_page_index( (addr_t) KERNEL_INTERRUPT );
00163
00164 kprintf("Entrada de pagina de interrupciones: %x\n", ptIDT);
00165 kprintf("Interrupciones: %x (real) - %x (virtual)\n", paginaIDT, KERNEL_INTERRUPT );
00166 kprintf("Indice de directorio y tabla: %d - %d\n", pi.dir_index, pi.tabla_index);
00167
00168 directorio->entry[ pi.dir_index ] = make_pde((addr_t) ptIDT, PAGE_RW | PAGE_PRES );
00169 ptIDT->entry[ pi.tabla_index ] = make_pte((addr_t) paginaIDT, PAGE_PRES);
00170
00171 int i;
00172 descriptor_t *temp;
00173
00174
00175 for (i=0,temp = paginaIDT; i<256; i++,temp++)
00176 *temp = make_int_gate( (word) DESC_CODE, (dword) intDefaultHandler, (byte) (PRESENTE | DPL_0) );
00177
00178
00179 #define excepcion(numero,nombre) *(paginaIDT+numero) = make_int_gate( (word) DESC_CODE, (dword) nombre, (byte) (PRESENTE | DPL_0) );
00180
00181 excepcion(0,excepcion0);
00182 excepcion(1,excepcion1);
00183 excepcion(2,excepcion2);
00184 excepcion(3,excepcion3);
00185 excepcion(4,excepcion4);
00186 excepcion(5,excepcion5);
00187 excepcion(6,excepcion6);
00188 excepcion(7,excepcion7);
00189 excepcion(8,excepcion8);
00190 excepcion(9,excepcion9);
00191 excepcion(10,excepcion10);
00192 excepcion(11,excepcion11);
00193 excepcion(12,excepcion12);
00194 excepcion(13,excepcion13);
00195 excepcion(14,excepcion14);
00196 excepcion(15,excepcion15);
00197 excepcion(16,excepcion16);
00198 excepcion(17,excepcion17);
00199 excepcion(18,excepcion18);
00200 excepcion(19,excepcion19);
00201
00202
00203 *(paginaIDT+0x20) = make_int_gate( (word) DESC_CODE, (dword) switch_to_kernel_mode, (byte) (PRESENTE | DPL_0) );
00204 *(paginaIDT+0x21) = make_int_gate( (word) DESC_CODE, (dword) intTeclado, (byte) (PRESENTE | DPL_0) );
00205
00206 extern void intFloppy(void);
00207 *(paginaIDT+0x26) = make_int_gate( (word) DESC_CODE, (dword) intFloppy, (byte) (PRESENTE | DPL_0) );
00208
00209
00210 extern void intSysCall(void);
00211 *(paginaIDT+0x50) = make_trap_gate( (word) DESC_CODE, (dword) intSysCall, (byte) (PRESENTE | DPL_3) );
00212
00213
00214 *(paginaIDT+0x51) = make_int_gate( (word) DESC_CODE, (dword) intProximaTarea, (byte) (PRESENTE | DPL_0) );
00215
00216 idtr_so = (idtr_t *) (paginaIDT+256);
00217
00218 idtr_so->limite = 256*8 - 1;
00219 idtr_so->base = (dword) paginaIDT;
00220
00221
00222
00223 _lidt(idtr_so);
00224
00225 }
00226
00227
00228
00229
00230
00231