apic.h 16.9 KB
Newer Older
H
H. Peter Anvin 已提交
1 2
#ifndef _ASM_X86_APIC_H
#define _ASM_X86_APIC_H
T
Thomas Gleixner 已提交
3

4 5
#include <linux/cpumask.h>
#include <linux/pm.h>
6 7

#include <asm/alternative.h>
8
#include <asm/cpufeature.h>
T
Thomas Gleixner 已提交
9
#include <asm/processor.h>
10
#include <asm/apicdef.h>
A
Arun Sharma 已提交
11
#include <linux/atomic.h>
12 13
#include <asm/fixmap.h>
#include <asm/mpspec.h>
14
#include <asm/msr.h>
15
#include <asm/idle.h>
T
Thomas Gleixner 已提交
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37

#define ARCH_APICTIMER_STOPS_ON_C3	1

/*
 * Debugging macros
 */
#define APIC_QUIET   0
#define APIC_VERBOSE 1
#define APIC_DEBUG   2

/*
 * Define the default level of output to be very little
 * This can be turned up by using apic=verbose for more
 * information and apic=debug for _lots_ of information.
 * apic_verbosity is defined in apic.c
 */
#define apic_printk(v, s, a...) do {       \
		if ((v) <= apic_verbosity) \
			printk(s, ##a);    \
	} while (0)


38
#if defined(CONFIG_X86_LOCAL_APIC) && defined(CONFIG_X86_32)
T
Thomas Gleixner 已提交
39
extern void generic_apic_probe(void);
40 41 42 43 44
#else
static inline void generic_apic_probe(void)
{
}
#endif
T
Thomas Gleixner 已提交
45 46 47

#ifdef CONFIG_X86_LOCAL_APIC

48
extern unsigned int apic_verbosity;
T
Thomas Gleixner 已提交
49 50
extern int local_apic_timer_c2_ok;

51
extern int disable_apic;
52
extern unsigned int lapic_timer_frequency;
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67

#ifdef CONFIG_SMP
extern void __inquire_remote_apic(int apicid);
#else /* CONFIG_SMP */
static inline void __inquire_remote_apic(int apicid)
{
}
#endif /* CONFIG_SMP */

static inline void default_inquire_remote_apic(int apicid)
{
	if (apic_verbosity >= APIC_DEBUG)
		__inquire_remote_apic(apicid);
}

68 69 70 71 72 73 74 75 76 77 78 79 80
/*
 * With 82489DX we can't rely on apic feature bit
 * retrieved via cpuid but still have to deal with
 * such an apic chip so we assume that SMP configuration
 * is found from MP table (64bit case uses ACPI mostly
 * which set smp presence flag as well so we are safe
 * to use this helper too).
 */
static inline bool apic_from_smp_config(void)
{
	return smp_found_config && !disable_apic;
}

T
Thomas Gleixner 已提交
81 82 83 84 85
/*
 * Basic functions accessing APICs.
 */
#ifdef CONFIG_PARAVIRT
#include <asm/paravirt.h>
86
#endif
T
Thomas Gleixner 已提交
87

88
#ifdef CONFIG_X86_64
89
extern int is_vsmp_box(void);
90 91 92 93 94 95
#else
static inline int is_vsmp_box(void)
{
	return 0;
}
#endif
96 97 98 99
extern void xapic_wait_icr_idle(void);
extern u32 safe_xapic_wait_icr_idle(void);
extern void xapic_icr_write(u32, u32);
extern int setup_profiling_timer(unsigned int);
100

101
static inline void native_apic_mem_write(u32 reg, u32 v)
T
Thomas Gleixner 已提交
102
{
103
	volatile u32 *addr = (volatile u32 *)(APIC_BASE + reg);
T
Thomas Gleixner 已提交
104

105 106 107
	alternative_io("movl %0, %1", "xchgl %0, %1", X86_FEATURE_11AP,
		       ASM_OUTPUT2("=r" (v), "=m" (*addr)),
		       ASM_OUTPUT2("0" (v), "m" (*addr)));
T
Thomas Gleixner 已提交
108 109
}

110
static inline u32 native_apic_mem_read(u32 reg)
T
Thomas Gleixner 已提交
111 112 113 114
{
	return *((volatile u32 *)(APIC_BASE + reg));
}

