smpboot_hooks.h 1.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5
/* two abstractions specific to kernel/smpboot.c, mainly to cater to visws
 * which needs to alter them. */

static inline void smpboot_clear_io_apic_irqs(void)
{
6
#ifdef CONFIG_X86_IO_APIC
L
Linus Torvalds 已提交
7
	io_apic_irqs = 0;
8
#endif
L
Linus Torvalds 已提交
9 10 11 12 13 14
}

static inline void smpboot_setup_warm_reset_vector(unsigned long start_eip)
{
	CMOS_WRITE(0xa, 0xf);
	local_flush_tlb();
15
	pr_debug("1.\n");
16
	*((volatile unsigned short *)phys_to_virt(apic->trampoline_phys_high)) =
17
								 start_eip >> 4;
18
	pr_debug("2.\n");
19
	*((volatile unsigned short *)phys_to_virt(apic->trampoline_phys_low)) =
20
							 start_eip & 0xf;
21
	pr_debug("3.\n");
L
Linus Torvalds 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
}

static inline void smpboot_restore_warm_reset_vector(void)
{
	/*
	 * Install writable page 0 entry to set BIOS data area.
	 */
	local_flush_tlb();

	/*
	 * Paranoid:  Set warm reset code and vector here back
	 * to default values.
	 */
	CMOS_WRITE(0, 0xf);

37
	*((volatile long *)phys_to_virt(apic->trampoline_phys_low)) = 0;
L
Linus Torvalds 已提交
38 39
}

J
Jacek Luczak 已提交
40
static inline void __init smpboot_setup_io_apic(void)
L
Linus Torvalds 已提交
41
{
42
#ifdef CONFIG_X86_IO_APIC
L
Linus Torvalds 已提交
43 44 45 46 47 48
	/*
	 * Here we can be sure that there is an IO-APIC in the system. Let's
	 * go and set it up:
	 */
	if (!skip_ioapic_setup && nr_ioapics)
		setup_IO_APIC();
49
	else {
50
		nr_ioapics = 0;
51 52
		localise_nmi_watchdog();
	}
53
#endif
L
Linus Torvalds 已提交
54
}
55 56 57

static inline void smpboot_clear_io_apic(void)
{
58
#ifdef CONFIG_X86_IO_APIC
59
	nr_ioapics = 0;
60
#endif
61
}