blob: ae9841319094223e4ba81d09f929841cd5035b5e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __ASM_MACH_APICDEF_H
2#define __ASM_MACH_APICDEF_H
3
Siddha, Suresh B58d5fa72007-10-17 18:04:33 +02004#include <asm/apic.h>
5
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#define APIC_ID_MASK (0xF<<24)
7
8static inline unsigned get_apic_id(unsigned long x)
9{
Siddha, Suresh B58d5fa72007-10-17 18:04:33 +020010 unsigned int ver = GET_APIC_VERSION(apic_read(APIC_LVR));
11 if (APIC_XAPIC(ver))
12 return (((x)>>24)&0xFF);
13 else
14 return (((x)>>24)&0xF);
Linus Torvalds1da177e2005-04-16 15:20:36 -070015}
16
17#define GET_APIC_ID(x) get_apic_id(x)
18
19#endif