Y
Yinghai Lu 已提交
115 116 117 118 119
extern void native_apic_wait_icr_idle(void);
extern u32 native_safe_apic_wait_icr_idle(void);
extern void native_apic_icr_write(u32 low, u32 id);
extern u64 native_apic_icr_read(void);

120
extern int x2apic_mode;
121

122
#ifdef CONFIG_X86_X2APIC
123 124 125 126 127 128 129 130 131 132
/*
 * Make previous memory operations globally visible before
 * sending the IPI through x2apic wrmsr. We need a serializing instruction or
 * mfence for this.
 */
static inline void x2apic_wrmsr_fence(void)
{
	asm volatile("mfence" : : : "memory");
}

133 134 135 136 137 138 139 140 141
static inline void native_apic_msr_write(u32 reg, u32 v)
{
	if (reg == APIC_DFR || reg == APIC_ID || reg == APIC_LDR ||
	    reg == APIC_LVR)
		return;

	wrmsr(APIC_BASE_MSR + (reg >> 4), v, 0);
}

142 143 144 145 146
static inline void native_apic_msr_eoi_write(u32 reg, u32 v)
{
	wrmsr(APIC_BASE_MSR + (APIC_EOI >> 4), APIC_EOI_ACK, 0);
}

147 148
static inline u32 native_apic_msr_read(u32 reg)
{
149
	u64 msr;
150 151 152 153

	if (reg == APIC_DFR)
		return -1;

154 155
	rdmsrl(APIC_BASE_MSR + (reg >> 4), msr);
	return (u32)msr;
156 157
}

Y
Yinghai Lu 已提交
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
static inline void native_x2apic_wait_icr_idle(void)
{
	/* no need to wait for icr idle in x2apic */
	return;
}

static inline u32 native_safe_x2apic_wait_icr_idle(void)
{
	/* no need to wait for icr idle in x2apic */
	return 0;
}

static inline void native_x2apic_icr_write(u32 low, u32 id)
{
	wrmsrl(APIC_BASE_MSR + (APIC_ICR >> 4), ((__u64) id) << 32 | low);
}

static inline u64 native_x2apic_icr_read(void)
{
	unsigned long val;

	rdmsrl(APIC_BASE_MSR + (APIC_ICR >> 4), val);
	return val;
}

183
extern int x2apic_phys;
184
extern int x2apic_preenabled;
185 186 187
extern void check_x2apic(void);
extern void enable_x2apic(void);
extern void x2apic_icr_write(u32 low, u32 id);
188 189
static inline int x2apic_enabled(void)
{
190
	u64 msr;
191 192 193 194

	if (!cpu_has_x2apic)
		return 0;

195
	rdmsrl(MSR_IA32_APICBASE, msr);
196 197 198 199
	if (msr & X2APIC_ENABLE)
		return 1;
	return 0;
}
200 201

#define x2apic_supported()	(cpu_has_x2apic)
202 203 204 205
static inline void x2apic_force_phys(void)
{
	x2apic_phys = 1;
}
206
#else
207 208 209
static inline void disable_x2apic(void)
{
}
Y
Yinghai Lu 已提交
210 211 212 213 214 215 216 217 218 219
static inline void check_x2apic(void)
{
}
static inline void enable_x2apic(void)
{
}
static inline int x2apic_enabled(void)
{
	return 0;
}
220 221 222
static inline void x2apic_force_phys(void)
{
}
223

224
#define	nox2apic	0
225
#define	x2apic_preenabled 0
226
#define	x2apic_supported()	0
Y
Yinghai Lu 已提交
227
#endif
228

229 230
extern void enable_IR_x2apic(void);

T
Thomas Gleixner 已提交
231 232 233 234 235 236 237 238 239 240 241 242
extern int get_physical_broadcast(void);

extern int lapic_get_maxlvt(void);
extern void clear_local_APIC(void);
extern void connect_bsp_APIC(void);
extern void disconnect_bsp_APIC(int virt_wire_setup);
extern void disable_local_APIC(void);
extern void lapic_shutdown(void);
extern int verify_local_APIC(void);
extern void sync_Arb_IDs(void);
extern void init_bsp_APIC(void);
extern void setup_local_APIC(void);
243
extern void end_local_APIC_setup(void);
244
extern void bsp_end_local_APIC_setup(void);
T
Thomas Gleixner 已提交
245
extern void init_apic_mappings(void);
246
void register_lapic_address(unsigned long address);
T
Thomas Gleixner 已提交
247 248 249
extern void setup_boot_APIC_clock(void);
extern void setup_secondary_APIC_clock(void);
extern int APIC_init_uniprocessor(void);
250
extern int apic_force_enable(unsigned long addr);
T
Thomas Gleixner 已提交
251 252 253 254 255

