blob: 908cb37da171ebed1a361203dc520c15e4e42736 [file] [log] [blame]
Jiang Liu74afab72014-10-27 16:12:00 +08001/*
2 * Local APIC related interfaces to support IOAPIC, MSI, HT_IRQ etc.
3 *
4 * Copyright (C) 1997, 1998, 1999, 2000, 2009 Ingo Molnar, Hajnalka Szabo
5 * Moved from arch/x86/kernel/apic/io_apic.c.
Jiang Liub5dc8e62015-04-13 14:11:24 +08006 * Jiang Liu <jiang.liu@linux.intel.com>
7 * Enable support of hierarchical irqdomains
Jiang Liu74afab72014-10-27 16:12:00 +08008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13#include <linux/interrupt.h>
14#include <linux/init.h>
15#include <linux/compiler.h>
Jiang Liu74afab72014-10-27 16:12:00 +080016#include <linux/slab.h>
Jiang Liud746d1e2015-04-14 10:30:09 +080017#include <asm/irqdomain.h>
Jiang Liu74afab72014-10-27 16:12:00 +080018#include <asm/hw_irq.h>
19#include <asm/apic.h>
20#include <asm/i8259.h>
21#include <asm/desc.h>
22#include <asm/irq_remapping.h>
23
Jiang Liu7f3262e2015-04-14 10:30:03 +080024struct apic_chip_data {
25 struct irq_cfg cfg;
26 cpumask_var_t domain;
27 cpumask_var_t old_domain;
28 u8 move_in_progress : 1;
29};
30
Jiang Liub5dc8e62015-04-13 14:11:24 +080031struct irq_domain *x86_vector_domain;
Jake Oshinsc8f3e512015-12-10 17:52:59 +000032EXPORT_SYMBOL_GPL(x86_vector_domain);
Jiang Liu74afab72014-10-27 16:12:00 +080033static DEFINE_RAW_SPINLOCK(vector_lock);
Jiang Liuf7fa7ae2015-04-14 10:30:10 +080034static cpumask_var_t vector_cpumask;
Jiang Liub5dc8e62015-04-13 14:11:24 +080035static struct irq_chip lapic_controller;
Jiang Liu13315322015-04-13 14:11:56 +080036#ifdef CONFIG_X86_IO_APIC
Jiang Liu7f3262e2015-04-14 10:30:03 +080037static struct apic_chip_data *legacy_irq_data[NR_IRQS_LEGACY];
Jiang Liu13315322015-04-13 14:11:56 +080038#endif
Jiang Liu74afab72014-10-27 16:12:00 +080039
40void lock_vector_lock(void)
41{
42 /* Used to the online set of cpus does not change
43 * during assign_irq_vector.
44 */
45 raw_spin_lock(&vector_lock);
46}
47
48void unlock_vector_lock(void)
49{
50 raw_spin_unlock(&vector_lock);
51}
52
Jiang Liu7f3262e2015-04-14 10:30:03 +080053static struct apic_chip_data *apic_chip_data(struct irq_data *irq_data)
Jiang Liu74afab72014-10-27 16:12:00 +080054{
Jiang Liub5dc8e62015-04-13 14:11:24 +080055 if (!irq_data)
56 return NULL;
57
58 while (irq_data->parent_data)
59 irq_data = irq_data->parent_data;
60
Jiang Liu74afab72014-10-27 16:12:00 +080061 return irq_data->chip_data;
62}
63
Jiang Liu7f3262e2015-04-14 10:30:03 +080064struct irq_cfg *irqd_cfg(struct irq_data *irq_data)
Jiang Liu74afab72014-10-27 16:12:00 +080065{
Jiang Liu7f3262e2015-04-14 10:30:03 +080066 struct apic_chip_data *data = apic_chip_data(irq_data);
Jiang Liu74afab72014-10-27 16:12:00 +080067
Jiang Liu7f3262e2015-04-14 10:30:03 +080068 return data ? &data->cfg : NULL;
69}
Jake Oshinsc8f3e512015-12-10 17:52:59 +000070EXPORT_SYMBOL_GPL(irqd_cfg);
Jiang Liu7f3262e2015-04-14 10:30:03 +080071
72struct irq_cfg *irq_cfg(unsigned int irq)
73{
74 return irqd_cfg(irq_get_irq_data(irq));
75}
76
77static struct apic_chip_data *alloc_apic_chip_data(int node)
78{
79 struct apic_chip_data *data;
80
81 data = kzalloc_node(sizeof(*data), GFP_KERNEL, node);
82 if (!data)
Jiang Liu74afab72014-10-27 16:12:00 +080083 return NULL;
Jiang Liu7f3262e2015-04-14 10:30:03 +080084 if (!zalloc_cpumask_var_node(&data->domain, GFP_KERNEL, node))
85 goto out_data;
86 if (!zalloc_cpumask_var_node(&data->old_domain, GFP_KERNEL, node))
Jiang Liu74afab72014-10-27 16:12:00 +080087 goto out_domain;
Jiang Liu7f3262e2015-04-14 10:30:03 +080088 return data;
Jiang Liu74afab72014-10-27 16:12:00 +080089out_domain:
Jiang Liu7f3262e2015-04-14 10:30:03 +080090 free_cpumask_var(data->domain);
91out_data:
92 kfree(data);
Jiang Liu74afab72014-10-27 16:12:00 +080093 return NULL;
94}
95
Jiang Liu7f3262e2015-04-14 10:30:03 +080096static void free_apic_chip_data(struct apic_chip_data *data)
Jiang Liu74afab72014-10-27 16:12:00 +080097{
Jiang Liu7f3262e2015-04-14 10:30:03 +080098 if (data) {
99 free_cpumask_var(data->domain);
100 free_cpumask_var(data->old_domain);
101 kfree(data);
Jiang Liub5dc8e62015-04-13 14:11:24 +0800102 }
Jiang Liu74afab72014-10-27 16:12:00 +0800103}
104
Jiang Liu7f3262e2015-04-14 10:30:03 +0800105static int __assign_irq_vector(int irq, struct apic_chip_data *d,
106 const struct cpumask *mask)
Jiang Liu74afab72014-10-27 16:12:00 +0800107{
108 /*
109 * NOTE! The local APIC isn't very good at handling
110 * multiple interrupts at the same interrupt level.
111 * As the interrupt level is determined by taking the
112 * vector number and shifting that right by 4, we
113 * want to spread these out a bit so that they don't
114 * all fall in the same interrupt level.
115 *
116 * Also, we've got to be careful not to trash gate
117 * 0x80, because int 0x80 is hm, kind of importantish. ;)
118 */
119 static int current_vector = FIRST_EXTERNAL_VECTOR + VECTOR_OFFSET_START;
120 static int current_offset = VECTOR_OFFSET_START % 16;
121 int cpu, err;
Jiang Liu74afab72014-10-27 16:12:00 +0800122
Jiang Liu7f3262e2015-04-14 10:30:03 +0800123 if (d->move_in_progress)
Jiang Liu74afab72014-10-27 16:12:00 +0800124 return -EBUSY;
125
Jiang Liu74afab72014-10-27 16:12:00 +0800126 /* Only try and allocate irqs on cpus that are present */
127 err = -ENOSPC;
Jiang Liu7f3262e2015-04-14 10:30:03 +0800128 cpumask_clear(d->old_domain);
Jiang Liu74afab72014-10-27 16:12:00 +0800129 cpu = cpumask_first_and(mask, cpu_online_mask);
130 while (cpu < nr_cpu_ids) {
131 int new_cpu, vector, offset;
132
Jiang Liuf7fa7ae2015-04-14 10:30:10 +0800133 apic->vector_allocation_domain(cpu, vector_cpumask, mask);
Jiang Liu74afab72014-10-27 16:12:00 +0800134
Jiang Liuf7fa7ae2015-04-14 10:30:10 +0800135 if (cpumask_subset(vector_cpumask, d->domain)) {
Jiang Liu74afab72014-10-27 16:12:00 +0800136 err = 0;
Jiang Liuf7fa7ae2015-04-14 10:30:10 +0800137 if (cpumask_equal(vector_cpumask, d->domain))
Jiang Liu74afab72014-10-27 16:12:00 +0800138 break;
139 /*
140 * New cpumask using the vector is a proper subset of
141 * the current in use mask. So cleanup the vector
142 * allocation for the members that are not used anymore.
143 */
Jiang Liuf7fa7ae2015-04-14 10:30:10 +0800144 cpumask_andnot(d->old_domain, d->domain,
145 vector_cpumask);
Jiang Liu7f3262e2015-04-14 10:30:03 +0800146 d->move_in_progress =
147 cpumask_intersects(d->old_domain, cpu_online_mask);
Jiang Liuf7fa7ae2015-04-14 10:30:10 +0800148 cpumask_and(d->domain, d->domain, vector_cpumask);
Jiang Liu74afab72014-10-27 16:12:00 +0800149 break;
150 }
151
152 vector = current_vector;
153 offset = current_offset;
154next:
155 vector += 16;
156 if (vector >= first_system_vector) {
157 offset = (offset + 1) % 16;
158 vector = FIRST_EXTERNAL_VECTOR + offset;
159 }
160
161 if (unlikely(current_vector == vector)) {
Jiang Liuf7fa7ae2015-04-14 10:30:10 +0800162 cpumask_or(d->old_domain, d->old_domain,
163 vector_cpumask);
164 cpumask_andnot(vector_cpumask, mask, d->old_domain);
165 cpu = cpumask_first_and(vector_cpumask,
166 cpu_online_mask);
Jiang Liu74afab72014-10-27 16:12:00 +0800167 continue;
168 }
169
170 if (test_bit(vector, used_vectors))
171 goto next;
172
Jiang Liuf7fa7ae2015-04-14 10:30:10 +0800173 for_each_cpu_and(new_cpu, vector_cpumask, cpu_online_mask) {
Thomas Gleixnera782a7e2015-08-02 20:38:27 +0000174 if (!IS_ERR_OR_NULL(per_cpu(vector_irq, new_cpu)[vector]))
Jiang Liu74afab72014-10-27 16:12:00 +0800175 goto next;
176 }
177 /* Found one! */
178 current_vector = vector;
179 current_offset = offset;
Jiang Liu7f3262e2015-04-14 10:30:03 +0800180 if (d->cfg.vector) {
181 cpumask_copy(d->old_domain, d->domain);
182 d->move_in_progress =
183 cpumask_intersects(d->old_domain, cpu_online_mask);
Jiang Liu74afab72014-10-27 16:12:00 +0800184 }
Jiang Liuf7fa7ae2015-04-14 10:30:10 +0800185 for_each_cpu_and(new_cpu, vector_cpumask, cpu_online_mask)
Thomas Gleixnera782a7e2015-08-02 20:38:27 +0000186 per_cpu(vector_irq, new_cpu)[vector] = irq_to_desc(irq);
Jiang Liu7f3262e2015-04-14 10:30:03 +0800187 d->cfg.vector = vector;
Jiang Liuf7fa7ae2015-04-14 10:30:10 +0800188 cpumask_copy(d->domain, vector_cpumask);
Jiang Liu74afab72014-10-27 16:12:00 +0800189 err = 0;
190 break;
191 }
Jiang Liu74afab72014-10-27 16:12:00 +0800192
Jiang Liu5f0052f2015-04-13 14:11:23 +0800193 if (!err) {
194 /* cache destination APIC IDs into cfg->dest_apicid */
Jiang Liu7f3262e2015-04-14 10:30:03 +0800195 err = apic->cpu_mask_to_apicid_and(mask, d->domain,
196 &d->cfg.dest_apicid);
Jiang Liu5f0052f2015-04-13 14:11:23 +0800197 }
198
Jiang Liu74afab72014-10-27 16:12:00 +0800199 return err;
200}
201
Jiang Liu7f3262e2015-04-14 10:30:03 +0800202static int assign_irq_vector(int irq, struct apic_chip_data *data,
Jiang Liuf9705102015-04-14 10:30:00 +0800203 const struct cpumask *mask)
Jiang Liu74afab72014-10-27 16:12:00 +0800204{
205 int err;
206 unsigned long flags;
207
208 raw_spin_lock_irqsave(&vector_lock, flags);
Jiang Liu7f3262e2015-04-14 10:30:03 +0800209 err = __assign_irq_vector(irq, data, mask);
Jiang Liu74afab72014-10-27 16:12:00 +0800210 raw_spin_unlock_irqrestore(&vector_lock, flags);
211 return err;
212}
213
Jiang Liu486ca532015-05-07 10:53:56 +0800214static int assign_irq_vector_policy(int irq, int node,
215 struct apic_chip_data *data,
216 struct irq_alloc_info *info)
217{
218 if (info && info->mask)
219 return assign_irq_vector(irq, data, info->mask);
220 if (node != NUMA_NO_NODE &&
221 assign_irq_vector(irq, data, cpumask_of_node(node)) == 0)
222 return 0;
223 return assign_irq_vector(irq, data, apic->target_cpus());
224}
225
Jiang Liu7f3262e2015-04-14 10:30:03 +0800226static void clear_irq_vector(int irq, struct apic_chip_data *data)
Jiang Liu74afab72014-10-27 16:12:00 +0800227{
Thomas Gleixnera782a7e2015-08-02 20:38:27 +0000228 struct irq_desc *desc;
Jiang Liu74afab72014-10-27 16:12:00 +0800229 unsigned long flags;
Thomas Gleixnera782a7e2015-08-02 20:38:27 +0000230 int cpu, vector;
Jiang Liu74afab72014-10-27 16:12:00 +0800231
232 raw_spin_lock_irqsave(&vector_lock, flags);
Jiang Liu7f3262e2015-04-14 10:30:03 +0800233 BUG_ON(!data->cfg.vector);
Jiang Liu74afab72014-10-27 16:12:00 +0800234
Jiang Liu7f3262e2015-04-14 10:30:03 +0800235 vector = data->cfg.vector;
236 for_each_cpu_and(cpu, data->domain, cpu_online_mask)
Thomas Gleixner7276c6a2015-08-02 20:38:25 +0000237 per_cpu(vector_irq, cpu)[vector] = VECTOR_UNUSED;
Jiang Liu74afab72014-10-27 16:12:00 +0800238
Jiang Liu7f3262e2015-04-14 10:30:03 +0800239 data->cfg.vector = 0;
240 cpumask_clear(data->domain);
Jiang Liu74afab72014-10-27 16:12:00 +0800241
Jiang Liu7f3262e2015-04-14 10:30:03 +0800242 if (likely(!data->move_in_progress)) {
Jiang Liu74afab72014-10-27 16:12:00 +0800243 raw_spin_unlock_irqrestore(&vector_lock, flags);
244 return;
245 }
246
Thomas Gleixnera782a7e2015-08-02 20:38:27 +0000247 desc = irq_to_desc(irq);
Jiang Liu7f3262e2015-04-14 10:30:03 +0800248 for_each_cpu_and(cpu, data->old_domain, cpu_online_mask) {
Jiang Liu74afab72014-10-27 16:12:00 +0800249 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS;
250 vector++) {
Thomas Gleixnera782a7e2015-08-02 20:38:27 +0000251 if (per_cpu(vector_irq, cpu)[vector] != desc)
Jiang Liu74afab72014-10-27 16:12:00 +0800252 continue;
Thomas Gleixner7276c6a2015-08-02 20:38:25 +0000253 per_cpu(vector_irq, cpu)[vector] = VECTOR_UNUSED;
Jiang Liu74afab72014-10-27 16:12:00 +0800254 break;
255 }
256 }
Jiang Liu7f3262e2015-04-14 10:30:03 +0800257 data->move_in_progress = 0;
Jiang Liu74afab72014-10-27 16:12:00 +0800258 raw_spin_unlock_irqrestore(&vector_lock, flags);
259}
260
Jiang Liub5dc8e62015-04-13 14:11:24 +0800261void init_irq_alloc_info(struct irq_alloc_info *info,
262 const struct cpumask *mask)
263{
264 memset(info, 0, sizeof(*info));
265 info->mask = mask;
266}
267
268void copy_irq_alloc_info(struct irq_alloc_info *dst, struct irq_alloc_info *src)
269{
270 if (src)
271 *dst = *src;
272 else
273 memset(dst, 0, sizeof(*dst));
274}
275
Jiang Liub5dc8e62015-04-13 14:11:24 +0800276static void x86_vector_free_irqs(struct irq_domain *domain,
277 unsigned int virq, unsigned int nr_irqs)
278{
279 struct irq_data *irq_data;
280 int i;
281
282 for (i = 0; i < nr_irqs; i++) {
283 irq_data = irq_domain_get_irq_data(x86_vector_domain, virq + i);
284 if (irq_data && irq_data->chip_data) {
Jiang Liub5dc8e62015-04-13 14:11:24 +0800285 clear_irq_vector(virq + i, irq_data->chip_data);
Jiang Liu7f3262e2015-04-14 10:30:03 +0800286 free_apic_chip_data(irq_data->chip_data);
Jiang Liu13315322015-04-13 14:11:56 +0800287#ifdef CONFIG_X86_IO_APIC
288 if (virq + i < nr_legacy_irqs())
Jiang Liu7f3262e2015-04-14 10:30:03 +0800289 legacy_irq_data[virq + i] = NULL;
Jiang Liu13315322015-04-13 14:11:56 +0800290#endif
Jiang Liub5dc8e62015-04-13 14:11:24 +0800291 irq_domain_reset_irq_data(irq_data);
292 }
293 }
294}
295
296static int x86_vector_alloc_irqs(struct irq_domain *domain, unsigned int virq,
297 unsigned int nr_irqs, void *arg)
298{
299 struct irq_alloc_info *info = arg;
Jiang Liu7f3262e2015-04-14 10:30:03 +0800300 struct apic_chip_data *data;
Jiang Liub5dc8e62015-04-13 14:11:24 +0800301 struct irq_data *irq_data;
Jiang Liu5f2dbbc2015-06-01 16:05:14 +0800302 int i, err, node;
Jiang Liub5dc8e62015-04-13 14:11:24 +0800303
304 if (disable_apic)
305 return -ENXIO;
306
307 /* Currently vector allocator can't guarantee contiguous allocations */
308 if ((info->flags & X86_IRQ_ALLOC_CONTIGUOUS_VECTORS) && nr_irqs > 1)
309 return -ENOSYS;
310
Jiang Liub5dc8e62015-04-13 14:11:24 +0800311 for (i = 0; i < nr_irqs; i++) {
312 irq_data = irq_domain_get_irq_data(domain, virq + i);
313 BUG_ON(!irq_data);
Jiang Liu5f2dbbc2015-06-01 16:05:14 +0800314 node = irq_data_get_node(irq_data);
Jiang Liu13315322015-04-13 14:11:56 +0800315#ifdef CONFIG_X86_IO_APIC
Jiang Liu7f3262e2015-04-14 10:30:03 +0800316 if (virq + i < nr_legacy_irqs() && legacy_irq_data[virq + i])
317 data = legacy_irq_data[virq + i];
Jiang Liu13315322015-04-13 14:11:56 +0800318 else
319#endif
Jiang Liu5f2dbbc2015-06-01 16:05:14 +0800320 data = alloc_apic_chip_data(node);
Jiang Liu7f3262e2015-04-14 10:30:03 +0800321 if (!data) {
Jiang Liub5dc8e62015-04-13 14:11:24 +0800322 err = -ENOMEM;
323 goto error;
324 }
325
326 irq_data->chip = &lapic_controller;
Jiang Liu7f3262e2015-04-14 10:30:03 +0800327 irq_data->chip_data = data;
Jiang Liub5dc8e62015-04-13 14:11:24 +0800328 irq_data->hwirq = virq + i;
Linus Torvalds43af9872015-09-01 15:20:51 -0700329 err = assign_irq_vector_policy(virq + i, node, data, info);
Jiang Liub5dc8e62015-04-13 14:11:24 +0800330 if (err)
331 goto error;
332 }
333
334 return 0;
335
336error:
337 x86_vector_free_irqs(domain, virq, i + 1);
338 return err;
339}
340
Thomas Gleixnereb18cf52015-05-05 11:10:11 +0200341static const struct irq_domain_ops x86_vector_domain_ops = {
342 .alloc = x86_vector_alloc_irqs,
343 .free = x86_vector_free_irqs,
Jiang Liub5dc8e62015-04-13 14:11:24 +0800344};
345
Jiang Liu11d686e2014-10-27 16:12:05 +0800346int __init arch_probe_nr_irqs(void)
347{
348 int nr;
349
350 if (nr_irqs > (NR_VECTORS * nr_cpu_ids))
351 nr_irqs = NR_VECTORS * nr_cpu_ids;
352
353 nr = (gsi_top + nr_legacy_irqs()) + 8 * nr_cpu_ids;
354#if defined(CONFIG_PCI_MSI) || defined(CONFIG_HT_IRQ)
355 /*
356 * for MSI and HT dyn irq
357 */
358 if (gsi_top <= NR_IRQS_LEGACY)
359 nr += 8 * nr_cpu_ids;
360 else
361 nr += gsi_top * 16;
362#endif
363 if (nr < nr_irqs)
364 nr_irqs = nr;
365
Vitaly Kuznetsov8c058b02015-11-03 10:40:14 +0100366 /*
367 * We don't know if PIC is present at this point so we need to do
368 * probe() to get the right number of legacy IRQs.
369 */
370 return legacy_pic->probe();
Jiang Liu11d686e2014-10-27 16:12:05 +0800371}
372
Jiang Liu13315322015-04-13 14:11:56 +0800373#ifdef CONFIG_X86_IO_APIC
374static void init_legacy_irqs(void)
375{
376 int i, node = cpu_to_node(0);
Jiang Liu7f3262e2015-04-14 10:30:03 +0800377 struct apic_chip_data *data;
Jiang Liu13315322015-04-13 14:11:56 +0800378
379 /*
380 * For legacy IRQ's, start with assigning irq0 to irq15 to
Ingo Molnar191a66352015-05-11 16:05:09 +0200381 * ISA_IRQ_VECTOR(i) for all cpu's.
Jiang Liu13315322015-04-13 14:11:56 +0800382 */
383 for (i = 0; i < nr_legacy_irqs(); i++) {
Jiang Liu7f3262e2015-04-14 10:30:03 +0800384 data = legacy_irq_data[i] = alloc_apic_chip_data(node);
385 BUG_ON(!data);
Ingo Molnar191a66352015-05-11 16:05:09 +0200386
387 data->cfg.vector = ISA_IRQ_VECTOR(i);
Jiang Liu7f3262e2015-04-14 10:30:03 +0800388 cpumask_setall(data->domain);
389 irq_set_chip_data(i, data);
Jiang Liu13315322015-04-13 14:11:56 +0800390 }
391}
392#else
393static void init_legacy_irqs(void) { }
394#endif
395
Jiang Liu11d686e2014-10-27 16:12:05 +0800396int __init arch_early_irq_init(void)
397{
Jiang Liu13315322015-04-13 14:11:56 +0800398 init_legacy_irqs();
399
Jiang Liub5dc8e62015-04-13 14:11:24 +0800400 x86_vector_domain = irq_domain_add_tree(NULL, &x86_vector_domain_ops,
401 NULL);
402 BUG_ON(x86_vector_domain == NULL);
403 irq_set_default_host(x86_vector_domain);
404
Jiang Liu52f518a2015-04-13 14:11:35 +0800405 arch_init_msi_domain(x86_vector_domain);
Jiang Liu49e07d82015-04-13 14:11:43 +0800406 arch_init_htirq_domain(x86_vector_domain);
Jiang Liu52f518a2015-04-13 14:11:35 +0800407
Jiang Liuf7fa7ae2015-04-14 10:30:10 +0800408 BUG_ON(!alloc_cpumask_var(&vector_cpumask, GFP_KERNEL));
409
Jiang Liu11d686e2014-10-27 16:12:05 +0800410 return arch_early_ioapic_init();
411}
412
Thomas Gleixnera782a7e2015-08-02 20:38:27 +0000413/* Initialize vector_irq on a new cpu */
Jiang Liu74afab72014-10-27 16:12:00 +0800414static void __setup_vector_irq(int cpu)
415{
Jiang Liu7f3262e2015-04-14 10:30:03 +0800416 struct apic_chip_data *data;
Thomas Gleixnera782a7e2015-08-02 20:38:27 +0000417 struct irq_desc *desc;
418 int irq, vector;
Jiang Liu74afab72014-10-27 16:12:00 +0800419
Jiang Liu74afab72014-10-27 16:12:00 +0800420 /* Mark the inuse vectors */
Thomas Gleixnera782a7e2015-08-02 20:38:27 +0000421 for_each_irq_desc(irq, desc) {
422 struct irq_data *idata = irq_desc_get_irq_data(desc);
Jiang Liu74afab72014-10-27 16:12:00 +0800423
Thomas Gleixnera782a7e2015-08-02 20:38:27 +0000424 data = apic_chip_data(idata);
425 if (!data || !cpumask_test_cpu(cpu, data->domain))
Jiang Liu74afab72014-10-27 16:12:00 +0800426 continue;
Jiang Liu7f3262e2015-04-14 10:30:03 +0800427 vector = data->cfg.vector;
Thomas Gleixnera782a7e2015-08-02 20:38:27 +0000428 per_cpu(vector_irq, cpu)[vector] = desc;
Jiang Liu74afab72014-10-27 16:12:00 +0800429 }
430 /* Mark the free vectors */
431 for (vector = 0; vector < NR_VECTORS; ++vector) {
Thomas Gleixnera782a7e2015-08-02 20:38:27 +0000432 desc = per_cpu(vector_irq, cpu)[vector];
433 if (IS_ERR_OR_NULL(desc))
Jiang Liu74afab72014-10-27 16:12:00 +0800434 continue;
435
Thomas Gleixnera782a7e2015-08-02 20:38:27 +0000436 data = apic_chip_data(irq_desc_get_irq_data(desc));
Jiang Liu7f3262e2015-04-14 10:30:03 +0800437 if (!cpumask_test_cpu(cpu, data->domain))
Thomas Gleixner7276c6a2015-08-02 20:38:25 +0000438 per_cpu(vector_irq, cpu)[vector] = VECTOR_UNUSED;
Jiang Liu74afab72014-10-27 16:12:00 +0800439 }
Jiang Liu74afab72014-10-27 16:12:00 +0800440}
441
442/*
Thomas Gleixner5a3f75e2015-07-05 17:12:32 +0000443 * Setup the vector to irq mappings. Must be called with vector_lock held.
Jiang Liu74afab72014-10-27 16:12:00 +0800444 */
445void setup_vector_irq(int cpu)
446{
447 int irq;
448
Thomas Gleixner5a3f75e2015-07-05 17:12:32 +0000449 lockdep_assert_held(&vector_lock);
Jiang Liu74afab72014-10-27 16:12:00 +0800450 /*
451 * On most of the platforms, legacy PIC delivers the interrupts on the
452 * boot cpu. But there are certain platforms where PIC interrupts are
453 * delivered to multiple cpu's. If the legacy IRQ is handled by the
454 * legacy PIC, for the new cpu that is coming online, setup the static
455 * legacy vector to irq mapping:
456 */
457 for (irq = 0; irq < nr_legacy_irqs(); irq++)
Thomas Gleixnera782a7e2015-08-02 20:38:27 +0000458 per_cpu(vector_irq, cpu)[ISA_IRQ_VECTOR(irq)] = irq_to_desc(irq);
Jiang Liu74afab72014-10-27 16:12:00 +0800459
460 __setup_vector_irq(cpu);
461}
462
Jiang Liu7f3262e2015-04-14 10:30:03 +0800463static int apic_retrigger_irq(struct irq_data *irq_data)
Jiang Liu74afab72014-10-27 16:12:00 +0800464{
Jiang Liu7f3262e2015-04-14 10:30:03 +0800465 struct apic_chip_data *data = apic_chip_data(irq_data);
Jiang Liu74afab72014-10-27 16:12:00 +0800466 unsigned long flags;
467 int cpu;
468
469 raw_spin_lock_irqsave(&vector_lock, flags);
Jiang Liu7f3262e2015-04-14 10:30:03 +0800470 cpu = cpumask_first_and(data->domain, cpu_online_mask);
471 apic->send_IPI_mask(cpumask_of(cpu), data->cfg.vector);
Jiang Liu74afab72014-10-27 16:12:00 +0800472 raw_spin_unlock_irqrestore(&vector_lock, flags);
473
474 return 1;
475}
476
477void apic_ack_edge(struct irq_data *data)
478{
Jiang Liua9786092014-10-27 16:12:07 +0800479 irq_complete_move(irqd_cfg(data));
Jiang Liu74afab72014-10-27 16:12:00 +0800480 irq_move_irq(data);
481 ack_APIC_irq();
482}
483
Jiang Liu68f9f442015-04-14 10:30:01 +0800484static int apic_set_affinity(struct irq_data *irq_data,
485 const struct cpumask *dest, bool force)
Jiang Liub5dc8e62015-04-13 14:11:24 +0800486{
Jiang Liu7f3262e2015-04-14 10:30:03 +0800487 struct apic_chip_data *data = irq_data->chip_data;
Jiang Liub5dc8e62015-04-13 14:11:24 +0800488 int err, irq = irq_data->irq;
489
490 if (!config_enabled(CONFIG_SMP))
491 return -EPERM;
492
493 if (!cpumask_intersects(dest, cpu_online_mask))
494 return -EINVAL;
495
Jiang Liu7f3262e2015-04-14 10:30:03 +0800496 err = assign_irq_vector(irq, data, dest);
Jiang Liub5dc8e62015-04-13 14:11:24 +0800497 if (err) {
Jiang Liuc149e4c2015-06-03 11:46:22 +0800498 if (assign_irq_vector(irq, data,
Jiang Liu9df872f2015-06-03 11:47:50 +0800499 irq_data_get_affinity_mask(irq_data)))
Jiang Liub5dc8e62015-04-13 14:11:24 +0800500 pr_err("Failed to recover vector for irq %d\n", irq);
501 return err;
502 }
503
504 return IRQ_SET_MASK_OK;
505}
506
507static struct irq_chip lapic_controller = {
508 .irq_ack = apic_ack_edge,
Jiang Liu68f9f442015-04-14 10:30:01 +0800509 .irq_set_affinity = apic_set_affinity,
Jiang Liub5dc8e62015-04-13 14:11:24 +0800510 .irq_retrigger = apic_retrigger_irq,
511};
512
Jiang Liu74afab72014-10-27 16:12:00 +0800513#ifdef CONFIG_SMP
Jiang Liu7f3262e2015-04-14 10:30:03 +0800514static void __send_cleanup_vector(struct apic_chip_data *data)
Jiang Liu74afab72014-10-27 16:12:00 +0800515{
516 cpumask_var_t cleanup_mask;
517
518 if (unlikely(!alloc_cpumask_var(&cleanup_mask, GFP_ATOMIC))) {
519 unsigned int i;
520
Jiang Liu7f3262e2015-04-14 10:30:03 +0800521 for_each_cpu_and(i, data->old_domain, cpu_online_mask)
Jiang Liu74afab72014-10-27 16:12:00 +0800522 apic->send_IPI_mask(cpumask_of(i),
523 IRQ_MOVE_CLEANUP_VECTOR);
524 } else {
Jiang Liu7f3262e2015-04-14 10:30:03 +0800525 cpumask_and(cleanup_mask, data->old_domain, cpu_online_mask);
Jiang Liu74afab72014-10-27 16:12:00 +0800526 apic->send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
527 free_cpumask_var(cleanup_mask);
528 }
Jiang Liu7f3262e2015-04-14 10:30:03 +0800529 data->move_in_progress = 0;
Jiang Liu74afab72014-10-27 16:12:00 +0800530}
531
Jiang Liuc6c20022015-04-14 10:30:02 +0800532void send_cleanup_vector(struct irq_cfg *cfg)
533{
Jiang Liu7f3262e2015-04-14 10:30:03 +0800534 struct apic_chip_data *data;
535
536 data = container_of(cfg, struct apic_chip_data, cfg);
537 if (data->move_in_progress)
538 __send_cleanup_vector(data);
Jiang Liuc6c20022015-04-14 10:30:02 +0800539}
540
Jiang Liu74afab72014-10-27 16:12:00 +0800541asmlinkage __visible void smp_irq_move_cleanup_interrupt(void)
542{
543 unsigned vector, me;
544
Thomas Gleixner6af7faf2015-05-15 15:48:25 +0200545 entering_ack_irq();
Jiang Liu74afab72014-10-27 16:12:00 +0800546
Thomas Gleixnerdf54c492015-08-02 20:38:23 +0000547 /* Prevent vectors vanishing under us */
548 raw_spin_lock(&vector_lock);
549
Jiang Liu74afab72014-10-27 16:12:00 +0800550 me = smp_processor_id();
551 for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
Jiang Liu7f3262e2015-04-14 10:30:03 +0800552 struct apic_chip_data *data;
Thomas Gleixnera782a7e2015-08-02 20:38:27 +0000553 struct irq_desc *desc;
554 unsigned int irr;
Jiang Liu74afab72014-10-27 16:12:00 +0800555
Thomas Gleixnerdf54c492015-08-02 20:38:23 +0000556 retry:
Thomas Gleixnera782a7e2015-08-02 20:38:27 +0000557 desc = __this_cpu_read(vector_irq[vector]);
558 if (IS_ERR_OR_NULL(desc))
Jiang Liu74afab72014-10-27 16:12:00 +0800559 continue;
560
Thomas Gleixnerdf54c492015-08-02 20:38:23 +0000561 if (!raw_spin_trylock(&desc->lock)) {
562 raw_spin_unlock(&vector_lock);
563 cpu_relax();
564 raw_spin_lock(&vector_lock);
565 goto retry;
566 }
Jiang Liu74afab72014-10-27 16:12:00 +0800567
Thomas Gleixnera782a7e2015-08-02 20:38:27 +0000568 data = apic_chip_data(irq_desc_get_irq_data(desc));
Jiang Liu7f3262e2015-04-14 10:30:03 +0800569 if (!data)
Thomas Gleixnerdf54c492015-08-02 20:38:23 +0000570 goto unlock;
Jiang Liu74afab72014-10-27 16:12:00 +0800571
572 /*
573 * Check if the irq migration is in progress. If so, we
574 * haven't received the cleanup request yet for this irq.
575 */
Jiang Liu7f3262e2015-04-14 10:30:03 +0800576 if (data->move_in_progress)
Jiang Liu74afab72014-10-27 16:12:00 +0800577 goto unlock;
578
Jiang Liu7f3262e2015-04-14 10:30:03 +0800579 if (vector == data->cfg.vector &&
580 cpumask_test_cpu(me, data->domain))
Jiang Liu74afab72014-10-27 16:12:00 +0800581 goto unlock;
582
583 irr = apic_read(APIC_IRR + (vector / 32 * 0x10));
584 /*
585 * Check if the vector that needs to be cleanedup is
586 * registered at the cpu's IRR. If so, then this is not
587 * the best time to clean it up. Lets clean it up in the
588 * next attempt by sending another IRQ_MOVE_CLEANUP_VECTOR
589 * to myself.
590 */
591 if (irr & (1 << (vector % 32))) {
592 apic->send_IPI_self(IRQ_MOVE_CLEANUP_VECTOR);
593 goto unlock;
594 }
Thomas Gleixner7276c6a2015-08-02 20:38:25 +0000595 __this_cpu_write(vector_irq[vector], VECTOR_UNUSED);
Jiang Liu74afab72014-10-27 16:12:00 +0800596unlock:
597 raw_spin_unlock(&desc->lock);
598 }
599
Thomas Gleixnerdf54c492015-08-02 20:38:23 +0000600 raw_spin_unlock(&vector_lock);
601
Thomas Gleixner6af7faf2015-05-15 15:48:25 +0200602 exiting_irq();
Jiang Liu74afab72014-10-27 16:12:00 +0800603}
604
605static void __irq_complete_move(struct irq_cfg *cfg, unsigned vector)
606{
607 unsigned me;
Jiang Liu7f3262e2015-04-14 10:30:03 +0800608 struct apic_chip_data *data;
Jiang Liu74afab72014-10-27 16:12:00 +0800609
Jiang Liu7f3262e2015-04-14 10:30:03 +0800610 data = container_of(cfg, struct apic_chip_data, cfg);
611 if (likely(!data->move_in_progress))
Jiang Liu74afab72014-10-27 16:12:00 +0800612 return;
613
614 me = smp_processor_id();
Jiang Liu7f3262e2015-04-14 10:30:03 +0800615 if (vector == data->cfg.vector && cpumask_test_cpu(me, data->domain))
616 __send_cleanup_vector(data);
Jiang Liu74afab72014-10-27 16:12:00 +0800617}
618
619void irq_complete_move(struct irq_cfg *cfg)
620{
621 __irq_complete_move(cfg, ~get_irq_regs()->orig_ax);
622}
623
624void irq_force_complete_move(int irq)
625{
626 struct irq_cfg *cfg = irq_cfg(irq);
627
Jiang Liu7f3262e2015-04-14 10:30:03 +0800628 if (cfg)
629 __irq_complete_move(cfg, cfg->vector);
Jiang Liu74afab72014-10-27 16:12:00 +0800630}
Jiang Liu74afab72014-10-27 16:12:00 +0800631#endif
632
Jiang Liu74afab72014-10-27 16:12:00 +0800633static void __init print_APIC_field(int base)
634{
635 int i;
636
637 printk(KERN_DEBUG);
638
639 for (i = 0; i < 8; i++)
640 pr_cont("%08x", apic_read(base + i*0x10));
641
642 pr_cont("\n");
643}
644
645static void __init print_local_APIC(void *dummy)
646{
647 unsigned int i, v, ver, maxlvt;
648 u64 icr;
649
Jiang Liu849d3562014-10-27 16:12:01 +0800650 pr_debug("printing local APIC contents on CPU#%d/%d:\n",
651 smp_processor_id(), hard_smp_processor_id());
Jiang Liu74afab72014-10-27 16:12:00 +0800652 v = apic_read(APIC_ID);
Jiang Liu849d3562014-10-27 16:12:01 +0800653 pr_info("... APIC ID: %08x (%01x)\n", v, read_apic_id());
Jiang Liu74afab72014-10-27 16:12:00 +0800654 v = apic_read(APIC_LVR);
Jiang Liu849d3562014-10-27 16:12:01 +0800655 pr_info("... APIC VERSION: %08x\n", v);
Jiang Liu74afab72014-10-27 16:12:00 +0800656 ver = GET_APIC_VERSION(v);
657 maxlvt = lapic_get_maxlvt();
658
659 v = apic_read(APIC_TASKPRI);
Jiang Liu849d3562014-10-27 16:12:01 +0800660 pr_debug("... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
Jiang Liu74afab72014-10-27 16:12:00 +0800661
662 /* !82489DX */
663 if (APIC_INTEGRATED(ver)) {
664 if (!APIC_XAPIC(ver)) {
665 v = apic_read(APIC_ARBPRI);
Jiang Liu849d3562014-10-27 16:12:01 +0800666 pr_debug("... APIC ARBPRI: %08x (%02x)\n",
667 v, v & APIC_ARBPRI_MASK);
Jiang Liu74afab72014-10-27 16:12:00 +0800668 }
669 v = apic_read(APIC_PROCPRI);
Jiang Liu849d3562014-10-27 16:12:01 +0800670 pr_debug("... APIC PROCPRI: %08x\n", v);
Jiang Liu74afab72014-10-27 16:12:00 +0800671 }
672
673 /*
674 * Remote read supported only in the 82489DX and local APIC for
675 * Pentium processors.
676 */
677 if (!APIC_INTEGRATED(ver) || maxlvt == 3) {
678 v = apic_read(APIC_RRR);
Jiang Liu849d3562014-10-27 16:12:01 +0800679 pr_debug("... APIC RRR: %08x\n", v);
Jiang Liu74afab72014-10-27 16:12:00 +0800680 }
681
682 v = apic_read(APIC_LDR);
Jiang Liu849d3562014-10-27 16:12:01 +0800683 pr_debug("... APIC LDR: %08x\n", v);
Jiang Liu74afab72014-10-27 16:12:00 +0800684 if (!x2apic_enabled()) {
685 v = apic_read(APIC_DFR);
Jiang Liu849d3562014-10-27 16:12:01 +0800686 pr_debug("... APIC DFR: %08x\n", v);
Jiang Liu74afab72014-10-27 16:12:00 +0800687 }
688 v = apic_read(APIC_SPIV);
Jiang Liu849d3562014-10-27 16:12:01 +0800689 pr_debug("... APIC SPIV: %08x\n", v);
Jiang Liu74afab72014-10-27 16:12:00 +0800690
Jiang Liu849d3562014-10-27 16:12:01 +0800691 pr_debug("... APIC ISR field:\n");
Jiang Liu74afab72014-10-27 16:12:00 +0800692 print_APIC_field(APIC_ISR);
Jiang Liu849d3562014-10-27 16:12:01 +0800693 pr_debug("... APIC TMR field:\n");
Jiang Liu74afab72014-10-27 16:12:00 +0800694 print_APIC_field(APIC_TMR);
Jiang Liu849d3562014-10-27 16:12:01 +0800695 pr_debug("... APIC IRR field:\n");
Jiang Liu74afab72014-10-27 16:12:00 +0800696 print_APIC_field(APIC_IRR);
697
698 /* !82489DX */
699 if (APIC_INTEGRATED(ver)) {
700 /* Due to the Pentium erratum 3AP. */
701 if (maxlvt > 3)
702 apic_write(APIC_ESR, 0);
703
704 v = apic_read(APIC_ESR);
Jiang Liu849d3562014-10-27 16:12:01 +0800705 pr_debug("... APIC ESR: %08x\n", v);
Jiang Liu74afab72014-10-27 16:12:00 +0800706 }
707
708 icr = apic_icr_read();
Jiang Liu849d3562014-10-27 16:12:01 +0800709 pr_debug("... APIC ICR: %08x\n", (u32)icr);
710 pr_debug("... APIC ICR2: %08x\n", (u32)(icr >> 32));
Jiang Liu74afab72014-10-27 16:12:00 +0800711
712 v = apic_read(APIC_LVTT);
Jiang Liu849d3562014-10-27 16:12:01 +0800713 pr_debug("... APIC LVTT: %08x\n", v);
Jiang Liu74afab72014-10-27 16:12:00 +0800714
715 if (maxlvt > 3) {
716 /* PC is LVT#4. */
717 v = apic_read(APIC_LVTPC);
Jiang Liu849d3562014-10-27 16:12:01 +0800718 pr_debug("... APIC LVTPC: %08x\n", v);
Jiang Liu74afab72014-10-27 16:12:00 +0800719 }
720 v = apic_read(APIC_LVT0);
Jiang Liu849d3562014-10-27 16:12:01 +0800721 pr_debug("... APIC LVT0: %08x\n", v);
Jiang Liu74afab72014-10-27 16:12:00 +0800722 v = apic_read(APIC_LVT1);
Jiang Liu849d3562014-10-27 16:12:01 +0800723 pr_debug("... APIC LVT1: %08x\n", v);
Jiang Liu74afab72014-10-27 16:12:00 +0800724
725 if (maxlvt > 2) {
726 /* ERR is LVT#3. */
727 v = apic_read(APIC_LVTERR);
Jiang Liu849d3562014-10-27 16:12:01 +0800728 pr_debug("... APIC LVTERR: %08x\n", v);
Jiang Liu74afab72014-10-27 16:12:00 +0800729 }
730
731 v = apic_read(APIC_TMICT);
Jiang Liu849d3562014-10-27 16:12:01 +0800732 pr_debug("... APIC TMICT: %08x\n", v);
Jiang Liu74afab72014-10-27 16:12:00 +0800733 v = apic_read(APIC_TMCCT);
Jiang Liu849d3562014-10-27 16:12:01 +0800734 pr_debug("... APIC TMCCT: %08x\n", v);
Jiang Liu74afab72014-10-27 16:12:00 +0800735 v = apic_read(APIC_TDCR);
Jiang Liu849d3562014-10-27 16:12:01 +0800736 pr_debug("... APIC TDCR: %08x\n", v);
Jiang Liu74afab72014-10-27 16:12:00 +0800737
738 if (boot_cpu_has(X86_FEATURE_EXTAPIC)) {
739 v = apic_read(APIC_EFEAT);
740 maxlvt = (v >> 16) & 0xff;
Jiang Liu849d3562014-10-27 16:12:01 +0800741 pr_debug("... APIC EFEAT: %08x\n", v);
Jiang Liu74afab72014-10-27 16:12:00 +0800742 v = apic_read(APIC_ECTRL);
Jiang Liu849d3562014-10-27 16:12:01 +0800743 pr_debug("... APIC ECTRL: %08x\n", v);
Jiang Liu74afab72014-10-27 16:12:00 +0800744 for (i = 0; i < maxlvt; i++) {
745 v = apic_read(APIC_EILVTn(i));
Jiang Liu849d3562014-10-27 16:12:01 +0800746 pr_debug("... APIC EILVT%d: %08x\n", i, v);
Jiang Liu74afab72014-10-27 16:12:00 +0800747 }
748 }
749 pr_cont("\n");
750}
751
752static void __init print_local_APICs(int maxcpu)
753{
754 int cpu;
755
756 if (!maxcpu)
757 return;
758
759 preempt_disable();
760 for_each_online_cpu(cpu) {
761 if (cpu >= maxcpu)
762 break;
763 smp_call_function_single(cpu, print_local_APIC, NULL, 1);
764 }
765 preempt_enable();
766}
767
768static void __init print_PIC(void)
769{
770 unsigned int v;
771 unsigned long flags;
772
773 if (!nr_legacy_irqs())
774 return;
775
Jiang Liu849d3562014-10-27 16:12:01 +0800776 pr_debug("\nprinting PIC contents\n");
Jiang Liu74afab72014-10-27 16:12:00 +0800777
778 raw_spin_lock_irqsave(&i8259A_lock, flags);
779
780 v = inb(0xa1) << 8 | inb(0x21);
Jiang Liu849d3562014-10-27 16:12:01 +0800781 pr_debug("... PIC IMR: %04x\n", v);
Jiang Liu74afab72014-10-27 16:12:00 +0800782
783 v = inb(0xa0) << 8 | inb(0x20);
Jiang Liu849d3562014-10-27 16:12:01 +0800784 pr_debug("... PIC IRR: %04x\n", v);
Jiang Liu74afab72014-10-27 16:12:00 +0800785
786 outb(0x0b, 0xa0);
787 outb(0x0b, 0x20);
788 v = inb(0xa0) << 8 | inb(0x20);
789 outb(0x0a, 0xa0);
790 outb(0x0a, 0x20);
791
792 raw_spin_unlock_irqrestore(&i8259A_lock, flags);
793
Jiang Liu849d3562014-10-27 16:12:01 +0800794 pr_debug("... PIC ISR: %04x\n", v);
Jiang Liu74afab72014-10-27 16:12:00 +0800795
796 v = inb(0x4d1) << 8 | inb(0x4d0);
Jiang Liu849d3562014-10-27 16:12:01 +0800797 pr_debug("... PIC ELCR: %04x\n", v);
Jiang Liu74afab72014-10-27 16:12:00 +0800798}
799
800static int show_lapic __initdata = 1;
801static __init int setup_show_lapic(char *arg)
802{
803 int num = -1;
804
805 if (strcmp(arg, "all") == 0) {
806 show_lapic = CONFIG_NR_CPUS;
807 } else {
808 get_option(&arg, &num);
809 if (num >= 0)
810 show_lapic = num;
811 }
812
813 return 1;
814}
815__setup("show_lapic=", setup_show_lapic);
816
817static int __init print_ICs(void)
818{
819 if (apic_verbosity == APIC_QUIET)
820 return 0;
821
822 print_PIC();
823
824 /* don't print out if apic is not there */
825 if (!cpu_has_apic && !apic_from_smp_config())
826 return 0;
827
828 print_local_APICs(show_lapic);
829 print_IO_APICs();
830
831 return 0;
832}
833
834late_initcall(print_ICs);