smpboot_hooks.h 1.5 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
}

static inline void smpboot_setup_warm_reset_vector(unsigned long start_eip)
{
13 14 15
	unsigned long flags;

	spin_lock_irqsave(&rtc_lock, flags);
L
Linus Torvalds 已提交
16
	CMOS_WRITE(0xa, 0xf);
17
	spin_unlock_irqrestore(&rtc_lock, flags);
L
Linus Torvalds 已提交
18
	local_flush_tlb();
19
	pr_debug("1.\n");
20
	*((volatile unsigned short *)phys_to_virt(apic->trampoline_phys_high)) =
21
								 start_eip >> 4;
22
	pr_debug("2.\n");
23
	*((volatile unsigned short *)phys_to_virt(apic->trampoline_phys_low)) =
24
							 start_eip & 0xf;
25
	pr_debug("3.\n");
L
Linus Torvalds 已提交
26 27 28 29
}

static inline void smpboot_restore_warm_reset_vector(void)
{
30 31
	unsigned long flags;

L
Linus Torvalds 已提交
32 33 34 35 36 37 38 39 40
	/*
	 * 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.
	 */
41
	spin_lock_irqsave(&rtc_lock, flags);
L
Linus Torvalds 已提交
42
	CMOS_WRITE(0, 0xf);
43
	spin_unlock_irqrestore(&rtc_lock, flags);
L
Linus Torvalds 已提交
44

45
	*((volatile u32 *)phys_to_virt(apic->trampoline_phys_low)) = 0;
L
Linus Torvalds 已提交
46 47
}

J
Jacek Luczak 已提交
48
static inline void __init smpboot_setup_io_apic(void)
L
Linus Torvalds 已提交
49
{
50
#ifdef CONFIG_X86_IO_APIC
L
Linus Torvalds 已提交
51 52 53 54 55 56
	/*
	 * 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();
57
	else {
58
		nr_ioapics = 0;
59
	}
60
#endif
L
Linus Torvalds 已提交
61
}
62 63 64

static inline void smpboot_clear_io_apic(void)
{
65
#ifdef CONFIG_X86_IO_APIC
66
	nr_ioapics = 0;
67
#endif
68
}