/*
 * On 32bit this is mach-xxx local
 */
#ifdef CONFIG_X86_64
256 257 258 259 260 261
extern int apic_is_clustered_box(void);
#else
static inline int apic_is_clustered_box(void)
{
	return 0;
}
T
Thomas Gleixner 已提交
262 263
#endif

264
extern int setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask);
T
Thomas Gleixner 已提交
265 266 267 268

#else /* !CONFIG_X86_LOCAL_APIC */
static inline void lapic_shutdown(void) { }
#define local_apic_timer_c2_ok		1
269
static inline void init_apic_mappings(void) { }
270
static inline void disable_local_APIC(void) { }
271 272
# define setup_boot_APIC_clock x86_init_noop
# define setup_secondary_APIC_clock x86_init_noop
T
Thomas Gleixner 已提交
273 274
#endif /* !CONFIG_X86_LOCAL_APIC */

I
Ingo Molnar 已提交
275 276 277 278 279 280
#ifdef CONFIG_X86_64
#define	SET_APIC_ID(x)		(apic->set_apic_id(x))
#else

#endif

281 282 283 284 285 286 287 288 289 290
/*
 * Copyright 2004 James Cleverdon, IBM.
 * Subject to the GNU Public License, v.2
 *
 * Generic APIC sub-arch data struct.
 *
 * Hacked for x86-64 by James Cleverdon from i386 architecture code by
 * Martin Bligh, Andi Kleen, James Bottomley, John Stultz, and
 * James Cleverdon.
 */
291
struct apic {
292 293 294 295
	char *name;

	int (*probe)(void);
	int (*acpi_madt_oem_check)(char *oem_id, char *oem_table_id);
296
	int (*apic_id_valid)(int apicid);
297 298 299 300 301 302 303 304 305 306
	int (*apic_id_registered)(void);

	u32 irq_delivery_mode;
	u32 irq_dest_mode;

	const struct cpumask *(*target_cpus)(void);

	int disable_esr;

	int dest_logical;
307
	unsigned long (*check_apicid_used)(physid_mask_t *map, int apicid);
308 309
	unsigned long (*check_apicid_present)(int apicid);

310 311
	void (*vector_allocation_domain)(int cpu, struct cpumask *retmask,
					 const struct cpumask *mask);
312 313
	void (*init_apic_ldr)(void);

314
	void (*ioapic_phys_id_map)(physid_mask_t *phys_map, physid_mask_t *retmap);
315 316 317 318

	void (*setup_apic_routing)(void);
	int (*multi_timer_check)(int apic, int irq);
	int (*cpu_present_to_apicid)(int mps_cpu);
319
	void (*apicid_to_cpu_present)(int phys_apicid, physid_mask_t *retmap);
320
	void (*setup_portio_remap)(void);
T
Thomas Gleixner 已提交
321
	int (*check_phys_apicid_present)(int phys_apicid);
322 323 324 325
	void (*enable_apic_mode)(void);
	int (*phys_pkg_id)(int cpuid_apic, int index_msb);

	/*
326
	 * When one of the next two hooks returns 1 the apic
327 328 329 330 331 332 333 334 335
	 * is switched to this. Essentially they are additional
	 * probe functions:
	 */
	int (*mps_oem_check)(struct mpc_table *mpc, char *oem, char *productid);

	unsigned int (*get_apic_id)(unsigned long x);
	unsigned long (*set_apic_id)(unsigned int id);
	unsigned long apic_id_mask;

336 337 338
	int (*cpu_mask_to_apicid_and)(const struct cpumask *cpumask,
				      const struct cpumask *andmask,
				      unsigned int *apicid);
339 340 341 342 343 344 345 346 347 348

