int.c

Go to the documentation of this file.
00001 /* int.c */
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 //extern byte floppy_continuar;
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 //    putchar('I');
00050 //    putchar('\n');
00051     //continuar=1;
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 /*      if (numero==14) {
00080                 kprintf("\nSegmentation Fault\n");
00081                 sys_exit(-1);
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 #define TECLADO_BUFFER_SIZE 10
00096 #define TECLADO_PORT 0x60
00097 
00098 unsigned char bufferTeclado[TECLADO_BUFFER_SIZE];
00099 unsigned char *ptrbufferTeclado=bufferTeclado;
00100 
00101 unsigned char Keyboard_Controller[] =
00102 {
00103    0, 0, '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', 225, 39, '\b',
00104    0, 'q', 'w', 'e', 'r', 't', 'y', 'u', 'i', 'o', 'p', 129, '+', '\n',
00105    0, 'a', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 148, 132, '^', 0, '#',
00106    'z', 'x', 'c', 'v', 'b', 'n', 'm', ',', '.', '/', 0,
00107    '*', 0, ' ', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '-',
00108    0, 0, 0, '+', 0, 0, 0, 0, 0, 0, 0, '<', 0, 0
00109 };
00110 
00111 
00112 void Teclado(void) {
00113 
00114   char valor;
00115 
00116   endOfInterrupt();
00117 
00118   valor=inportb(TECLADO_PORT);
00119 
00120   if ( ptrbufferTeclado >= bufferTeclado+TECLADO_BUFFER_SIZE ) {
00121    // Buffer lleno
00122   }
00123   
00124   else if ( valor & 0x80 ) {
00125     // Es un break code
00126     // por ahora no hacemos nada
00127     return;
00128   }
00129   
00130   else {
00131    *ptrbufferTeclado++ = Keyboard_Controller[valor];
00132   }
00133 
00134   // Actualizamos los eventos de TECLADO
00135   actualizar_eventos( TECLADO );
00136 
00137 }
00138 */
00139 /* Esto va ahora en el archivo drivers/floppy.c
00140 void Floppy (void)
00141 {
00142     continuar=1;
00143     endOfInterrupt();
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 //directorio->entry[513] = make_pde(1,1,0,0,0,0,0,0,(char *) ptIDT);
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 // Manejo de excepciones
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 //*(paginaIDT+0x20) = make_task_gate( (word) DESC_TSS0, (byte) (PRESENTE | DPL_0) );
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 // Entrada desde el modo usuario
00210 extern void intSysCall(void);
00211 *(paginaIDT+0x50) = make_trap_gate( (word) DESC_CODE, (dword) intSysCall, (byte) (PRESENTE | DPL_3)  );
00212 
00213 // Switch de proceso, utilizado cuando un proceso pasa al estado TASK_STOPPED
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 

Generated on Sun May 30 18:38:34 2004 for Routix OS by doxygen 1.3.6