wakecpu.h 806 字节
Newer Older
Y
Yinghai Lu 已提交
1 2
#ifndef __ASM_ES7000_WAKECPU_H
#define __ASM_ES7000_WAKECPU_H
L
Linus Torvalds 已提交
3

4 5
#define TRAMPOLINE_PHYS_LOW	0x467
#define TRAMPOLINE_PHYS_HIGH	0x469
L
Linus Torvalds 已提交
6 7 8

static inline void wait_for_init_deassert(atomic_t *deassert)
{
9
#ifndef CONFIG_ES7000_CLUSTERED_APIC
10 11
	while (!atomic_read(deassert))
		cpu_relax();
L
Linus Torvalds 已提交
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
#endif
	return;
}

/* Nothing to do for most platforms, since cleared by the INIT cycle */
static inline void smp_callin_clear_local_apic(void)
{
}

static inline void store_NMI_vector(unsigned short *high, unsigned short *low)
{
}

static inline void restore_NMI_vector(unsigned short *high, unsigned short *low)
{
}

29 30 31 32 33 34 35
extern void __inquire_remote_apic(int apicid);

static inline void inquire_remote_apic(int apicid)
{
	if (apic_verbosity >= APIC_DEBUG)
		__inquire_remote_apic(apicid);
}
L
Linus Torvalds 已提交
36

Y
Yinghai Lu 已提交
37
#endif /* __ASM_MACH_WAKECPU_H */