	/* ipi */
	void (*send_IPI_mask)(const struct cpumask *mask, int vector);
	void (*send_IPI_mask_allbutself)(const struct cpumask *mask,
					 int vector);
	void (*send_IPI_allbutself)(int vector);
	void (*send_IPI_all)(int vector);
	void (*send_IPI_self)(int vector);

	/* wakeup_secondary_cpu */
349
	int (*wakeup_secondary_cpu)(int apicid, unsigned long start_eip);
350 351 352 353 354 355 356 357 358 359 360

	int trampoline_phys_low;
	int trampoline_phys_high;

	void (*wait_for_init_deassert)(atomic_t *deassert);
	void (*smp_callin_clear_local_apic)(void);
	void (*inquire_remote_apic)(int apicid);

	/* apic ops */
	u32 (*read)(u32 reg);
	void (*write)(u32 reg, u32 v);
361 362 363 364 365 366 367 368
	/*
	 * ->eoi_write() has the same signature as ->write().
	 *
	 * Drivers can support both ->eoi_write() and ->write() by passing the same
	 * callback value. Kernel can override ->eoi_write() and fall back
	 * on write for EOI.
	 */
	void (*eoi_write)(u32 reg, u32 v);
369 370 371 372
	u64 (*icr_read)(void);
	void (*icr_write)(u32 low, u32 high);
	void (*wait_icr_idle)(void);
	u32 (*safe_wait_icr_idle)(void);
373 374 375 376 377 378 379 380 381 382 383 384 385

#ifdef CONFIG_X86_32
	/*
	 * Called very early during boot from get_smp_config().  It should
	 * return the logical apicid.  x86_[bios]_cpu_to_apicid is
	 * initialized before this function is called.
	 *
	 * If logical apicid can't be determined that early, the function
	 * may return BAD_APICID.  Logical apicid will be configured after
	 * init_apic_ldr() while bringing up CPUs.  Note that NUMA affinity
	 * won't be applied properly during early boot in this case.
	 */
	int (*x86_32_early_logical_apicid)(int cpu);
386

387 388 389 390 391 392
	/*
	 * Optional method called from setup_local_APIC() after logical
	 * apicid is guaranteed to be known to initialize apicid -> node
	 * mapping if NUMA initialization hasn't done so already.  Don't
	 * add new users.
	 */
393
	int (*x86_32_numa_cpu_node)(int cpu);
394
#endif
395 396
};

397 398 399 400 401
/*
 * Pointer to the local APIC driver in use on this system (there's
 * always just one such driver in use - the kernel decides via an
 * early probing process which one it picks - and then sticks to it):
 */
402
extern struct apic *apic;
403

404 405 406 407 408 409 410 411 412
/*
 * APIC drivers are probed based on how they are listed in the .apicdrivers
 * section. So the order is important and enforced by the ordering
 * of different apic driver files in the Makefile.
 *
 * For the files having two apic drivers, we use apic_drivers()
 * to enforce the order with in them.
 */
#define apic_driver(sym)					\
413
	static const struct apic *__apicdrivers_##sym __used		\
414 415 416 417 418 419 420 421 422 423
	__aligned(sizeof(struct apic *))			\
	__section(.apicdrivers) = { &sym }

#define apic_drivers(sym1, sym2)					\
	static struct apic *__apicdrivers_##sym1##sym2[2] __used	\
	__aligned(sizeof(struct apic *))				\
	__section(.apicdrivers) = { &sym1, &sym2 }

extern struct apic *__apicdrivers[], *__apicdrivers_end[];

424 425 426 427
/*
 * APIC functionality to boot other CPUs - only used on SMP:
 */
#ifdef CONFIG_SMP
428 429
extern atomic_t init_deasserted;
extern int wakeup_secondary_cpu_via_nmi(int apicid, unsigned long start_eip);
430
#endif
431

432
#ifdef CONFIG_X86_LOCAL_APIC
433

434 435 436 437 438 439 440 441 442 443
static inline u32 apic_read(u32 reg)
{
	return apic->read(reg);
}

static inline void apic_write(u32 reg, u32 val)
{
	apic->write(reg, val);
}

444 445 446 447 448
static inline void apic_eoi(void)
{
	apic->eoi_write(APIC_EOI, APIC_EOI_ACK);
}

449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468
static inline u64 apic_icr_read(void)
{
	return apic->icr_read();
}

static inline void apic_icr_write(u32 low, u32 high)
{
	apic->icr_write(low, high);
}

