x86: clean up the APIC_DEST_LOGICAL logic
[linux-2.6-block.git] / arch / x86 / include / asm / bigsmp / apic.h
1 #ifndef __ASM_MACH_APIC_H
2 #define __ASM_MACH_APIC_H
3
4 #define xapic_phys_to_log_apicid(cpu) (per_cpu(x86_bios_cpu_apicid, cpu))
5
6 static inline int bigsmp_apic_id_registered(void)
7 {
8         return 1;
9 }
10
11 static inline const cpumask_t *bigsmp_target_cpus(void)
12 {
13 #ifdef CONFIG_SMP
14         return &cpu_online_map;
15 #else
16         return &cpumask_of_cpu(0);
17 #endif
18 }
19
20 #define APIC_DFR_VALUE          (APIC_DFR_FLAT)
21 #define NO_BALANCE_IRQ          (0)
22
23 static inline unsigned long check_apicid_used(physid_mask_t bitmap, int apicid)
24 {
25         return (0);
26 }
27
28 static inline unsigned long check_apicid_present(int bit)
29 {
30         return (1);
31 }
32
33 static inline unsigned long calculate_ldr(int cpu)
34 {
35         unsigned long val, id;
36         val = apic_read(APIC_LDR) & ~APIC_LDR_MASK;
37         id = xapic_phys_to_log_apicid(cpu);
38         val |= SET_APIC_LOGICAL_ID(id);
39         return val;
40 }
41
42 /*
43  * Set up the logical destination ID.
44  *
45  * Intel recommends to set DFR, LDR and TPR before enabling
46  * an APIC.  See e.g. "AP-388 82489DX User's Manual" (Intel
47  * document number 292116).  So here it goes...
48  */
49 static inline void init_apic_ldr(void)
50 {
51         unsigned long val;
52         int cpu = smp_processor_id();
53
54         apic_write(APIC_DFR, APIC_DFR_VALUE);
55         val = calculate_ldr(cpu);
56         apic_write(APIC_LDR, val);
57 }
58
59 static inline void setup_apic_routing(void)
60 {
61         printk("Enabling APIC mode:  %s.  Using %d I/O APICs\n",
62                 "Physflat", nr_ioapics);
63 }
64
65 static inline int multi_timer_check(int apic, int irq)
66 {
67         return (0);
68 }
69
70 static inline int apicid_to_node(int logical_apicid)
71 {
72         return apicid_2_node[hard_smp_processor_id()];
73 }
74
75 static inline int cpu_present_to_apicid(int mps_cpu)
76 {
77         if (mps_cpu < nr_cpu_ids)
78                 return (int) per_cpu(x86_bios_cpu_apicid, mps_cpu);
79
80         return BAD_APICID;
81 }
82
83 static inline physid_mask_t apicid_to_cpu_present(int phys_apicid)
84 {
85         return physid_mask_of_physid(phys_apicid);
86 }
87
88 extern u8 cpu_2_logical_apicid[];
89 /* Mapping from cpu number to logical apicid */
90 static inline int cpu_to_logical_apicid(int cpu)
91 {
92         if (cpu >= nr_cpu_ids)
93                 return BAD_APICID;
94         return cpu_physical_id(cpu);
95 }
96
97 static inline physid_mask_t ioapic_phys_id_map(physid_mask_t phys_map)
98 {
99         /* For clustered we don't have a good way to do this yet - hack */
100         return physids_promote(0xFFL);
101 }
102
103 static inline void setup_portio_remap(void)
104 {
105 }
106
107 static inline void enable_apic_mode(void)
108 {
109 }
110
111 static inline int check_phys_apicid_present(int boot_cpu_physical_apicid)
112 {
113         return (1);
114 }
115
116 /* As we are using single CPU as destination, pick only one CPU here */
117 static inline unsigned int cpu_mask_to_apicid(const cpumask_t *cpumask)
118 {
119         int cpu;
120         int apicid;     
121
122         cpu = first_cpu(*cpumask);
123         apicid = cpu_to_logical_apicid(cpu);
124         return apicid;
125 }
126
127 static inline unsigned int cpu_mask_to_apicid_and(const struct cpumask *cpumask,
128                                                   const struct cpumask *andmask)
129 {
130         int cpu;
131
132         /*
133          * We're using fixed IRQ delivery, can only return one phys APIC ID.
134          * May as well be the first.
135          */
136         for_each_cpu_and(cpu, cpumask, andmask)
137                 if (cpumask_test_cpu(cpu, cpu_online_mask))
138                         break;
139         if (cpu < nr_cpu_ids)
140                 return cpu_to_logical_apicid(cpu);
141
142         return BAD_APICID;
143 }
144
145 static inline u32 phys_pkg_id(u32 cpuid_apic, int index_msb)
146 {
147         return cpuid_apic >> index_msb;
148 }
149
150 #endif /* __ASM_MACH_APIC_H */