kern

view src/intr.c @ 51:b1e8c8251884

lalalala
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 01 Aug 2011 06:45:29 +0300
parents f65b348780e3
children fa65b4f45366
line source
1 #include <stdio.h>
2 #include "intr.h"
3 #include "desc.h"
4 #include "segm.h"
5 #include "asmops.h"
6 #include "panic.h"
8 /* IDT gate descriptor bits */
9 #define GATE_TASK (5 << 8)
10 #define GATE_INTR (6 << 8)
11 #define GATE_TRAP (7 << 8)
12 #define GATE_DEFAULT (1 << 11)
13 #define GATE_PRESENT (1 << 15)
15 /* PIC command and data ports */
16 #define PIC1_CMD 0x20
17 #define PIC1_DATA 0x21
18 #define PIC2_CMD 0xa0
19 #define PIC2_DATA 0xa1
21 /* PIC initialization command word 1 bits */
22 #define ICW1_ICW4_NEEDED (1 << 0)
23 #define ICW1_SINGLE (1 << 1)
24 #define ICW1_INTERVAL4 (1 << 2)
25 #define ICW1_LEVEL (1 << 3)
26 #define ICW1_INIT (1 << 4)
27 /* PIC initialization command word 4 bits */
28 #define ICW4_8086 (1 << 0)
29 #define ICW4_AUTO_EOI (1 << 1)
30 #define ICW4_BUF_SLAVE (1 << 3) /* 1000 */
31 #define ICW4_BUF_MASTER (3 << 2) /* 1100 */
32 #define ICW4_SPECIAL (1 << 4)
34 /* PIC operation command word 2 bits */
35 #define OCW2_EOI (1 << 5)
38 static void init_pic(int offset);
39 static void gate_desc(desc_t *desc, uint16_t sel, uint32_t addr, int dpl, int type);
40 static void set_intr_entry(int num, void (*handler)(void));
42 /* defined in intr-asm.S */
43 void set_idt(uint32_t addr, uint16_t limit);
44 void intr_entry_default(void);
46 /* the IDT (interrupt descriptor table) */
47 static desc_t idt[256];
48 /* table of handler functions for all interrupts */
49 static intr_func_t intr_func[256];
52 void init_intr(void)
53 {
54 int i;
56 set_idt((uint32_t)idt, sizeof idt - 1);
58 /* initialize all entry points and interrupt handlers */
59 for(i=0; i<256; i++) {
60 set_intr_entry(i, intr_entry_default);
61 interrupt(i, 0);
62 }
64 /* by including interrupts.h here (without ASM being defined)
65 * the series of INTR_ENTRY_* macros will be expanded to a series
66 * of function prototypes for all interrupt entry points and the
67 * corresponding calls to set_intr_entry to set up the IDT slots
68 */
69 #include "interrupts.h"
71 /* initialize the programmable interrupt controller
72 * setting up the maping of IRQs [0, 15] to interrupts [32, 47]
73 */
74 init_pic(IRQ_OFFSET);
75 }
77 /* set an interrupt handler function for a particular interrupt */
78 void interrupt(int intr_num, intr_func_t func)
79 {
80 intr_func[intr_num] = func;
81 }
83 /* this function is called from all interrupt entry points
84 * it calls the appropriate interrupt handlers if available and handles
85 * sending an end-of-interrupt command to the PICs when finished.
86 */
87 void dispatch_intr(struct intr_frame frm)
88 {
89 if(intr_func[frm.inum]) {
90 intr_func[frm.inum](frm.inum, &frm);
91 } else {
92 if(frm.inum < 32) {
93 panic("unhandled exception %d, error code: %d\n", frm.inum, frm.err);
94 }
95 printf("unhandled interrupt %d\n", frm.inum);
96 }
98 if(IS_IRQ(frm.inum)) {
99 end_of_irq(INTR_TO_IRQ(frm.inum));
100 }
101 }
103 static void init_pic(int offset)
104 {
105 /* send ICW1 saying we'll follow with ICW4 later on */
106 outb(ICW1_INIT | ICW1_ICW4_NEEDED, PIC1_CMD);
107 outb(ICW1_INIT | ICW1_ICW4_NEEDED, PIC2_CMD);
108 /* send ICW2 with IRQ remapping */
109 outb(offset, PIC1_DATA);
110 outb(offset + 8, PIC2_DATA);
111 /* send ICW3 to setup the master/slave relationship */
112 /* ... set bit3 = 3rd interrupt input has a slave */
113 outb(4, PIC1_DATA);
114 /* ... set slave ID to 2 */
115 outb(2, PIC2_DATA);
116 /* send ICW4 to set 8086 mode (no calls generated) */
117 outb(ICW4_8086, PIC1_DATA);
118 outb(ICW4_8086, PIC2_DATA);
119 /* done, just reset the data port to 0 */
120 outb(0, PIC1_DATA);
121 outb(0, PIC2_DATA);
122 }
124 static void gate_desc(desc_t *desc, uint16_t sel, uint32_t addr, int dpl, int type)
125 {
126 /* first 16bit part is the low 16bits of the entry address */
127 desc->d[0] = addr & 0xffff;
128 /* second 16bit part is the segment selector for the entry code */
129 desc->d[1] = sel;
130 /* third 16bit part has the privilege level, type, and present bit */
131 desc->d[2] = ((dpl & 3) << 13) | type | GATE_DEFAULT | GATE_PRESENT;
132 /* last 16bit part is the high 16bits of the entry address */
133 desc->d[3] = (addr & 0xffff0000) >> 16;
134 }
136 #define IS_TRAP(n) ((n) >= 32 && !IS_IRQ(n))
137 static void set_intr_entry(int num, void (*handler)(void))
138 {
139 int type = IS_TRAP(num) ? GATE_TRAP : GATE_INTR;
140 gate_desc(idt + num, selector(SEGM_KCODE, 0), (uint32_t)handler, 0, type);
141 }
143 void end_of_irq(int irq)
144 {
145 if(irq > 7) {
146 outb(OCW2_EOI, PIC2_CMD);
147 }
148 outb(OCW2_EOI, PIC1_CMD);
149 }