static inline void apic_wait_icr_idle(void)
{
	apic->wait_icr_idle();
}

static inline u32 safe_apic_wait_icr_idle(void)
{
	return apic->safe_wait_icr_idle();
}

469 470
extern void __init apic_set_eoi_write(void (*eoi_write)(u32 reg, u32 v));

471 472 473 474
#else /* CONFIG_X86_LOCAL_APIC */

static inline u32 apic_read(u32 reg) { return 0; }
static inline void apic_write(u32 reg, u32 val) { }
475
static inline void apic_eoi(void) { }
476 477 478 479
static inline u64 apic_icr_read(void) { return 0; }
static inline void apic_icr_write(u32 low, u32 high) { }
static inline void apic_wait_icr_idle(void) { }
static inline u32 safe_apic_wait_icr_idle(void) { return 0; }
480
static inline void apic_set_eoi_write(void (*eoi_write)(u32 reg, u32 v)) {}
481 482

#endif /* CONFIG_X86_LOCAL_APIC */
483 484 485 486 487 488 489

static inline void ack_APIC_irq(void)
{
	/*
	 * ack_APIC_irq() actually gets compiled as a single instruction
	 * ... yummie.
	 */
490
	apic_eoi();
491 492 493 494 495 496
}

static inline unsigned default_get_apic_id(unsigned long x)
{
	unsigned int ver = GET_APIC_VERSION(apic_read(APIC_LVR));

497
	if (APIC_XAPIC(ver) || boot_cpu_has(X86_FEATURE_EXTD_APICID))
498 499 500 501 502 503 504 505 506 507 508
		return (x >> 24) & 0xFF;
	else
		return (x >> 24) & 0x0F;
}

/*
 * Warm reset vector default position:
 */
#define DEFAULT_TRAMPOLINE_PHYS_LOW		0x467
#define DEFAULT_TRAMPOLINE_PHYS_HIGH		0x469

509
#ifdef CONFIG_X86_64
510 511 512 513 514 515 516
extern int default_acpi_madt_oem_check(char *, char *);

extern void apic_send_IPI_self(int vector);

DECLARE_PER_CPU(int, x2apic_extra_bits);

extern int default_cpu_present_to_apicid(int mps_cpu);
T
Thomas Gleixner 已提交
517
extern int default_check_phys_apicid_present(int phys_apicid);
518 519 520 521 522 523 524 525 526
#endif

static inline void default_wait_for_init_deassert(atomic_t *deassert)
{
	while (!atomic_read(deassert))
		cpu_relax();
	return;
}

527
extern void generic_bigsmp_probe(void);
528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544


#ifdef CONFIG_X86_LOCAL_APIC

#include <asm/smp.h>

#define APIC_DFR_VALUE	(APIC_DFR_FLAT)

static inline const struct cpumask *default_target_cpus(void)
{
#ifdef CONFIG_SMP
	return cpu_online_mask;
#else
	return cpumask_of(0);
#endif
}

545 546 547 548 549
static inline const struct cpumask *online_target_cpus(void)
{
	return cpu_online_mask;
}

550
DECLARE_EARLY_PER_CPU_READ_MOSTLY(u16, x86_bios_cpu_apicid);
551 552 553 554 555 556 557 558 559 560 561


static inline unsigned int read_apic_id(void)
{
	unsigned int reg;

	reg = apic_read(APIC_ID);

	return apic->get_apic_id(reg);
}

562 563
static inline int default_apic_id_valid(int apicid)
{
564
	return (apicid < 255);
565 566
}

567 568
extern void default_setup_apic_routing(void);

569 570
extern struct apic apic_noop;

571
#ifdef CONFIG_X86_32
572

573 574 575 576 577
static inline int noop_x86_32_early_logical_apicid(int cpu)
{
	return BAD_APICID;
}

578 579 580 581 582 583 584 585 586 587 588 589 590 591
/*
 * Set up the logical destination ID.
 *
 * Intel recommends to set DFR, LDR and TPR before enabling
 * an APIC.  See e.g. "AP-388 82489DX User's Manual" (Intel
 * document number 292116).  So here it goes...
 */
extern void default_init_apic_ldr(void);

static inline int default_apic_id_registered(void)
{
	return physid_isset(read_apic_id(), phys_cpu_present_map);
}

