diff options
Diffstat (limited to 'arch/x86/include/asm/apicdef.h')
| -rw-r--r-- | arch/x86/include/asm/apicdef.h | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/x86/include/asm/apicdef.h b/arch/x86/include/asm/apicdef.h index bc9514fb3b1..7ddb36ab933 100644 --- a/arch/x86/include/asm/apicdef.h +++ b/arch/x86/include/asm/apicdef.h @@ -22,6 +22,7 @@  #  define	APIC_INTEGRATED(x)	(1)  #endif  #define		APIC_XAPIC(x)		((x) >= 0x14) +#define		APIC_EXT_SPACE(x)	((x) & 0x80000000)  #define	APIC_TASKPRI	0x80  #define		APIC_TPRI_MASK		0xFFu  #define	APIC_ARBPRI	0x90 @@ -116,7 +117,9 @@  #define		APIC_TDR_DIV_32		0x8  #define		APIC_TDR_DIV_64		0x9  #define		APIC_TDR_DIV_128	0xA -#define	APIC_EILVT0     0x500 +#define	APIC_EFEAT	0x400 +#define	APIC_ECTRL	0x410 +#define APIC_EILVTn(n)	(0x500 + 0x10 * n)  #define		APIC_EILVT_NR_AMD_K8	1	/* # of extended interrupts */  #define		APIC_EILVT_NR_AMD_10H	4  #define		APIC_EILVT_LVTOFF(x)	(((x) >> 4) & 0xF) @@ -125,9 +128,6 @@  #define		APIC_EILVT_MSG_NMI	0x4  #define		APIC_EILVT_MSG_EXT	0x7  #define		APIC_EILVT_MASKED	(1 << 16) -#define	APIC_EILVT1     0x510 -#define	APIC_EILVT2     0x520 -#define	APIC_EILVT3     0x530  #define APIC_BASE (fix_to_virt(FIX_APIC_BASE))  #define APIC_BASE_MSR	0x800  |