diff options
Diffstat (limited to 'arch/i386/kernel/io_apic.c')
| -rw-r--r-- | arch/i386/kernel/io_apic.c | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/arch/i386/kernel/io_apic.c b/arch/i386/kernel/io_apic.c index 235822b3f41b..39d9a5fa907e 100644 --- a/arch/i386/kernel/io_apic.c +++ b/arch/i386/kernel/io_apic.c | |||
| @@ -51,6 +51,8 @@ static struct { int pin, apic; } ioapic_i8259 = { -1, -1 }; | |||
| 51 | 51 | ||
| 52 | static DEFINE_SPINLOCK(ioapic_lock); | 52 | static DEFINE_SPINLOCK(ioapic_lock); |
| 53 | 53 | ||
| 54 | int timer_over_8254 __initdata = 1; | ||
| 55 | |||
| 54 | /* | 56 | /* |
| 55 | * Is the SiS APIC rmw bug present ? | 57 | * Is the SiS APIC rmw bug present ? |
| 56 | * -1 = don't know, 0 = no, 1 = yes | 58 | * -1 = don't know, 0 = no, 1 = yes |
| @@ -2267,7 +2269,8 @@ static inline void check_timer(void) | |||
| 2267 | apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT); | 2269 | apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT); |
| 2268 | init_8259A(1); | 2270 | init_8259A(1); |
| 2269 | timer_ack = 1; | 2271 | timer_ack = 1; |
| 2270 | enable_8259A_irq(0); | 2272 | if (timer_over_8254 > 0) |
| 2273 | enable_8259A_irq(0); | ||
| 2271 | 2274 | ||
| 2272 | pin1 = find_isa_irq_pin(0, mp_INT); | 2275 | pin1 = find_isa_irq_pin(0, mp_INT); |
| 2273 | apic1 = find_isa_irq_apic(0, mp_INT); | 2276 | apic1 = find_isa_irq_apic(0, mp_INT); |
| @@ -2392,6 +2395,20 @@ void __init setup_IO_APIC(void) | |||
| 2392 | print_IO_APIC(); | 2395 | print_IO_APIC(); |
| 2393 | } | 2396 | } |
| 2394 | 2397 | ||
| 2398 | static int __init setup_disable_8254_timer(char *s) | ||
| 2399 | { | ||
| 2400 | timer_over_8254 = -1; | ||
| 2401 | return 1; | ||
| 2402 | } | ||
| 2403 | static int __init setup_enable_8254_timer(char *s) | ||
| 2404 | { | ||
| 2405 | timer_over_8254 = 2; | ||
| 2406 | return 1; | ||
| 2407 | } | ||
| 2408 | |||
| 2409 | __setup("disable_8254_timer", setup_disable_8254_timer); | ||
| 2410 | __setup("enable_8254_timer", setup_enable_8254_timer); | ||
| 2411 | |||
| 2395 | /* | 2412 | /* |
| 2396 | * Called after all the initialization is done. If we didnt find any | 2413 | * Called after all the initialization is done. If we didnt find any |
| 2397 | * APIC bugs then we can allow the modify fast path | 2414 | * APIC bugs then we can allow the modify fast path |