592 593 594 595 596 597 598
static inline int default_phys_pkg_id(int cpuid_apic, int index_msb)
{
	return cpuid_apic >> index_msb;
}

#endif

599
static inline int
600 601 602
flat_cpu_mask_to_apicid_and(const struct cpumask *cpumask,
			    const struct cpumask *andmask,
			    unsigned int *apicid)
603
{
604 605 606 607 608
	unsigned long cpu_mask = cpumask_bits(cpumask)[0] &
				 cpumask_bits(andmask)[0] &
				 cpumask_bits(cpu_online_mask)[0] &
				 APIC_ALL_CPUS;

609 610 611 612 613 614 615 616 617
	if (likely(cpu_mask)) {
		*apicid = (unsigned int)cpu_mask;
		return 0;
	} else {
		return -EINVAL;
	}
}

extern int
618
default_cpu_mask_to_apicid_and(const struct cpumask *cpumask,
619 620
			       const struct cpumask *andmask,
			       unsigned int *apicid);
621

622
static inline void
623 624
flat_vector_allocation_domain(int cpu, struct cpumask *retmask,
			      const struct cpumask *mask)
625 626 627 628 629 630 631 632 633 634 635 636 637
{
	/* Careful. Some cpus do not strictly honor the set of cpus
	 * specified in the interrupt destination when using lowest
	 * priority interrupt delivery mode.
	 *
	 * In particular there was a hyperthreading cpu observed to
	 * deliver interrupts to the wrong hyperthread when only one
	 * hyperthread was specified in the interrupt desitination.
	 */
	cpumask_clear(retmask);
	cpumask_bits(retmask)[0] = APIC_ALL_CPUS;
}

638
static inline void
639 640
default_vector_allocation_domain(int cpu, struct cpumask *retmask,
				 const struct cpumask *mask)
641 642 643 644
{
	cpumask_copy(retmask, cpumask_of(cpu));
}

645
static inline unsigned long default_check_apicid_used(physid_mask_t *map, int apicid)
646
{
647
	return physid_isset(apicid, *map);
648 649 650 651 652 653 654
}

static inline unsigned long default_check_apicid_present(int bit)
{
	return physid_isset(bit, phys_cpu_present_map);
}

655
static inline void default_ioapic_phys_id_map(physid_mask_t *phys_map, physid_mask_t *retmap)
656
{
657
	*retmap = *phys_map;
658 659 660 661 662 663 664 665 666 667 668
}

static inline int __default_cpu_present_to_apicid(int mps_cpu)
{
	if (mps_cpu < nr_cpu_ids && cpu_present(mps_cpu))
		return (int)per_cpu(x86_bios_cpu_apicid, mps_cpu);
	else
		return BAD_APICID;
}

static inline int
T
Thomas Gleixner 已提交
669
__default_check_phys_apicid_present(int phys_apicid)
670
{
T
Thomas Gleixner 已提交
671
	return physid_isset(phys_apicid, phys_cpu_present_map);
672 673 674 675 676 677 678 679 680
}

#ifdef CONFIG_X86_32
static inline int default_cpu_present_to_apicid(int mps_cpu)
{
	return __default_cpu_present_to_apicid(mps_cpu);
}

static inline int
T
Thomas Gleixner 已提交
681
default_check_phys_apicid_present(int phys_apicid)
682
{
T
Thomas Gleixner 已提交
683
	return __default_check_phys_apicid_present(phys_apicid);
684 685 686
}
#else
extern int default_cpu_present_to_apicid(int mps_cpu);
T
Thomas Gleixner 已提交
687
extern int default_check_phys_apicid_present(int phys_apicid);
688 689 690
#endif

#endif /* CONFIG_X86_LOCAL_APIC */
691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716
extern void irq_enter(void);
extern void irq_exit(void);

static inline void entering_irq(void)
{
	irq_enter();
	exit_idle();
}

static inline void entering_ack_irq(void)
{
	ack_APIC_irq();
	entering_irq();
}

static inline void exiting_irq(void)
{
	irq_exit();
}

static inline void exiting_ack_irq(void)
{
	irq_exit();
	/* Ack only at the end to avoid potential reentry */
	ack_APIC_irq();
}
717

H
H. Peter Anvin 已提交
718
#endif /* _ASM_X86_APIC_H */