1 #ifndef __ASM_MACH_APIC_H
2 #define __ASM_MACH_APIC_H
5 #define SEQUENTIAL_APICID
6 #ifdef SEQUENTIAL_APICID
7 #define xapic_phys_to_log_apicid(phys_apic) ( (1ul << ((phys_apic) & 0x3)) |\
8 ((phys_apic<<2) & (~0xf)) )
10 #define xapic_phys_to_log_apicid(phys_apic) ( (1ul << ((phys_apic) & 0x3)) |\
11 ((phys_apic) & (~0xf)) )
14 #define NO_BALANCE_IRQ (1)
15 #define esr_disable (1)
17 #define NO_IOAPIC_CHECK (0)
19 static inline int apic_id_registered(void)
24 #define APIC_DFR_VALUE (APIC_DFR_CLUSTER)
25 /* Round robin the irqs amoung the online cpus */
26 static inline cpumask_t
target_cpus(void)
28 static unsigned long cpu
= NR_CPUS
;
31 cpu
= first_cpu(cpu_online_map
);
33 cpu
= next_cpu(cpu
, cpu_online_map
);
34 } while (cpu
>= NR_CPUS
);
35 return cpumask_of_cpu(cpu
);
37 #define TARGET_CPUS (target_cpus())
39 #define INT_DELIVERY_MODE dest_Fixed
40 #define INT_DEST_MODE 1 /* logical delivery broadcast to all procs */
42 static inline unsigned long check_apicid_used(physid_mask_t bitmap
, int apicid
)
47 /* we don't use the phys_cpu_present_map to indicate apicid presence */
48 static inline unsigned long check_apicid_present(int bit
)
53 #define apicid_cluster(apicid) (apicid & 0xF0)
55 static inline unsigned long calculate_ldr(unsigned long old
)
58 id
= xapic_phys_to_log_apicid(hard_smp_processor_id());
59 return ((old
& ~APIC_LDR_MASK
) | SET_APIC_LOGICAL_ID(id
));
63 * Set up the logical destination ID.
65 * Intel recommends to set DFR, LDR and TPR before enabling
66 * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
67 * document number 292116). So here it goes...
69 static inline void init_apic_ldr(void)
73 apic_write_around(APIC_DFR
, APIC_DFR_VALUE
);
74 val
= apic_read(APIC_LDR
) & ~APIC_LDR_MASK
;
75 val
= calculate_ldr(val
);
76 apic_write_around(APIC_LDR
, val
);
79 static inline void clustered_apic_check(void)
81 printk("Enabling APIC mode: %s. Using %d I/O APICs\n",
82 "Cluster", nr_ioapics
);
85 static inline int multi_timer_check(int apic
, int irq
)
90 static inline int apicid_to_node(int logical_apicid
)
95 extern u8 bios_cpu_apicid
[];
97 static inline int cpu_present_to_apicid(int mps_cpu
)
99 if (mps_cpu
< NR_CPUS
)
100 return (int)bios_cpu_apicid
[mps_cpu
];
105 static inline physid_mask_t
apicid_to_cpu_present(int phys_apicid
)
107 return physid_mask_of_physid(phys_apicid
);
110 extern u8 cpu_2_logical_apicid
[];
111 /* Mapping from cpu number to logical apicid */
112 static inline int cpu_to_logical_apicid(int cpu
)
116 return (int)cpu_2_logical_apicid
[cpu
];
119 static inline int mpc_apic_id(struct mpc_config_processor
*m
,
120 struct mpc_config_translation
*translation_record
)
122 printk("Processor #%d %ld:%ld APIC version %d\n",
124 (m
->mpc_cpufeature
& CPU_FAMILY_MASK
) >> 8,
125 (m
->mpc_cpufeature
& CPU_MODEL_MASK
) >> 4,
127 return m
->mpc_apicid
;
130 static inline physid_mask_t
ioapic_phys_id_map(physid_mask_t phys_map
)
132 /* For clustered we don't have a good way to do this yet - hack */
133 return physids_promote(0xFUL
);
136 #define WAKE_SECONDARY_VIA_INIT
138 static inline void setup_portio_remap(void)
142 static inline void enable_apic_mode(void)
146 static inline int check_phys_apicid_present(int boot_cpu_physical_apicid
)
151 /* As we are using single CPU as destination, pick only one CPU here */
152 static inline unsigned int cpu_mask_to_apicid(cpumask_t cpumask
)
157 cpu
= first_cpu(cpumask
);
158 apicid
= cpu_to_logical_apicid(cpu
);
162 static inline u32
phys_pkg_id(u32 cpuid_apic
, int index_msb
)
164 return cpuid_apic
>> index_msb
;
167 #endif /* __ASM_MACH_APIC_H */