blob: ba9e89df26117d8b57cf767b1ecf34f7820ae555 [file] [log] [blame]
wdenk2262cfe2002-11-18 00:14:45 +00001/*
2 * (C) Copyright 2002
3 * Daniel Engström, Omicron Ceti AB, daniel@omicron.se.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#include <common.h>
wdenk2262cfe2002-11-18 00:14:45 +000025#include <malloc.h>
26#include <asm/io.h>
27#include <asm/i8259.h>
28#include <asm/ibmpc.h>
Graeme Russ9933d602008-12-07 10:29:01 +110029#include <asm/interrupt.h>
wdenk2262cfe2002-11-18 00:14:45 +000030
31
wdenk2262cfe2002-11-18 00:14:45 +000032struct idt_entry {
33 u16 base_low;
34 u16 selector;
35 u8 res;
36 u8 access;
37 u16 base_high;
38} __attribute__ ((packed));
39
40
41struct idt_entry idt[256];
42
43
44#define MAX_IRQ 16
45
wdenk8bde7f72003-06-27 21:31:46 +000046typedef struct irq_handler {
wdenk2262cfe2002-11-18 00:14:45 +000047 struct irq_handler *next;
48 interrupt_handler_t* isr_func;
49 void *isr_data;
50} irq_handler_t;
51
52#define IRQ_DISABLED 1
53
54typedef struct {
55 irq_handler_t *handler;
56 unsigned long status;
57} irq_desc_t;
58
59static irq_desc_t irq_table[MAX_IRQ];
60
wdenk2262cfe2002-11-18 00:14:45 +000061asm ("irq_return:\n"
62 " addl $4, %esp\n"
63 " popa\n"
64 " iret\n");
65
66asm ("exp_return:\n"
67 " addl $12, %esp\n"
68 " pop %esp\n"
69 " popa\n"
70 " iret\n");
71
72char exception_stack[4096];
73
74#define DECLARE_INTERRUPT(x) \
75 asm(".globl irq_"#x"\n" \
76 "irq_"#x":\n" \
77 "pusha \n" \
78 "pushl $"#x"\n" \
79 "pushl $irq_return\n" \
wdenk8bde7f72003-06-27 21:31:46 +000080 "jmp do_irq\n"); \
wdenk2262cfe2002-11-18 00:14:45 +000081 void __attribute__ ((regparm(0))) irq_##x(void)
82
83#define DECLARE_EXCEPTION(x, f) \
84 asm(".globl exp_"#x"\n" \
85 "exp_"#x":\n" \
86 "pusha \n" \
87 "movl %esp, %ebx\n" \
88 "movl $exception_stack, %eax\n" \
89 "movl %eax, %esp \n" \
90 "pushl %ebx\n" \
91 "movl 32(%esp), %ebx\n" \
92 "xorl %edx, %edx\n" \
93 "movw 36(%esp), %dx\n" \
94 "pushl %edx\n" \
95 "pushl %ebx\n" \
96 "pushl $"#x"\n" \
97 "pushl $exp_return\n" \
98 "jmp "#f"\n"); \
99 void __attribute__ ((regparm(0))) exp_##x(void)
100
101DECLARE_EXCEPTION(0, divide_exception_entry); /* Divide exception */
102DECLARE_EXCEPTION(1, debug_exception_entry); /* Debug exception */
103DECLARE_EXCEPTION(2, nmi_entry); /* NMI */
104DECLARE_EXCEPTION(3, unknown_exception_entry); /* Breakpoint/Coprocessor Error */
105DECLARE_EXCEPTION(4, unknown_exception_entry); /* Overflow */
106DECLARE_EXCEPTION(5, unknown_exception_entry); /* Bounds */
107DECLARE_EXCEPTION(6, invalid_instruction_entry); /* Invalid instruction */
108DECLARE_EXCEPTION(7, unknown_exception_entry); /* Device not present */
109DECLARE_EXCEPTION(8, double_fault_entry); /* Double fault */
110DECLARE_EXCEPTION(9, unknown_exception_entry); /* Co-processor segment overrun */
111DECLARE_EXCEPTION(10, invalid_tss_exception_entry);/* Invalid TSS */
112DECLARE_EXCEPTION(11, seg_fault_entry); /* Segment not present */
113DECLARE_EXCEPTION(12, stack_fault_entry); /* Stack overflow */
114DECLARE_EXCEPTION(13, gpf_entry); /* GPF */
115DECLARE_EXCEPTION(14, page_fault_entry); /* PF */
116DECLARE_EXCEPTION(15, unknown_exception_entry); /* Reserved */
117DECLARE_EXCEPTION(16, fp_exception_entry); /* Floating point */
118DECLARE_EXCEPTION(17, alignment_check_entry); /* alignment check */
119DECLARE_EXCEPTION(18, machine_check_entry); /* machine check */
120DECLARE_EXCEPTION(19, unknown_exception_entry); /* Reserved */
121DECLARE_EXCEPTION(20, unknown_exception_entry); /* Reserved */
122DECLARE_EXCEPTION(21, unknown_exception_entry); /* Reserved */
123DECLARE_EXCEPTION(22, unknown_exception_entry); /* Reserved */
124DECLARE_EXCEPTION(23, unknown_exception_entry); /* Reserved */
125DECLARE_EXCEPTION(24, unknown_exception_entry); /* Reserved */
126DECLARE_EXCEPTION(25, unknown_exception_entry); /* Reserved */
127DECLARE_EXCEPTION(26, unknown_exception_entry); /* Reserved */
128DECLARE_EXCEPTION(27, unknown_exception_entry); /* Reserved */
129DECLARE_EXCEPTION(28, unknown_exception_entry); /* Reserved */
130DECLARE_EXCEPTION(29, unknown_exception_entry); /* Reserved */
131DECLARE_EXCEPTION(30, unknown_exception_entry); /* Reserved */
132DECLARE_EXCEPTION(31, unknown_exception_entry); /* Reserved */
133
134DECLARE_INTERRUPT(0);
135DECLARE_INTERRUPT(1);
136DECLARE_INTERRUPT(3);
137DECLARE_INTERRUPT(4);
138DECLARE_INTERRUPT(5);
139DECLARE_INTERRUPT(6);
140DECLARE_INTERRUPT(7);
141DECLARE_INTERRUPT(8);
142DECLARE_INTERRUPT(9);
143DECLARE_INTERRUPT(10);
144DECLARE_INTERRUPT(11);
145DECLARE_INTERRUPT(12);
146DECLARE_INTERRUPT(13);
147DECLARE_INTERRUPT(14);
148DECLARE_INTERRUPT(15);
wdenk8bde7f72003-06-27 21:31:46 +0000149
150void __attribute__ ((regparm(0))) default_isr(void);
wdenk2262cfe2002-11-18 00:14:45 +0000151asm ("default_isr: iret\n");
152
wdenk8bde7f72003-06-27 21:31:46 +0000153void disable_irq(int irq)
wdenk2262cfe2002-11-18 00:14:45 +0000154{
155 if (irq >= MAX_IRQ) {
156 return;
157 }
158 irq_table[irq].status |= IRQ_DISABLED;
wdenk8bde7f72003-06-27 21:31:46 +0000159
wdenk2262cfe2002-11-18 00:14:45 +0000160}
161
wdenk8bde7f72003-06-27 21:31:46 +0000162void enable_irq(int irq)
wdenk2262cfe2002-11-18 00:14:45 +0000163{
164 if (irq >= MAX_IRQ) {
165 return;
166 }
167 irq_table[irq].status &= ~IRQ_DISABLED;
168}
169
170/* masks one specific IRQ in the PIC */
171static void unmask_irq(int irq)
172{
173 int imr_port;
wdenk8bde7f72003-06-27 21:31:46 +0000174
wdenk2262cfe2002-11-18 00:14:45 +0000175 if (irq >= MAX_IRQ) {
176 return;
177 }
178 if (irq > 7) {
179 imr_port = SLAVE_PIC + IMR;
180 } else {
181 imr_port = MASTER_PIC + IMR;
182 }
wdenk8bde7f72003-06-27 21:31:46 +0000183
wdenk2262cfe2002-11-18 00:14:45 +0000184 outb(inb(imr_port)&~(1<<(irq&7)), imr_port);
185}
186
187
188/* unmasks one specific IRQ in the PIC */
189static void mask_irq(int irq)
190{
191 int imr_port;
wdenk8bde7f72003-06-27 21:31:46 +0000192
wdenk2262cfe2002-11-18 00:14:45 +0000193 if (irq >= MAX_IRQ) {
194 return;
195 }
196 if (irq > 7) {
197 imr_port = SLAVE_PIC + IMR;
198 } else {
199 imr_port = MASTER_PIC + IMR;
200 }
wdenk8bde7f72003-06-27 21:31:46 +0000201
202 outb(inb(imr_port)|(1<<(irq&7)), imr_port);
wdenk2262cfe2002-11-18 00:14:45 +0000203}
204
205
206/* issue a Specific End Of Interrupt instruciton */
207static void specific_eoi(int irq)
208{
209 /* If it is on the slave PIC this have to be performed on
210 * both the master and the slave PICs */
211 if (irq > 7) {
212 outb(OCW2_SEOI|(irq&7), SLAVE_PIC + OCW2);
213 irq = SEOI_IR2; /* also do IR2 on master */
wdenk8bde7f72003-06-27 21:31:46 +0000214 }
wdenk2262cfe2002-11-18 00:14:45 +0000215 outb(OCW2_SEOI|irq, MASTER_PIC + OCW2);
216}
217
wdenk8bde7f72003-06-27 21:31:46 +0000218void __attribute__ ((regparm(0))) do_irq(int irq)
wdenk2262cfe2002-11-18 00:14:45 +0000219{
wdenk8bde7f72003-06-27 21:31:46 +0000220
wdenk2262cfe2002-11-18 00:14:45 +0000221 mask_irq(irq);
wdenk8bde7f72003-06-27 21:31:46 +0000222
wdenk2262cfe2002-11-18 00:14:45 +0000223 if (irq_table[irq].status & IRQ_DISABLED) {
224 unmask_irq(irq);
225 specific_eoi(irq);
226 return;
227 }
wdenk8bde7f72003-06-27 21:31:46 +0000228
229
wdenk2262cfe2002-11-18 00:14:45 +0000230 if (NULL != irq_table[irq].handler) {
231 irq_handler_t *handler;
wdenk8bde7f72003-06-27 21:31:46 +0000232 for (handler = irq_table[irq].handler;
wdenk2262cfe2002-11-18 00:14:45 +0000233 NULL!= handler; handler = handler->next) {
234 handler->isr_func(handler->isr_data);
235 }
236 } else {
wdenk8bde7f72003-06-27 21:31:46 +0000237 if ((irq & 7) != 7) {
wdenk2262cfe2002-11-18 00:14:45 +0000238 printf("Spurious irq %d\n", irq);
239 }
wdenk8bde7f72003-06-27 21:31:46 +0000240 }
wdenk2262cfe2002-11-18 00:14:45 +0000241 unmask_irq(irq);
wdenk8bde7f72003-06-27 21:31:46 +0000242 specific_eoi(irq);
wdenk2262cfe2002-11-18 00:14:45 +0000243}
244
245
wdenk8bde7f72003-06-27 21:31:46 +0000246void __attribute__ ((regparm(0))) unknown_exception_entry(int cause, int ip, int seg)
wdenk2262cfe2002-11-18 00:14:45 +0000247{
248 printf("Unknown Exception %d at %04x:%08x\n", cause, seg, ip);
249}
250
wdenk8bde7f72003-06-27 21:31:46 +0000251void __attribute__ ((regparm(0))) divide_exception_entry(int cause, int ip, int seg)
wdenk2262cfe2002-11-18 00:14:45 +0000252{
253 printf("Divide Error (Division by zero) at %04x:%08x\n", seg, ip);
254 while(1);
255}
256
wdenk8bde7f72003-06-27 21:31:46 +0000257void __attribute__ ((regparm(0))) debug_exception_entry(int cause, int ip, int seg)
wdenk2262cfe2002-11-18 00:14:45 +0000258{
259 printf("Debug Interrupt (Single step) at %04x:%08x\n", seg, ip);
260}
261
wdenk8bde7f72003-06-27 21:31:46 +0000262void __attribute__ ((regparm(0))) nmi_entry(int cause, int ip, int seg)
wdenk2262cfe2002-11-18 00:14:45 +0000263{
264 printf("NMI Interrupt at %04x:%08x\n", seg, ip);
265}
wdenk8bde7f72003-06-27 21:31:46 +0000266
267void __attribute__ ((regparm(0))) invalid_instruction_entry(int cause, int ip, int seg)
wdenk2262cfe2002-11-18 00:14:45 +0000268{
269 printf("Invalid Instruction at %04x:%08x\n", seg, ip);
270 while(1);
271}
wdenk8bde7f72003-06-27 21:31:46 +0000272
273void __attribute__ ((regparm(0))) double_fault_entry(int cause, int ip, int seg)
wdenk2262cfe2002-11-18 00:14:45 +0000274{
275 printf("Double fault at %04x:%08x\n", seg, ip);
276 while(1);
277}
278
wdenk8bde7f72003-06-27 21:31:46 +0000279void __attribute__ ((regparm(0))) invalid_tss_exception_entry(int cause, int ip, int seg)
wdenk2262cfe2002-11-18 00:14:45 +0000280{
281 printf("Invalid TSS at %04x:%08x\n", seg, ip);
282}
wdenk8bde7f72003-06-27 21:31:46 +0000283
284void __attribute__ ((regparm(0))) seg_fault_entry(int cause, int ip, int seg)
wdenk2262cfe2002-11-18 00:14:45 +0000285{
286 printf("Segmentation fault at %04x:%08x\n", seg, ip);
287 while(1);
288}
289
wdenk8bde7f72003-06-27 21:31:46 +0000290void __attribute__ ((regparm(0))) stack_fault_entry(int cause, int ip, int seg)
wdenk2262cfe2002-11-18 00:14:45 +0000291{
292 printf("Stack fault at %04x:%08x\n", seg, ip);
293 while(1);
294}
295
wdenk8bde7f72003-06-27 21:31:46 +0000296void __attribute__ ((regparm(0))) gpf_entry(int cause, int ip, int seg)
wdenk2262cfe2002-11-18 00:14:45 +0000297{
298 printf("General protection fault at %04x:%08x\n", seg, ip);
299}
300
wdenk8bde7f72003-06-27 21:31:46 +0000301void __attribute__ ((regparm(0))) page_fault_entry(int cause, int ip, int seg)
wdenk2262cfe2002-11-18 00:14:45 +0000302{
303 printf("Page fault at %04x:%08x\n", seg, ip);
304 while(1);
305}
306
wdenk8bde7f72003-06-27 21:31:46 +0000307void __attribute__ ((regparm(0))) fp_exception_entry(int cause, int ip, int seg)
wdenk2262cfe2002-11-18 00:14:45 +0000308{
309 printf("Floating point exception at %04x:%08x\n", seg, ip);
310}
311
wdenk8bde7f72003-06-27 21:31:46 +0000312void __attribute__ ((regparm(0))) alignment_check_entry(int cause, int ip, int seg)
wdenk2262cfe2002-11-18 00:14:45 +0000313{
314 printf("Alignment check at %04x:%08x\n", seg, ip);
315}
wdenk8bde7f72003-06-27 21:31:46 +0000316
317void __attribute__ ((regparm(0))) machine_check_entry(int cause, int ip, int seg)
wdenk2262cfe2002-11-18 00:14:45 +0000318{
319 printf("Machine check exception at %04x:%08x\n", seg, ip);
320}
321
322
323void irq_install_handler(int ino, interrupt_handler_t *func, void *pdata)
324{
325 int status;
wdenk8bde7f72003-06-27 21:31:46 +0000326
wdenk2262cfe2002-11-18 00:14:45 +0000327 if (ino>MAX_IRQ) {
328 return;
329 }
wdenk8bde7f72003-06-27 21:31:46 +0000330
wdenk2262cfe2002-11-18 00:14:45 +0000331 if (NULL != irq_table[ino].handler) {
332 return;
333 }
wdenk8bde7f72003-06-27 21:31:46 +0000334
wdenk2262cfe2002-11-18 00:14:45 +0000335 status = disable_interrupts();
336 irq_table[ino].handler = malloc(sizeof(irq_handler_t));
337 if (NULL == irq_table[ino].handler) {
338 return;
339 }
wdenk8bde7f72003-06-27 21:31:46 +0000340
wdenk2262cfe2002-11-18 00:14:45 +0000341 memset(irq_table[ino].handler, 0, sizeof(irq_handler_t));
wdenk8bde7f72003-06-27 21:31:46 +0000342
wdenk2262cfe2002-11-18 00:14:45 +0000343 irq_table[ino].handler->isr_func = func;
344 irq_table[ino].handler->isr_data = pdata;
345 if (status) {
346 enable_interrupts();
347 }
wdenk8bde7f72003-06-27 21:31:46 +0000348
wdenk2262cfe2002-11-18 00:14:45 +0000349 unmask_irq(ino);
wdenk8bde7f72003-06-27 21:31:46 +0000350
wdenk2262cfe2002-11-18 00:14:45 +0000351 return;
352}
353
354void irq_free_handler(int ino)
355{
356 int status;
357 if (ino>MAX_IRQ) {
358 return;
359 }
wdenk8bde7f72003-06-27 21:31:46 +0000360
wdenk2262cfe2002-11-18 00:14:45 +0000361 status = disable_interrupts();
362 mask_irq(ino);
363 if (NULL == irq_table[ino].handler) {
364 return;
365 }
366 free(irq_table[ino].handler);
367 irq_table[ino].handler=NULL;
368 if (status) {
369 enable_interrupts();
370 }
371 return;
372}
373
374
375asm ("idt_ptr:\n"
376 ".word 0x800\n" /* size of the table 8*256 bytes */
377 ".long idt\n" /* offset */
378 ".word 0x18\n");/* data segment */
379
Graeme Russ9933d602008-12-07 10:29:01 +1100380void set_vector(int intnum, void *routine)
wdenk2262cfe2002-11-18 00:14:45 +0000381{
wdenk8bde7f72003-06-27 21:31:46 +0000382 idt[intnum].base_high = (u16)((u32)(routine)>>16);
383 idt[intnum].base_low = (u16)((u32)(routine)&0xffff);
wdenk2262cfe2002-11-18 00:14:45 +0000384}
385
386
387int interrupt_init(void)
388{
389 int i;
wdenk8bde7f72003-06-27 21:31:46 +0000390
wdenk2262cfe2002-11-18 00:14:45 +0000391 /* Just in case... */
392 disable_interrupts();
wdenk8bde7f72003-06-27 21:31:46 +0000393
wdenk2262cfe2002-11-18 00:14:45 +0000394 /* Initialize the IDT and stuff */
wdenk8bde7f72003-06-27 21:31:46 +0000395
396
wdenk2262cfe2002-11-18 00:14:45 +0000397 memset(irq_table, 0, sizeof(irq_table));
398
399 /* Setup the IDT */
wdenk8bde7f72003-06-27 21:31:46 +0000400 for (i=0;i<256;i++) {
wdenk2262cfe2002-11-18 00:14:45 +0000401 idt[i].access = 0x8e;
wdenk8bde7f72003-06-27 21:31:46 +0000402 idt[i].res = 0;
403 idt[i].selector = 0x10;
wdenk2262cfe2002-11-18 00:14:45 +0000404 set_vector(i, default_isr);
wdenk8bde7f72003-06-27 21:31:46 +0000405 }
406
wdenk2262cfe2002-11-18 00:14:45 +0000407 asm ("cs lidt idt_ptr\n");
wdenk8bde7f72003-06-27 21:31:46 +0000408
wdenk2262cfe2002-11-18 00:14:45 +0000409 /* Setup exceptions */
410 set_vector(0x00, exp_0);
411 set_vector(0x01, exp_1);
412 set_vector(0x02, exp_2);
413 set_vector(0x03, exp_3);
414 set_vector(0x04, exp_4);
415 set_vector(0x05, exp_5);
416 set_vector(0x06, exp_6);
417 set_vector(0x07, exp_7);
418 set_vector(0x08, exp_8);
419 set_vector(0x09, exp_9);
420 set_vector(0x0a, exp_10);
421 set_vector(0x0b, exp_11);
422 set_vector(0x0c, exp_12);
423 set_vector(0x0d, exp_13);
424 set_vector(0x0e, exp_14);
425 set_vector(0x0f, exp_15);
426 set_vector(0x10, exp_16);
427 set_vector(0x11, exp_17);
428 set_vector(0x12, exp_18);
429 set_vector(0x13, exp_19);
430 set_vector(0x14, exp_20);
431 set_vector(0x15, exp_21);
432 set_vector(0x16, exp_22);
433 set_vector(0x17, exp_23);
434 set_vector(0x18, exp_24);
435 set_vector(0x19, exp_25);
436 set_vector(0x1a, exp_26);
437 set_vector(0x1b, exp_27);
438 set_vector(0x1c, exp_28);
439 set_vector(0x1d, exp_29);
440 set_vector(0x1e, exp_30);
441 set_vector(0x1f, exp_31);
442
443
444 /* Setup interrupts */
445 set_vector(0x20, irq_0);
446 set_vector(0x21, irq_1);
447 set_vector(0x23, irq_3);
448 set_vector(0x24, irq_4);
449 set_vector(0x25, irq_5);
450 set_vector(0x26, irq_6);
451 set_vector(0x27, irq_7);
452 set_vector(0x28, irq_8);
453 set_vector(0x29, irq_9);
454 set_vector(0x2a, irq_10);
455 set_vector(0x2b, irq_11);
456 set_vector(0x2c, irq_12);
457 set_vector(0x2d, irq_13);
458 set_vector(0x2e, irq_14);
459 set_vector(0x2f, irq_15);
460 /* vectors 0x30-0x3f are reserved for irq 16-31 */
wdenk2262cfe2002-11-18 00:14:45 +0000461
wdenk8bde7f72003-06-27 21:31:46 +0000462
wdenk2262cfe2002-11-18 00:14:45 +0000463 /* Mask all interrupts */
464 outb(0xff, MASTER_PIC + IMR);
465 outb(0xff, SLAVE_PIC + IMR);
wdenk8bde7f72003-06-27 21:31:46 +0000466
wdenk2262cfe2002-11-18 00:14:45 +0000467 /* Master PIC */
wdenk8bde7f72003-06-27 21:31:46 +0000468 outb(ICW1_SEL|ICW1_EICW4, MASTER_PIC + ICW1);
wdenk2262cfe2002-11-18 00:14:45 +0000469 outb(0x20, MASTER_PIC + ICW2); /* Place master PIC interrupts at INT20 */
wdenk8bde7f72003-06-27 21:31:46 +0000470 outb(IR2, MASTER_PIC + ICW3); /* ICW3, One slevc PIC is present */
wdenk2262cfe2002-11-18 00:14:45 +0000471 outb(ICW4_PM, MASTER_PIC + ICW4);
wdenk8bde7f72003-06-27 21:31:46 +0000472
wdenk2262cfe2002-11-18 00:14:45 +0000473 for (i=0;i<8;i++) {
474 outb(OCW2_SEOI|i, MASTER_PIC + OCW2);
475 }
wdenk8bde7f72003-06-27 21:31:46 +0000476
wdenk2262cfe2002-11-18 00:14:45 +0000477 /* Slave PIC */
wdenk8bde7f72003-06-27 21:31:46 +0000478 outb(ICW1_SEL|ICW1_EICW4, SLAVE_PIC + ICW1);
wdenk2262cfe2002-11-18 00:14:45 +0000479 outb(0x28, SLAVE_PIC + ICW2); /* Place slave PIC interrupts at INT28 */
480 outb(0x02, SLAVE_PIC + ICW3); /* Slave ID */
wdenk8bde7f72003-06-27 21:31:46 +0000481 outb(ICW4_PM, SLAVE_PIC + ICW4);
482
wdenk2262cfe2002-11-18 00:14:45 +0000483 for (i=0;i<8;i++) {
484 outb(OCW2_SEOI|i, SLAVE_PIC + OCW2);
485 }
wdenk8bde7f72003-06-27 21:31:46 +0000486
487
wdenk2262cfe2002-11-18 00:14:45 +0000488 /* enable cascade interrerupt */
489 outb(0xfb, MASTER_PIC + IMR);
490 outb(0xff, SLAVE_PIC + IMR);
wdenk8bde7f72003-06-27 21:31:46 +0000491
wdenk2262cfe2002-11-18 00:14:45 +0000492 /* It is now safe to enable interrupts */
wdenk8bde7f72003-06-27 21:31:46 +0000493 enable_interrupts();
494
wdenk2262cfe2002-11-18 00:14:45 +0000495 return 0;
496}
497
498void enable_interrupts(void)
499{
500 asm("sti\n");
501}
502
503int disable_interrupts(void)
504{
505 long flags;
wdenk8bde7f72003-06-27 21:31:46 +0000506
wdenk2262cfe2002-11-18 00:14:45 +0000507 asm volatile ("pushfl ; popl %0 ; cli\n" : "=g" (flags) : );
wdenk8bde7f72003-06-27 21:31:46 +0000508
wdenk2262cfe2002-11-18 00:14:45 +0000509 return (flags&0x200); /* IE flags is bit 9 */
510}
511
512
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200513#ifdef CONFIG_SYS_RESET_GENERIC
wdenk2262cfe2002-11-18 00:14:45 +0000514
515void __attribute__ ((regparm(0))) generate_gpf(void);
wdenk8bde7f72003-06-27 21:31:46 +0000516asm(".globl generate_gpf\n"
517 "generate_gpf:\n"
518 "ljmp $0x70, $0x47114711\n"); /* segment 0x70 is an arbitrary segment which does not
wdenk2262cfe2002-11-18 00:14:45 +0000519 * exist */
520void reset_cpu(ulong addr)
521{
522 set_vector(13, generate_gpf); /* general protection fault handler */
523 set_vector(8, generate_gpf); /* double fault handler */
524 generate_gpf(); /* start the show */
525}
526#endif