diff options
author | Ingo Molnar <mingo@elte.hu> | 2010-03-09 11:11:53 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2010-03-09 11:11:53 -0500 |
commit | 548b84166917d6f5e2296123b85ad24aecd3801d (patch) | |
tree | 0ab0300e23a02df0fe3c0579627e4998bb122c00 /arch/x86/kernel/apic | |
parent | cfb581bcd4f8c158c6f2b48bf5e232bb9e6855c0 (diff) | |
parent | 57d54889cd00db2752994b389ba714138652e60c (diff) |
Merge commit 'v2.6.34-rc1' into perf/urgent
Conflicts:
tools/perf/util/probe-event.c
Merge reason: Pick up -rc1 and resolve the conflict as well.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/apic')
-rw-r--r-- | arch/x86/kernel/apic/apic.c | 10 | ||||
-rw-r--r-- | arch/x86/kernel/apic/io_apic.c | 342 | ||||
-rw-r--r-- | arch/x86/kernel/apic/nmi.c | 14 | ||||
-rw-r--r-- | arch/x86/kernel/apic/numaq_32.c | 3 | ||||
-rw-r--r-- | arch/x86/kernel/apic/x2apic_uv_x.c | 89 |
5 files changed, 293 insertions, 165 deletions
diff --git a/arch/x86/kernel/apic/apic.c b/arch/x86/kernel/apic/apic.c index dfca210f6a10..00187f1fcfb7 100644 --- a/arch/x86/kernel/apic/apic.c +++ b/arch/x86/kernel/apic/apic.c | |||
@@ -581,7 +581,7 @@ calibrate_by_pmtimer(long deltapm, long *delta, long *deltatsc) | |||
581 | res = (((u64)(*deltatsc)) * pm_100ms); | 581 | res = (((u64)(*deltatsc)) * pm_100ms); |
582 | do_div(res, deltapm); | 582 | do_div(res, deltapm); |
583 | apic_printk(APIC_VERBOSE, "TSC delta adjusted to " | 583 | apic_printk(APIC_VERBOSE, "TSC delta adjusted to " |
584 | "PM-Timer: %lu (%ld) \n", | 584 | "PM-Timer: %lu (%ld)\n", |
585 | (unsigned long)res, *deltatsc); | 585 | (unsigned long)res, *deltatsc); |
586 | *deltatsc = (long)res; | 586 | *deltatsc = (long)res; |
587 | } | 587 | } |
@@ -1390,7 +1390,7 @@ void __init enable_IR_x2apic(void) | |||
1390 | } | 1390 | } |
1391 | 1391 | ||
1392 | local_irq_save(flags); | 1392 | local_irq_save(flags); |
1393 | mask_8259A(); | 1393 | legacy_pic->mask_all(); |
1394 | mask_IO_APIC_setup(ioapic_entries); | 1394 | mask_IO_APIC_setup(ioapic_entries); |
1395 | 1395 | ||
1396 | if (dmar_table_init_ret) | 1396 | if (dmar_table_init_ret) |
@@ -1422,7 +1422,7 @@ void __init enable_IR_x2apic(void) | |||
1422 | nox2apic: | 1422 | nox2apic: |
1423 | if (!ret) /* IR enabling failed */ | 1423 | if (!ret) /* IR enabling failed */ |
1424 | restore_IO_APIC_setup(ioapic_entries); | 1424 | restore_IO_APIC_setup(ioapic_entries); |
1425 | unmask_8259A(); | 1425 | legacy_pic->restore_mask(); |
1426 | local_irq_restore(flags); | 1426 | local_irq_restore(flags); |
1427 | 1427 | ||
1428 | out: | 1428 | out: |
@@ -2018,7 +2018,7 @@ static int lapic_resume(struct sys_device *dev) | |||
2018 | } | 2018 | } |
2019 | 2019 | ||
2020 | mask_IO_APIC_setup(ioapic_entries); | 2020 | mask_IO_APIC_setup(ioapic_entries); |
2021 | mask_8259A(); | 2021 | legacy_pic->mask_all(); |
2022 | } | 2022 | } |
2023 | 2023 | ||
2024 | if (x2apic_mode) | 2024 | if (x2apic_mode) |
@@ -2062,7 +2062,7 @@ static int lapic_resume(struct sys_device *dev) | |||
2062 | 2062 | ||
2063 | if (intr_remapping_enabled) { | 2063 | if (intr_remapping_enabled) { |
2064 | reenable_intr_remapping(x2apic_mode); | 2064 | reenable_intr_remapping(x2apic_mode); |
2065 | unmask_8259A(); | 2065 | legacy_pic->restore_mask(); |
2066 | restore_IO_APIC_setup(ioapic_entries); | 2066 | restore_IO_APIC_setup(ioapic_entries); |
2067 | free_ioapic_entries(ioapic_entries); | 2067 | free_ioapic_entries(ioapic_entries); |
2068 | } | 2068 | } |
diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c index 53243ca7816d..e4e0ddcb1546 100644 --- a/arch/x86/kernel/apic/io_apic.c +++ b/arch/x86/kernel/apic/io_apic.c | |||
@@ -73,8 +73,8 @@ | |||
73 | */ | 73 | */ |
74 | int sis_apic_bug = -1; | 74 | int sis_apic_bug = -1; |
75 | 75 | ||
76 | static DEFINE_SPINLOCK(ioapic_lock); | 76 | static DEFINE_RAW_SPINLOCK(ioapic_lock); |
77 | static DEFINE_SPINLOCK(vector_lock); | 77 | static DEFINE_RAW_SPINLOCK(vector_lock); |
78 | 78 | ||
79 | /* | 79 | /* |
80 | * # of IRQ routing registers | 80 | * # of IRQ routing registers |
@@ -94,8 +94,6 @@ struct mpc_intsrc mp_irqs[MAX_IRQ_SOURCES]; | |||
94 | /* # of MP IRQ source entries */ | 94 | /* # of MP IRQ source entries */ |
95 | int mp_irq_entries; | 95 | int mp_irq_entries; |
96 | 96 | ||
97 | /* Number of legacy interrupts */ | ||
98 | static int nr_legacy_irqs __read_mostly = NR_IRQS_LEGACY; | ||
99 | /* GSI interrupts */ | 97 | /* GSI interrupts */ |
100 | static int nr_irqs_gsi = NR_IRQS_LEGACY; | 98 | static int nr_irqs_gsi = NR_IRQS_LEGACY; |
101 | 99 | ||
@@ -140,33 +138,10 @@ static struct irq_pin_list *get_one_free_irq_2_pin(int node) | |||
140 | 138 | ||
141 | /* irq_cfg is indexed by the sum of all RTEs in all I/O APICs. */ | 139 | /* irq_cfg is indexed by the sum of all RTEs in all I/O APICs. */ |
142 | #ifdef CONFIG_SPARSE_IRQ | 140 | #ifdef CONFIG_SPARSE_IRQ |
143 | static struct irq_cfg irq_cfgx[] = { | 141 | static struct irq_cfg irq_cfgx[NR_IRQS_LEGACY]; |
144 | #else | 142 | #else |
145 | static struct irq_cfg irq_cfgx[NR_IRQS] = { | 143 | static struct irq_cfg irq_cfgx[NR_IRQS]; |
146 | #endif | 144 | #endif |
147 | [0] = { .vector = IRQ0_VECTOR, }, | ||
148 | [1] = { .vector = IRQ1_VECTOR, }, | ||
149 | [2] = { .vector = IRQ2_VECTOR, }, | ||
150 | [3] = { .vector = IRQ3_VECTOR, }, | ||
151 | [4] = { .vector = IRQ4_VECTOR, }, | ||
152 | [5] = { .vector = IRQ5_VECTOR, }, | ||
153 | [6] = { .vector = IRQ6_VECTOR, }, | ||
154 | [7] = { .vector = IRQ7_VECTOR, }, | ||
155 | [8] = { .vector = IRQ8_VECTOR, }, | ||
156 | [9] = { .vector = IRQ9_VECTOR, }, | ||
157 | [10] = { .vector = IRQ10_VECTOR, }, | ||
158 | [11] = { .vector = IRQ11_VECTOR, }, | ||
159 | [12] = { .vector = IRQ12_VECTOR, }, | ||
160 | [13] = { .vector = IRQ13_VECTOR, }, | ||
161 | [14] = { .vector = IRQ14_VECTOR, }, | ||
162 | [15] = { .vector = IRQ15_VECTOR, }, | ||
163 | }; | ||
164 | |||
165 | void __init io_apic_disable_legacy(void) | ||
166 | { | ||
167 | nr_legacy_irqs = 0; | ||
168 | nr_irqs_gsi = 0; | ||
169 | } | ||
170 | 145 | ||
171 | int __init arch_early_irq_init(void) | 146 | int __init arch_early_irq_init(void) |
172 | { | 147 | { |
@@ -176,6 +151,11 @@ int __init arch_early_irq_init(void) | |||
176 | int node; | 151 | int node; |
177 | int i; | 152 | int i; |
178 | 153 | ||
154 | if (!legacy_pic->nr_legacy_irqs) { | ||
155 | nr_irqs_gsi = 0; | ||
156 | io_apic_irqs = ~0UL; | ||
157 | } | ||
158 | |||
179 | cfg = irq_cfgx; | 159 | cfg = irq_cfgx; |
180 | count = ARRAY_SIZE(irq_cfgx); | 160 | count = ARRAY_SIZE(irq_cfgx); |
181 | node= cpu_to_node(boot_cpu_id); | 161 | node= cpu_to_node(boot_cpu_id); |
@@ -185,8 +165,14 @@ int __init arch_early_irq_init(void) | |||
185 | desc->chip_data = &cfg[i]; | 165 | desc->chip_data = &cfg[i]; |
186 | zalloc_cpumask_var_node(&cfg[i].domain, GFP_NOWAIT, node); | 166 | zalloc_cpumask_var_node(&cfg[i].domain, GFP_NOWAIT, node); |
187 | zalloc_cpumask_var_node(&cfg[i].old_domain, GFP_NOWAIT, node); | 167 | zalloc_cpumask_var_node(&cfg[i].old_domain, GFP_NOWAIT, node); |
188 | if (i < nr_legacy_irqs) | 168 | /* |
189 | cpumask_setall(cfg[i].domain); | 169 | * For legacy IRQ's, start with assigning irq0 to irq15 to |
170 | * IRQ0_VECTOR to IRQ15_VECTOR on cpu 0. | ||
171 | */ | ||
172 | if (i < legacy_pic->nr_legacy_irqs) { | ||
173 | cfg[i].vector = IRQ0_VECTOR + i; | ||
174 | cpumask_set_cpu(0, cfg[i].domain); | ||
175 | } | ||
190 | } | 176 | } |
191 | 177 | ||
192 | return 0; | 178 | return 0; |
@@ -406,7 +392,7 @@ static bool io_apic_level_ack_pending(struct irq_cfg *cfg) | |||
406 | struct irq_pin_list *entry; | 392 | struct irq_pin_list *entry; |
407 | unsigned long flags; | 393 | unsigned long flags; |
408 | 394 | ||
409 | spin_lock_irqsave(&ioapic_lock, flags); | 395 | raw_spin_lock_irqsave(&ioapic_lock, flags); |
410 | for_each_irq_pin(entry, cfg->irq_2_pin) { | 396 | for_each_irq_pin(entry, cfg->irq_2_pin) { |
411 | unsigned int reg; | 397 | unsigned int reg; |
412 | int pin; | 398 | int pin; |
@@ -415,11 +401,11 @@ static bool io_apic_level_ack_pending(struct irq_cfg *cfg) | |||
415 | reg = io_apic_read(entry->apic, 0x10 + pin*2); | 401 | reg = io_apic_read(entry->apic, 0x10 + pin*2); |
416 | /* Is the remote IRR bit set? */ | 402 | /* Is the remote IRR bit set? */ |
417 | if (reg & IO_APIC_REDIR_REMOTE_IRR) { | 403 | if (reg & IO_APIC_REDIR_REMOTE_IRR) { |
418 | spin_unlock_irqrestore(&ioapic_lock, flags); | 404 | raw_spin_unlock_irqrestore(&ioapic_lock, flags); |
419 | return true; | 405 | return true; |
420 | } | 406 | } |
421 | } | 407 | } |
422 | spin_unlock_irqrestore(&ioapic_lock, flags); | 408 | raw_spin_unlock_irqrestore(&ioapic_lock, flags); |
423 | 409 | ||
424 | return false; | 410 | return false; |
425 | } | 411 | } |
@@ -433,10 +419,10 @@ static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin) | |||
433 | { | 419 | { |
434 | union entry_union eu; | 420 | union entry_union eu; |
435 | unsigned long flags; | 421 | unsigned long flags; |
436 | spin_lock_irqsave(&ioapic_lock, flags); | 422 | raw_spin_lock_irqsave(&ioapic_lock, flags); |
437 | eu.w1 = io_apic_read(apic, 0x10 + 2 * pin); | 423 | eu.w1 = io_apic_read(apic, 0x10 + 2 * pin); |
438 | eu.w2 = io_apic_read(apic, 0x11 + 2 * pin); | 424 | eu.w2 = io_apic_read(apic, 0x11 + 2 * pin); |
439 | spin_unlock_irqrestore(&ioapic_lock, flags); | 425 | raw_spin_unlock_irqrestore(&ioapic_lock, flags); |
440 | return eu.entry; | 426 | return eu.entry; |
441 | } | 427 | } |
442 | 428 | ||
@@ -459,9 +445,9 @@ __ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e) | |||
459 | void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e) | 445 | void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e) |
460 | { | 446 | { |
461 | unsigned long flags; | 447 | unsigned long flags; |
462 | spin_lock_irqsave(&ioapic_lock, flags); | 448 | raw_spin_lock_irqsave(&ioapic_lock, flags); |
463 | __ioapic_write_entry(apic, pin, e); | 449 | __ioapic_write_entry(apic, pin, e); |
464 | spin_unlock_irqrestore(&ioapic_lock, flags); | 450 | raw_spin_unlock_irqrestore(&ioapic_lock, flags); |
465 | } | 451 | } |
466 | 452 | ||
467 | /* | 453 | /* |
@@ -474,10 +460,10 @@ static void ioapic_mask_entry(int apic, int pin) | |||
474 | unsigned long flags; | 460 | unsigned long flags; |
475 | union entry_union eu = { .entry.mask = 1 }; | 461 | union entry_union eu = { .entry.mask = 1 }; |
476 | 462 | ||
477 | spin_lock_irqsave(&ioapic_lock, flags); | 463 | raw_spin_lock_irqsave(&ioapic_lock, flags); |
478 | io_apic_write(apic, 0x10 + 2*pin, eu.w1); | 464 | io_apic_write(apic, 0x10 + 2*pin, eu.w1); |
479 | io_apic_write(apic, 0x11 + 2*pin, eu.w2); | 465 | io_apic_write(apic, 0x11 + 2*pin, eu.w2); |
480 | spin_unlock_irqrestore(&ioapic_lock, flags); | 466 | raw_spin_unlock_irqrestore(&ioapic_lock, flags); |
481 | } | 467 | } |
482 | 468 | ||
483 | /* | 469 | /* |
@@ -604,9 +590,9 @@ static void mask_IO_APIC_irq_desc(struct irq_desc *desc) | |||
604 | 590 | ||
605 | BUG_ON(!cfg); | 591 | BUG_ON(!cfg); |
606 | 592 | ||
607 | spin_lock_irqsave(&ioapic_lock, flags); | 593 | raw_spin_lock_irqsave(&ioapic_lock, flags); |
608 | __mask_IO_APIC_irq(cfg); | 594 | __mask_IO_APIC_irq(cfg); |
609 | spin_unlock_irqrestore(&ioapic_lock, flags); | 595 | raw_spin_unlock_irqrestore(&ioapic_lock, flags); |
610 | } | 596 | } |
611 | 597 | ||
612 | static void unmask_IO_APIC_irq_desc(struct irq_desc *desc) | 598 | static void unmask_IO_APIC_irq_desc(struct irq_desc *desc) |
@@ -614,9 +600,9 @@ static void unmask_IO_APIC_irq_desc(struct irq_desc *desc) | |||
614 | struct irq_cfg *cfg = desc->chip_data; | 600 | struct irq_cfg *cfg = desc->chip_data; |
615 | unsigned long flags; | 601 | unsigned long flags; |
616 | 602 | ||
617 | spin_lock_irqsave(&ioapic_lock, flags); | 603 | raw_spin_lock_irqsave(&ioapic_lock, flags); |
618 | __unmask_IO_APIC_irq(cfg); | 604 | __unmask_IO_APIC_irq(cfg); |
619 | spin_unlock_irqrestore(&ioapic_lock, flags); | 605 | raw_spin_unlock_irqrestore(&ioapic_lock, flags); |
620 | } | 606 | } |
621 | 607 | ||
622 | static void mask_IO_APIC_irq(unsigned int irq) | 608 | static void mask_IO_APIC_irq(unsigned int irq) |
@@ -865,7 +851,7 @@ static int __init find_isa_irq_apic(int irq, int type) | |||
865 | */ | 851 | */ |
866 | static int EISA_ELCR(unsigned int irq) | 852 | static int EISA_ELCR(unsigned int irq) |
867 | { | 853 | { |
868 | if (irq < nr_legacy_irqs) { | 854 | if (irq < legacy_pic->nr_legacy_irqs) { |
869 | unsigned int port = 0x4d0 + (irq >> 3); | 855 | unsigned int port = 0x4d0 + (irq >> 3); |
870 | return (inb(port) >> (irq & 7)) & 1; | 856 | return (inb(port) >> (irq & 7)) & 1; |
871 | } | 857 | } |
@@ -1140,12 +1126,12 @@ void lock_vector_lock(void) | |||
1140 | /* Used to the online set of cpus does not change | 1126 | /* Used to the online set of cpus does not change |
1141 | * during assign_irq_vector. | 1127 | * during assign_irq_vector. |
1142 | */ | 1128 | */ |
1143 | spin_lock(&vector_lock); | 1129 | raw_spin_lock(&vector_lock); |
1144 | } | 1130 | } |
1145 | 1131 | ||
1146 | void unlock_vector_lock(void) | 1132 | void unlock_vector_lock(void) |
1147 | { | 1133 | { |
1148 | spin_unlock(&vector_lock); | 1134 | raw_spin_unlock(&vector_lock); |
1149 | } | 1135 | } |
1150 | 1136 | ||
1151 | static int | 1137 | static int |
@@ -1162,7 +1148,8 @@ __assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask) | |||
1162 | * Also, we've got to be careful not to trash gate | 1148 | * Also, we've got to be careful not to trash gate |
1163 | * 0x80, because int 0x80 is hm, kind of importantish. ;) | 1149 | * 0x80, because int 0x80 is hm, kind of importantish. ;) |
1164 | */ | 1150 | */ |
1165 | static int current_vector = FIRST_DEVICE_VECTOR, current_offset = 0; | 1151 | static int current_vector = FIRST_EXTERNAL_VECTOR + VECTOR_OFFSET_START; |
1152 | static int current_offset = VECTOR_OFFSET_START % 8; | ||
1166 | unsigned int old_vector; | 1153 | unsigned int old_vector; |
1167 | int cpu, err; | 1154 | int cpu, err; |
1168 | cpumask_var_t tmp_mask; | 1155 | cpumask_var_t tmp_mask; |
@@ -1198,7 +1185,7 @@ next: | |||
1198 | if (vector >= first_system_vector) { | 1185 | if (vector >= first_system_vector) { |
1199 | /* If out of vectors on large boxen, must share them. */ | 1186 | /* If out of vectors on large boxen, must share them. */ |
1200 | offset = (offset + 1) % 8; | 1187 | offset = (offset + 1) % 8; |
1201 | vector = FIRST_DEVICE_VECTOR + offset; | 1188 | vector = FIRST_EXTERNAL_VECTOR + offset; |
1202 | } | 1189 | } |
1203 | if (unlikely(current_vector == vector)) | 1190 | if (unlikely(current_vector == vector)) |
1204 | continue; | 1191 | continue; |
@@ -1232,9 +1219,9 @@ int assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask) | |||
1232 | int err; | 1219 | int err; |
1233 | unsigned long flags; | 1220 | unsigned long flags; |
1234 | 1221 | ||
1235 | spin_lock_irqsave(&vector_lock, flags); | 1222 | raw_spin_lock_irqsave(&vector_lock, flags); |
1236 | err = __assign_irq_vector(irq, cfg, mask); | 1223 | err = __assign_irq_vector(irq, cfg, mask); |
1237 | spin_unlock_irqrestore(&vector_lock, flags); | 1224 | raw_spin_unlock_irqrestore(&vector_lock, flags); |
1238 | return err; | 1225 | return err; |
1239 | } | 1226 | } |
1240 | 1227 | ||
@@ -1268,11 +1255,16 @@ static void __clear_irq_vector(int irq, struct irq_cfg *cfg) | |||
1268 | void __setup_vector_irq(int cpu) | 1255 | void __setup_vector_irq(int cpu) |
1269 | { | 1256 | { |
1270 | /* Initialize vector_irq on a new cpu */ | 1257 | /* Initialize vector_irq on a new cpu */ |
1271 | /* This function must be called with vector_lock held */ | ||
1272 | int irq, vector; | 1258 | int irq, vector; |
1273 | struct irq_cfg *cfg; | 1259 | struct irq_cfg *cfg; |
1274 | struct irq_desc *desc; | 1260 | struct irq_desc *desc; |
1275 | 1261 | ||
1262 | /* | ||
1263 | * vector_lock will make sure that we don't run into irq vector | ||
1264 | * assignments that might be happening on another cpu in parallel, | ||
1265 | * while we setup our initial vector to irq mappings. | ||
1266 | */ | ||
1267 | raw_spin_lock(&vector_lock); | ||
1276 | /* Mark the inuse vectors */ | 1268 | /* Mark the inuse vectors */ |
1277 | for_each_irq_desc(irq, desc) { | 1269 | for_each_irq_desc(irq, desc) { |
1278 | cfg = desc->chip_data; | 1270 | cfg = desc->chip_data; |
@@ -1291,6 +1283,7 @@ void __setup_vector_irq(int cpu) | |||
1291 | if (!cpumask_test_cpu(cpu, cfg->domain)) | 1283 | if (!cpumask_test_cpu(cpu, cfg->domain)) |
1292 | per_cpu(vector_irq, cpu)[vector] = -1; | 1284 | per_cpu(vector_irq, cpu)[vector] = -1; |
1293 | } | 1285 | } |
1286 | raw_spin_unlock(&vector_lock); | ||
1294 | } | 1287 | } |
1295 | 1288 | ||
1296 | static struct irq_chip ioapic_chip; | 1289 | static struct irq_chip ioapic_chip; |
@@ -1440,6 +1433,14 @@ static void setup_IO_APIC_irq(int apic_id, int pin, unsigned int irq, struct irq | |||
1440 | 1433 | ||
1441 | cfg = desc->chip_data; | 1434 | cfg = desc->chip_data; |
1442 | 1435 | ||
1436 | /* | ||
1437 | * For legacy irqs, cfg->domain starts with cpu 0 for legacy | ||
1438 | * controllers like 8259. Now that IO-APIC can handle this irq, update | ||
1439 | * the cfg->domain. | ||
1440 | */ | ||
1441 | if (irq < legacy_pic->nr_legacy_irqs && cpumask_test_cpu(0, cfg->domain)) | ||
1442 | apic->vector_allocation_domain(0, cfg->domain); | ||
1443 | |||
1443 | if (assign_irq_vector(irq, cfg, apic->target_cpus())) | 1444 | if (assign_irq_vector(irq, cfg, apic->target_cpus())) |
1444 | return; | 1445 | return; |
1445 | 1446 | ||
@@ -1461,8 +1462,8 @@ static void setup_IO_APIC_irq(int apic_id, int pin, unsigned int irq, struct irq | |||
1461 | } | 1462 | } |
1462 | 1463 | ||
1463 | ioapic_register_intr(irq, desc, trigger); | 1464 | ioapic_register_intr(irq, desc, trigger); |
1464 | if (irq < nr_legacy_irqs) | 1465 | if (irq < legacy_pic->nr_legacy_irqs) |
1465 | disable_8259A_irq(irq); | 1466 | legacy_pic->chip->mask(irq); |
1466 | 1467 | ||
1467 | ioapic_write_entry(apic_id, pin, entry); | 1468 | ioapic_write_entry(apic_id, pin, entry); |
1468 | } | 1469 | } |
@@ -1473,7 +1474,7 @@ static struct { | |||
1473 | 1474 | ||
1474 | static void __init setup_IO_APIC_irqs(void) | 1475 | static void __init setup_IO_APIC_irqs(void) |
1475 | { | 1476 | { |
1476 | int apic_id = 0, pin, idx, irq; | 1477 | int apic_id, pin, idx, irq; |
1477 | int notcon = 0; | 1478 | int notcon = 0; |
1478 | struct irq_desc *desc; | 1479 | struct irq_desc *desc; |
1479 | struct irq_cfg *cfg; | 1480 | struct irq_cfg *cfg; |
@@ -1481,14 +1482,7 @@ static void __init setup_IO_APIC_irqs(void) | |||
1481 | 1482 | ||
1482 | apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n"); | 1483 | apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n"); |
1483 | 1484 | ||
1484 | #ifdef CONFIG_ACPI | 1485 | for (apic_id = 0; apic_id < nr_ioapics; apic_id++) |
1485 | if (!acpi_disabled && acpi_ioapic) { | ||
1486 | apic_id = mp_find_ioapic(0); | ||
1487 | if (apic_id < 0) | ||
1488 | apic_id = 0; | ||
1489 | } | ||
1490 | #endif | ||
1491 | |||
1492 | for (pin = 0; pin < nr_ioapic_registers[apic_id]; pin++) { | 1486 | for (pin = 0; pin < nr_ioapic_registers[apic_id]; pin++) { |
1493 | idx = find_irq_entry(apic_id, pin, mp_INT); | 1487 | idx = find_irq_entry(apic_id, pin, mp_INT); |
1494 | if (idx == -1) { | 1488 | if (idx == -1) { |
@@ -1510,6 +1504,9 @@ static void __init setup_IO_APIC_irqs(void) | |||
1510 | 1504 | ||
1511 | irq = pin_2_irq(idx, apic_id, pin); | 1505 | irq = pin_2_irq(idx, apic_id, pin); |
1512 | 1506 | ||
1507 | if ((apic_id > 0) && (irq > 16)) | ||
1508 | continue; | ||
1509 | |||
1513 | /* | 1510 | /* |
1514 | * Skip the timer IRQ if there's a quirk handler | 1511 | * Skip the timer IRQ if there's a quirk handler |
1515 | * installed and if it returns 1: | 1512 | * installed and if it returns 1: |
@@ -1539,6 +1536,56 @@ static void __init setup_IO_APIC_irqs(void) | |||
1539 | } | 1536 | } |
1540 | 1537 | ||
1541 | /* | 1538 | /* |
1539 | * for the gsit that is not in first ioapic | ||
1540 | * but could not use acpi_register_gsi() | ||
1541 | * like some special sci in IBM x3330 | ||
1542 | */ | ||
1543 | void setup_IO_APIC_irq_extra(u32 gsi) | ||
1544 | { | ||
1545 | int apic_id = 0, pin, idx, irq; | ||
1546 | int node = cpu_to_node(boot_cpu_id); | ||
1547 | struct irq_desc *desc; | ||
1548 | struct irq_cfg *cfg; | ||
1549 | |||
1550 | /* | ||
1551 | * Convert 'gsi' to 'ioapic.pin'. | ||
1552 | */ | ||
1553 | apic_id = mp_find_ioapic(gsi); | ||
1554 | if (apic_id < 0) | ||
1555 | return; | ||
1556 | |||
1557 | pin = mp_find_ioapic_pin(apic_id, gsi); | ||
1558 | idx = find_irq_entry(apic_id, pin, mp_INT); | ||
1559 | if (idx == -1) | ||
1560 | return; | ||
1561 | |||
1562 | irq = pin_2_irq(idx, apic_id, pin); | ||
1563 | #ifdef CONFIG_SPARSE_IRQ | ||
1564 | desc = irq_to_desc(irq); | ||
1565 | if (desc) | ||
1566 | return; | ||
1567 | #endif | ||
1568 | desc = irq_to_desc_alloc_node(irq, node); | ||
1569 | if (!desc) { | ||
1570 | printk(KERN_INFO "can not get irq_desc for %d\n", irq); | ||
1571 | return; | ||
1572 | } | ||
1573 | |||
1574 | cfg = desc->chip_data; | ||
1575 | add_pin_to_irq_node(cfg, node, apic_id, pin); | ||
1576 | |||
1577 | if (test_bit(pin, mp_ioapic_routing[apic_id].pin_programmed)) { | ||
1578 | pr_debug("Pin %d-%d already programmed\n", | ||
1579 | mp_ioapics[apic_id].apicid, pin); | ||
1580 | return; | ||
1581 | } | ||
1582 | set_bit(pin, mp_ioapic_routing[apic_id].pin_programmed); | ||
1583 | |||
1584 | setup_IO_APIC_irq(apic_id, pin, irq, desc, | ||
1585 | irq_trigger(idx), irq_polarity(idx)); | ||
1586 | } | ||
1587 | |||
1588 | /* | ||
1542 | * Set up the timer pin, possibly with the 8259A-master behind. | 1589 | * Set up the timer pin, possibly with the 8259A-master behind. |
1543 | */ | 1590 | */ |
1544 | static void __init setup_timer_IRQ0_pin(unsigned int apic_id, unsigned int pin, | 1591 | static void __init setup_timer_IRQ0_pin(unsigned int apic_id, unsigned int pin, |
@@ -1601,14 +1648,14 @@ __apicdebuginit(void) print_IO_APIC(void) | |||
1601 | 1648 | ||
1602 | for (apic = 0; apic < nr_ioapics; apic++) { | 1649 | for (apic = 0; apic < nr_ioapics; apic++) { |
1603 | 1650 | ||
1604 | spin_lock_irqsave(&ioapic_lock, flags); | 1651 | raw_spin_lock_irqsave(&ioapic_lock, flags); |
1605 | reg_00.raw = io_apic_read(apic, 0); | 1652 | reg_00.raw = io_apic_read(apic, 0); |
1606 | reg_01.raw = io_apic_read(apic, 1); | 1653 | reg_01.raw = io_apic_read(apic, 1); |
1607 | if (reg_01.bits.version >= 0x10) | 1654 | if (reg_01.bits.version >= 0x10) |
1608 | reg_02.raw = io_apic_read(apic, 2); | 1655 | reg_02.raw = io_apic_read(apic, 2); |
1609 | if (reg_01.bits.version >= 0x20) | 1656 | if (reg_01.bits.version >= 0x20) |
1610 | reg_03.raw = io_apic_read(apic, 3); | 1657 | reg_03.raw = io_apic_read(apic, 3); |
1611 | spin_unlock_irqrestore(&ioapic_lock, flags); | 1658 | raw_spin_unlock_irqrestore(&ioapic_lock, flags); |
1612 | 1659 | ||
1613 | printk("\n"); | 1660 | printk("\n"); |
1614 | printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].apicid); | 1661 | printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].apicid); |
@@ -1647,7 +1694,7 @@ __apicdebuginit(void) print_IO_APIC(void) | |||
1647 | printk(KERN_DEBUG ".... IRQ redirection table:\n"); | 1694 | printk(KERN_DEBUG ".... IRQ redirection table:\n"); |
1648 | 1695 | ||
1649 | printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol" | 1696 | printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol" |
1650 | " Stat Dmod Deli Vect: \n"); | 1697 | " Stat Dmod Deli Vect:\n"); |
1651 | 1698 | ||
1652 | for (i = 0; i <= reg_01.bits.entries; i++) { | 1699 | for (i = 0; i <= reg_01.bits.entries; i++) { |
1653 | struct IO_APIC_route_entry entry; | 1700 | struct IO_APIC_route_entry entry; |
@@ -1825,12 +1872,12 @@ __apicdebuginit(void) print_PIC(void) | |||
1825 | unsigned int v; | 1872 | unsigned int v; |
1826 | unsigned long flags; | 1873 | unsigned long flags; |
1827 | 1874 | ||
1828 | if (!nr_legacy_irqs) | 1875 | if (!legacy_pic->nr_legacy_irqs) |
1829 | return; | 1876 | return; |
1830 | 1877 | ||
1831 | printk(KERN_DEBUG "\nprinting PIC contents\n"); | 1878 | printk(KERN_DEBUG "\nprinting PIC contents\n"); |
1832 | 1879 | ||
1833 | spin_lock_irqsave(&i8259A_lock, flags); | 1880 | raw_spin_lock_irqsave(&i8259A_lock, flags); |
1834 | 1881 | ||
1835 | v = inb(0xa1) << 8 | inb(0x21); | 1882 | v = inb(0xa1) << 8 | inb(0x21); |
1836 | printk(KERN_DEBUG "... PIC IMR: %04x\n", v); | 1883 | printk(KERN_DEBUG "... PIC IMR: %04x\n", v); |
@@ -1844,7 +1891,7 @@ __apicdebuginit(void) print_PIC(void) | |||
1844 | outb(0x0a,0xa0); | 1891 | outb(0x0a,0xa0); |
1845 | outb(0x0a,0x20); | 1892 | outb(0x0a,0x20); |
1846 | 1893 | ||
1847 | spin_unlock_irqrestore(&i8259A_lock, flags); | 1894 | raw_spin_unlock_irqrestore(&i8259A_lock, flags); |
1848 | 1895 | ||
1849 | printk(KERN_DEBUG "... PIC ISR: %04x\n", v); | 1896 | printk(KERN_DEBUG "... PIC ISR: %04x\n", v); |
1850 | 1897 | ||
@@ -1903,13 +1950,13 @@ void __init enable_IO_APIC(void) | |||
1903 | * The number of IO-APIC IRQ registers (== #pins): | 1950 | * The number of IO-APIC IRQ registers (== #pins): |
1904 | */ | 1951 | */ |
1905 | for (apic = 0; apic < nr_ioapics; apic++) { | 1952 | for (apic = 0; apic < nr_ioapics; apic++) { |
1906 | spin_lock_irqsave(&ioapic_lock, flags); | 1953 | raw_spin_lock_irqsave(&ioapic_lock, flags); |
1907 | reg_01.raw = io_apic_read(apic, 1); | 1954 | reg_01.raw = io_apic_read(apic, 1); |
1908 | spin_unlock_irqrestore(&ioapic_lock, flags); | 1955 | raw_spin_unlock_irqrestore(&ioapic_lock, flags); |
1909 | nr_ioapic_registers[apic] = reg_01.bits.entries+1; | 1956 | nr_ioapic_registers[apic] = reg_01.bits.entries+1; |
1910 | } | 1957 | } |
1911 | 1958 | ||
1912 | if (!nr_legacy_irqs) | 1959 | if (!legacy_pic->nr_legacy_irqs) |
1913 | return; | 1960 | return; |
1914 | 1961 | ||
1915 | for(apic = 0; apic < nr_ioapics; apic++) { | 1962 | for(apic = 0; apic < nr_ioapics; apic++) { |
@@ -1966,7 +2013,7 @@ void disable_IO_APIC(void) | |||
1966 | */ | 2013 | */ |
1967 | clear_IO_APIC(); | 2014 | clear_IO_APIC(); |
1968 | 2015 | ||
1969 | if (!nr_legacy_irqs) | 2016 | if (!legacy_pic->nr_legacy_irqs) |
1970 | return; | 2017 | return; |
1971 | 2018 | ||
1972 | /* | 2019 | /* |
@@ -2045,9 +2092,9 @@ void __init setup_ioapic_ids_from_mpc(void) | |||
2045 | for (apic_id = 0; apic_id < nr_ioapics; apic_id++) { | 2092 | for (apic_id = 0; apic_id < nr_ioapics; apic_id++) { |
2046 | 2093 | ||
2047 | /* Read the register 0 value */ | 2094 | /* Read the register 0 value */ |
2048 | spin_lock_irqsave(&ioapic_lock, flags); | 2095 | raw_spin_lock_irqsave(&ioapic_lock, flags); |
2049 | reg_00.raw = io_apic_read(apic_id, 0); | 2096 | reg_00.raw = io_apic_read(apic_id, 0); |
2050 | spin_unlock_irqrestore(&ioapic_lock, flags); | 2097 | raw_spin_unlock_irqrestore(&ioapic_lock, flags); |
2051 | 2098 | ||
2052 | old_id = mp_ioapics[apic_id].apicid; | 2099 | old_id = mp_ioapics[apic_id].apicid; |
2053 | 2100 | ||
@@ -2106,16 +2153,16 @@ void __init setup_ioapic_ids_from_mpc(void) | |||
2106 | mp_ioapics[apic_id].apicid); | 2153 | mp_ioapics[apic_id].apicid); |
2107 | 2154 | ||
2108 | reg_00.bits.ID = mp_ioapics[apic_id].apicid; | 2155 | reg_00.bits.ID = mp_ioapics[apic_id].apicid; |
2109 | spin_lock_irqsave(&ioapic_lock, flags); | 2156 | raw_spin_lock_irqsave(&ioapic_lock, flags); |
2110 | io_apic_write(apic_id, 0, reg_00.raw); | 2157 | io_apic_write(apic_id, 0, reg_00.raw); |
2111 | spin_unlock_irqrestore(&ioapic_lock, flags); | 2158 | raw_spin_unlock_irqrestore(&ioapic_lock, flags); |
2112 | 2159 | ||
2113 | /* | 2160 | /* |
2114 | * Sanity check | 2161 | * Sanity check |
2115 | */ | 2162 | */ |
2116 | spin_lock_irqsave(&ioapic_lock, flags); | 2163 | raw_spin_lock_irqsave(&ioapic_lock, flags); |
2117 | reg_00.raw = io_apic_read(apic_id, 0); | 2164 | reg_00.raw = io_apic_read(apic_id, 0); |
2118 | spin_unlock_irqrestore(&ioapic_lock, flags); | 2165 | raw_spin_unlock_irqrestore(&ioapic_lock, flags); |
2119 | if (reg_00.bits.ID != mp_ioapics[apic_id].apicid) | 2166 | if (reg_00.bits.ID != mp_ioapics[apic_id].apicid) |
2120 | printk("could not set ID!\n"); | 2167 | printk("could not set ID!\n"); |
2121 | else | 2168 | else |
@@ -2198,15 +2245,15 @@ static unsigned int startup_ioapic_irq(unsigned int irq) | |||
2198 | unsigned long flags; | 2245 | unsigned long flags; |
2199 | struct irq_cfg *cfg; | 2246 | struct irq_cfg *cfg; |
2200 | 2247 | ||
2201 | spin_lock_irqsave(&ioapic_lock, flags); | 2248 | raw_spin_lock_irqsave(&ioapic_lock, flags); |
2202 | if (irq < nr_legacy_irqs) { | 2249 | if (irq < legacy_pic->nr_legacy_irqs) { |
2203 | disable_8259A_irq(irq); | 2250 | legacy_pic->chip->mask(irq); |
2204 | if (i8259A_irq_pending(irq)) | 2251 | if (legacy_pic->irq_pending(irq)) |
2205 | was_pending = 1; | 2252 | was_pending = 1; |
2206 | } | 2253 | } |
2207 | cfg = irq_cfg(irq); | 2254 | cfg = irq_cfg(irq); |
2208 | __unmask_IO_APIC_irq(cfg); | 2255 | __unmask_IO_APIC_irq(cfg); |
2209 | spin_unlock_irqrestore(&ioapic_lock, flags); | 2256 | raw_spin_unlock_irqrestore(&ioapic_lock, flags); |
2210 | 2257 | ||
2211 | return was_pending; | 2258 | return was_pending; |
2212 | } | 2259 | } |
@@ -2217,9 +2264,9 @@ static int ioapic_retrigger_irq(unsigned int irq) | |||
2217 | struct irq_cfg *cfg = irq_cfg(irq); | 2264 | struct irq_cfg *cfg = irq_cfg(irq); |
2218 | unsigned long flags; | 2265 | unsigned long flags; |
2219 | 2266 | ||
2220 | spin_lock_irqsave(&vector_lock, flags); | 2267 | raw_spin_lock_irqsave(&vector_lock, flags); |
2221 | apic->send_IPI_mask(cpumask_of(cpumask_first(cfg->domain)), cfg->vector); | 2268 | apic->send_IPI_mask(cpumask_of(cpumask_first(cfg->domain)), cfg->vector); |
2222 | spin_unlock_irqrestore(&vector_lock, flags); | 2269 | raw_spin_unlock_irqrestore(&vector_lock, flags); |
2223 | 2270 | ||
2224 | return 1; | 2271 | return 1; |
2225 | } | 2272 | } |
@@ -2312,14 +2359,14 @@ set_ioapic_affinity_irq_desc(struct irq_desc *desc, const struct cpumask *mask) | |||
2312 | irq = desc->irq; | 2359 | irq = desc->irq; |
2313 | cfg = desc->chip_data; | 2360 | cfg = desc->chip_data; |
2314 | 2361 | ||
2315 | spin_lock_irqsave(&ioapic_lock, flags); | 2362 | raw_spin_lock_irqsave(&ioapic_lock, flags); |
2316 | ret = set_desc_affinity(desc, mask, &dest); | 2363 | ret = set_desc_affinity(desc, mask, &dest); |
2317 | if (!ret) { | 2364 | if (!ret) { |
2318 | /* Only the high 8 bits are valid. */ | 2365 | /* Only the high 8 bits are valid. */ |
2319 | dest = SET_APIC_LOGICAL_ID(dest); | 2366 | dest = SET_APIC_LOGICAL_ID(dest); |
2320 | __target_IO_APIC_irq(irq, dest, cfg); | 2367 | __target_IO_APIC_irq(irq, dest, cfg); |
2321 | } | 2368 | } |
2322 | spin_unlock_irqrestore(&ioapic_lock, flags); | 2369 | raw_spin_unlock_irqrestore(&ioapic_lock, flags); |
2323 | 2370 | ||
2324 | return ret; | 2371 | return ret; |
2325 | } | 2372 | } |
@@ -2554,9 +2601,9 @@ static void eoi_ioapic_irq(struct irq_desc *desc) | |||
2554 | irq = desc->irq; | 2601 | irq = desc->irq; |
2555 | cfg = desc->chip_data; | 2602 | cfg = desc->chip_data; |
2556 | 2603 | ||
2557 | spin_lock_irqsave(&ioapic_lock, flags); | 2604 | raw_spin_lock_irqsave(&ioapic_lock, flags); |
2558 | __eoi_ioapic_irq(irq, cfg); | 2605 | __eoi_ioapic_irq(irq, cfg); |
2559 | spin_unlock_irqrestore(&ioapic_lock, flags); | 2606 | raw_spin_unlock_irqrestore(&ioapic_lock, flags); |
2560 | } | 2607 | } |
2561 | 2608 | ||
2562 | static void ack_apic_level(unsigned int irq) | 2609 | static void ack_apic_level(unsigned int irq) |
@@ -2734,8 +2781,8 @@ static inline void init_IO_APIC_traps(void) | |||
2734 | * so default to an old-fashioned 8259 | 2781 | * so default to an old-fashioned 8259 |
2735 | * interrupt if we can.. | 2782 | * interrupt if we can.. |
2736 | */ | 2783 | */ |
2737 | if (irq < nr_legacy_irqs) | 2784 | if (irq < legacy_pic->nr_legacy_irqs) |
2738 | make_8259A_irq(irq); | 2785 | legacy_pic->make_irq(irq); |
2739 | else | 2786 | else |
2740 | /* Strange. Oh, well.. */ | 2787 | /* Strange. Oh, well.. */ |
2741 | desc->chip = &no_irq_chip; | 2788 | desc->chip = &no_irq_chip; |
@@ -2892,7 +2939,7 @@ static inline void __init check_timer(void) | |||
2892 | /* | 2939 | /* |
2893 | * get/set the timer IRQ vector: | 2940 | * get/set the timer IRQ vector: |
2894 | */ | 2941 | */ |
2895 | disable_8259A_irq(0); | 2942 | legacy_pic->chip->mask(0); |
2896 | assign_irq_vector(0, cfg, apic->target_cpus()); | 2943 | assign_irq_vector(0, cfg, apic->target_cpus()); |
2897 | 2944 | ||
2898 | /* | 2945 | /* |
@@ -2905,7 +2952,7 @@ static inline void __init check_timer(void) | |||
2905 | * automatically. | 2952 | * automatically. |
2906 | */ | 2953 | */ |
2907 | apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT); | 2954 | apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT); |
2908 | init_8259A(1); | 2955 | legacy_pic->init(1); |
2909 | #ifdef CONFIG_X86_32 | 2956 | #ifdef CONFIG_X86_32 |
2910 | { | 2957 | { |
2911 | unsigned int ver; | 2958 | unsigned int ver; |
@@ -2964,7 +3011,7 @@ static inline void __init check_timer(void) | |||
2964 | if (timer_irq_works()) { | 3011 | if (timer_irq_works()) { |
2965 | if (nmi_watchdog == NMI_IO_APIC) { | 3012 | if (nmi_watchdog == NMI_IO_APIC) { |
2966 | setup_nmi(); | 3013 | setup_nmi(); |
2967 | enable_8259A_irq(0); | 3014 | legacy_pic->chip->unmask(0); |
2968 | } | 3015 | } |
2969 | if (disable_timer_pin_1 > 0) | 3016 | if (disable_timer_pin_1 > 0) |
2970 | clear_IO_APIC_pin(0, pin1); | 3017 | clear_IO_APIC_pin(0, pin1); |
@@ -2987,14 +3034,14 @@ static inline void __init check_timer(void) | |||
2987 | */ | 3034 | */ |
2988 | replace_pin_at_irq_node(cfg, node, apic1, pin1, apic2, pin2); | 3035 | replace_pin_at_irq_node(cfg, node, apic1, pin1, apic2, pin2); |
2989 | setup_timer_IRQ0_pin(apic2, pin2, cfg->vector); | 3036 | setup_timer_IRQ0_pin(apic2, pin2, cfg->vector); |
2990 | enable_8259A_irq(0); | 3037 | legacy_pic->chip->unmask(0); |
2991 | if (timer_irq_works()) { | 3038 | if (timer_irq_works()) { |
2992 | apic_printk(APIC_QUIET, KERN_INFO "....... works.\n"); | 3039 | apic_printk(APIC_QUIET, KERN_INFO "....... works.\n"); |
2993 | timer_through_8259 = 1; | 3040 | timer_through_8259 = 1; |
2994 | if (nmi_watchdog == NMI_IO_APIC) { | 3041 | if (nmi_watchdog == NMI_IO_APIC) { |
2995 | disable_8259A_irq(0); | 3042 | legacy_pic->chip->mask(0); |
2996 | setup_nmi(); | 3043 | setup_nmi(); |
2997 | enable_8259A_irq(0); | 3044 | legacy_pic->chip->unmask(0); |
2998 | } | 3045 | } |
2999 | goto out; | 3046 | goto out; |
3000 | } | 3047 | } |
@@ -3002,7 +3049,7 @@ static inline void __init check_timer(void) | |||
3002 | * Cleanup, just in case ... | 3049 | * Cleanup, just in case ... |
3003 | */ | 3050 | */ |
3004 | local_irq_disable(); | 3051 | local_irq_disable(); |
3005 | disable_8259A_irq(0); | 3052 | legacy_pic->chip->mask(0); |
3006 | clear_IO_APIC_pin(apic2, pin2); | 3053 | clear_IO_APIC_pin(apic2, pin2); |
3007 | apic_printk(APIC_QUIET, KERN_INFO "....... failed.\n"); | 3054 | apic_printk(APIC_QUIET, KERN_INFO "....... failed.\n"); |
3008 | } | 3055 | } |
@@ -3021,22 +3068,22 @@ static inline void __init check_timer(void) | |||
3021 | 3068 | ||
3022 | lapic_register_intr(0, desc); | 3069 | lapic_register_intr(0, desc); |
3023 | apic_write(APIC_LVT0, APIC_DM_FIXED | cfg->vector); /* Fixed mode */ | 3070 | apic_write(APIC_LVT0, APIC_DM_FIXED | cfg->vector); /* Fixed mode */ |
3024 | enable_8259A_irq(0); | 3071 | legacy_pic->chip->unmask(0); |
3025 | 3072 | ||
3026 | if (timer_irq_works()) { | 3073 | if (timer_irq_works()) { |
3027 | apic_printk(APIC_QUIET, KERN_INFO "..... works.\n"); | 3074 | apic_printk(APIC_QUIET, KERN_INFO "..... works.\n"); |
3028 | goto out; | 3075 | goto out; |
3029 | } | 3076 | } |
3030 | local_irq_disable(); | 3077 | local_irq_disable(); |
3031 | disable_8259A_irq(0); | 3078 | legacy_pic->chip->mask(0); |
3032 | apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | cfg->vector); | 3079 | apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | cfg->vector); |
3033 | apic_printk(APIC_QUIET, KERN_INFO "..... failed.\n"); | 3080 | apic_printk(APIC_QUIET, KERN_INFO "..... failed.\n"); |
3034 | 3081 | ||
3035 | apic_printk(APIC_QUIET, KERN_INFO | 3082 | apic_printk(APIC_QUIET, KERN_INFO |
3036 | "...trying to set up timer as ExtINT IRQ...\n"); | 3083 | "...trying to set up timer as ExtINT IRQ...\n"); |
3037 | 3084 | ||
3038 | init_8259A(0); | 3085 | legacy_pic->init(0); |
3039 | make_8259A_irq(0); | 3086 | legacy_pic->make_irq(0); |
3040 | apic_write(APIC_LVT0, APIC_DM_EXTINT); | 3087 | apic_write(APIC_LVT0, APIC_DM_EXTINT); |
3041 | 3088 | ||
3042 | unlock_ExtINT_logic(); | 3089 | unlock_ExtINT_logic(); |
@@ -3078,7 +3125,7 @@ void __init setup_IO_APIC(void) | |||
3078 | /* | 3125 | /* |
3079 | * calling enable_IO_APIC() is moved to setup_local_APIC for BP | 3126 | * calling enable_IO_APIC() is moved to setup_local_APIC for BP |
3080 | */ | 3127 | */ |
3081 | io_apic_irqs = nr_legacy_irqs ? ~PIC_IRQS : ~0UL; | 3128 | io_apic_irqs = legacy_pic->nr_legacy_irqs ? ~PIC_IRQS : ~0UL; |
3082 | 3129 | ||
3083 | apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n"); | 3130 | apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n"); |
3084 | /* | 3131 | /* |
@@ -3089,7 +3136,7 @@ void __init setup_IO_APIC(void) | |||
3089 | sync_Arb_IDs(); | 3136 | sync_Arb_IDs(); |
3090 | setup_IO_APIC_irqs(); | 3137 | setup_IO_APIC_irqs(); |
3091 | init_IO_APIC_traps(); | 3138 | init_IO_APIC_traps(); |
3092 | if (nr_legacy_irqs) | 3139 | if (legacy_pic->nr_legacy_irqs) |
3093 | check_timer(); | 3140 | check_timer(); |
3094 | } | 3141 | } |
3095 | 3142 | ||
@@ -3138,13 +3185,13 @@ static int ioapic_resume(struct sys_device *dev) | |||
3138 | data = container_of(dev, struct sysfs_ioapic_data, dev); | 3185 | data = container_of(dev, struct sysfs_ioapic_data, dev); |
3139 | entry = data->entry; | 3186 | entry = data->entry; |
3140 | 3187 | ||
3141 | spin_lock_irqsave(&ioapic_lock, flags); | 3188 | raw_spin_lock_irqsave(&ioapic_lock, flags); |
3142 | reg_00.raw = io_apic_read(dev->id, 0); | 3189 | reg_00.raw = io_apic_read(dev->id, 0); |
3143 | if (reg_00.bits.ID != mp_ioapics[dev->id].apicid) { | 3190 | if (reg_00.bits.ID != mp_ioapics[dev->id].apicid) { |
3144 | reg_00.bits.ID = mp_ioapics[dev->id].apicid; | 3191 | reg_00.bits.ID = mp_ioapics[dev->id].apicid; |
3145 | io_apic_write(dev->id, 0, reg_00.raw); | 3192 | io_apic_write(dev->id, 0, reg_00.raw); |
3146 | } | 3193 | } |
3147 | spin_unlock_irqrestore(&ioapic_lock, flags); | 3194 | raw_spin_unlock_irqrestore(&ioapic_lock, flags); |
3148 | for (i = 0; i < nr_ioapic_registers[dev->id]; i++) | 3195 | for (i = 0; i < nr_ioapic_registers[dev->id]; i++) |
3149 | ioapic_write_entry(dev->id, i, entry[i]); | 3196 | ioapic_write_entry(dev->id, i, entry[i]); |
3150 | 3197 | ||
@@ -3207,7 +3254,7 @@ unsigned int create_irq_nr(unsigned int irq_want, int node) | |||
3207 | if (irq_want < nr_irqs_gsi) | 3254 | if (irq_want < nr_irqs_gsi) |
3208 | irq_want = nr_irqs_gsi; | 3255 | irq_want = nr_irqs_gsi; |
3209 | 3256 | ||
3210 | spin_lock_irqsave(&vector_lock, flags); | 3257 | raw_spin_lock_irqsave(&vector_lock, flags); |
3211 | for (new = irq_want; new < nr_irqs; new++) { | 3258 | for (new = irq_want; new < nr_irqs; new++) { |
3212 | desc_new = irq_to_desc_alloc_node(new, node); | 3259 | desc_new = irq_to_desc_alloc_node(new, node); |
3213 | if (!desc_new) { | 3260 | if (!desc_new) { |
@@ -3226,14 +3273,11 @@ unsigned int create_irq_nr(unsigned int irq_want, int node) | |||
3226 | irq = new; | 3273 | irq = new; |
3227 | break; | 3274 | break; |
3228 | } | 3275 | } |
3229 | spin_unlock_irqrestore(&vector_lock, flags); | 3276 | raw_spin_unlock_irqrestore(&vector_lock, flags); |
3277 | |||
3278 | if (irq > 0) | ||
3279 | dynamic_irq_init_keep_chip_data(irq); | ||
3230 | 3280 | ||
3231 | if (irq > 0) { | ||
3232 | dynamic_irq_init(irq); | ||
3233 | /* restore it, in case dynamic_irq_init clear it */ | ||
3234 | if (desc_new) | ||
3235 | desc_new->chip_data = cfg_new; | ||
3236 | } | ||
3237 | return irq; | 3281 | return irq; |
3238 | } | 3282 | } |
3239 | 3283 | ||
@@ -3255,20 +3299,13 @@ int create_irq(void) | |||
3255 | void destroy_irq(unsigned int irq) | 3299 | void destroy_irq(unsigned int irq) |
3256 | { | 3300 | { |
3257 | unsigned long flags; | 3301 | unsigned long flags; |
3258 | struct irq_cfg *cfg; | ||
3259 | struct irq_desc *desc; | ||
3260 | 3302 | ||
3261 | /* store it, in case dynamic_irq_cleanup clear it */ | 3303 | dynamic_irq_cleanup_keep_chip_data(irq); |
3262 | desc = irq_to_desc(irq); | ||
3263 | cfg = desc->chip_data; | ||
3264 | dynamic_irq_cleanup(irq); | ||
3265 | /* connect back irq_cfg */ | ||
3266 | desc->chip_data = cfg; | ||
3267 | 3304 | ||
3268 | free_irte(irq); | 3305 | free_irte(irq); |
3269 | spin_lock_irqsave(&vector_lock, flags); | 3306 | raw_spin_lock_irqsave(&vector_lock, flags); |
3270 | __clear_irq_vector(irq, cfg); | 3307 | __clear_irq_vector(irq, get_irq_chip_data(irq)); |
3271 | spin_unlock_irqrestore(&vector_lock, flags); | 3308 | raw_spin_unlock_irqrestore(&vector_lock, flags); |
3272 | } | 3309 | } |
3273 | 3310 | ||
3274 | /* | 3311 | /* |
@@ -3805,9 +3842,9 @@ int __init io_apic_get_redir_entries (int ioapic) | |||
3805 | union IO_APIC_reg_01 reg_01; | 3842 | union IO_APIC_reg_01 reg_01; |
3806 | unsigned long flags; | 3843 | unsigned long flags; |
3807 | 3844 | ||
3808 | spin_lock_irqsave(&ioapic_lock, flags); | 3845 | raw_spin_lock_irqsave(&ioapic_lock, flags); |
3809 | reg_01.raw = io_apic_read(ioapic, 1); | 3846 | reg_01.raw = io_apic_read(ioapic, 1); |
3810 | spin_unlock_irqrestore(&ioapic_lock, flags); | 3847 | raw_spin_unlock_irqrestore(&ioapic_lock, flags); |
3811 | 3848 | ||
3812 | return reg_01.bits.entries; | 3849 | return reg_01.bits.entries; |
3813 | } | 3850 | } |
@@ -3890,7 +3927,7 @@ static int __io_apic_set_pci_routing(struct device *dev, int irq, | |||
3890 | /* | 3927 | /* |
3891 | * IRQs < 16 are already in the irq_2_pin[] map | 3928 | * IRQs < 16 are already in the irq_2_pin[] map |
3892 | */ | 3929 | */ |
3893 | if (irq >= nr_legacy_irqs) { | 3930 | if (irq >= legacy_pic->nr_legacy_irqs) { |
3894 | cfg = desc->chip_data; | 3931 | cfg = desc->chip_data; |
3895 | if (add_pin_to_irq_node_nopanic(cfg, node, ioapic, pin)) { | 3932 | if (add_pin_to_irq_node_nopanic(cfg, node, ioapic, pin)) { |
3896 | printk(KERN_INFO "can not add pin %d for irq %d\n", | 3933 | printk(KERN_INFO "can not add pin %d for irq %d\n", |
@@ -3969,9 +4006,9 @@ int __init io_apic_get_unique_id(int ioapic, int apic_id) | |||
3969 | if (physids_empty(apic_id_map)) | 4006 | if (physids_empty(apic_id_map)) |
3970 | apic->ioapic_phys_id_map(&phys_cpu_present_map, &apic_id_map); | 4007 | apic->ioapic_phys_id_map(&phys_cpu_present_map, &apic_id_map); |
3971 | 4008 | ||
3972 | spin_lock_irqsave(&ioapic_lock, flags); | 4009 | raw_spin_lock_irqsave(&ioapic_lock, flags); |
3973 | reg_00.raw = io_apic_read(ioapic, 0); | 4010 | reg_00.raw = io_apic_read(ioapic, 0); |
3974 | spin_unlock_irqrestore(&ioapic_lock, flags); | 4011 | raw_spin_unlock_irqrestore(&ioapic_lock, flags); |
3975 | 4012 | ||
3976 | if (apic_id >= get_physical_broadcast()) { | 4013 | if (apic_id >= get_physical_broadcast()) { |
3977 | printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying " | 4014 | printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying " |
@@ -4005,10 +4042,10 @@ int __init io_apic_get_unique_id(int ioapic, int apic_id) | |||
4005 | if (reg_00.bits.ID != apic_id) { | 4042 | if (reg_00.bits.ID != apic_id) { |
4006 | reg_00.bits.ID = apic_id; | 4043 | reg_00.bits.ID = apic_id; |
4007 | 4044 | ||
4008 | spin_lock_irqsave(&ioapic_lock, flags); | 4045 | raw_spin_lock_irqsave(&ioapic_lock, flags); |
4009 | io_apic_write(ioapic, 0, reg_00.raw); | 4046 | io_apic_write(ioapic, 0, reg_00.raw); |
4010 | reg_00.raw = io_apic_read(ioapic, 0); | 4047 | reg_00.raw = io_apic_read(ioapic, 0); |
4011 | spin_unlock_irqrestore(&ioapic_lock, flags); | 4048 | raw_spin_unlock_irqrestore(&ioapic_lock, flags); |
4012 | 4049 | ||
4013 | /* Sanity check */ | 4050 | /* Sanity check */ |
4014 | if (reg_00.bits.ID != apic_id) { | 4051 | if (reg_00.bits.ID != apic_id) { |
@@ -4029,9 +4066,9 @@ int __init io_apic_get_version(int ioapic) | |||
4029 | union IO_APIC_reg_01 reg_01; | 4066 | union IO_APIC_reg_01 reg_01; |
4030 | unsigned long flags; | 4067 | unsigned long flags; |
4031 | 4068 | ||
4032 | spin_lock_irqsave(&ioapic_lock, flags); | 4069 | raw_spin_lock_irqsave(&ioapic_lock, flags); |
4033 | reg_01.raw = io_apic_read(ioapic, 1); | 4070 | reg_01.raw = io_apic_read(ioapic, 1); |
4034 | spin_unlock_irqrestore(&ioapic_lock, flags); | 4071 | raw_spin_unlock_irqrestore(&ioapic_lock, flags); |
4035 | 4072 | ||
4036 | return reg_01.bits.version; | 4073 | return reg_01.bits.version; |
4037 | } | 4074 | } |
@@ -4063,27 +4100,23 @@ int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity) | |||
4063 | #ifdef CONFIG_SMP | 4100 | #ifdef CONFIG_SMP |
4064 | void __init setup_ioapic_dest(void) | 4101 | void __init setup_ioapic_dest(void) |
4065 | { | 4102 | { |
4066 | int pin, ioapic = 0, irq, irq_entry; | 4103 | int pin, ioapic, irq, irq_entry; |
4067 | struct irq_desc *desc; | 4104 | struct irq_desc *desc; |
4068 | const struct cpumask *mask; | 4105 | const struct cpumask *mask; |
4069 | 4106 | ||
4070 | if (skip_ioapic_setup == 1) | 4107 | if (skip_ioapic_setup == 1) |
4071 | return; | 4108 | return; |
4072 | 4109 | ||
4073 | #ifdef CONFIG_ACPI | 4110 | for (ioapic = 0; ioapic < nr_ioapics; ioapic++) |
4074 | if (!acpi_disabled && acpi_ioapic) { | ||
4075 | ioapic = mp_find_ioapic(0); | ||
4076 | if (ioapic < 0) | ||
4077 | ioapic = 0; | ||
4078 | } | ||
4079 | #endif | ||
4080 | |||
4081 | for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) { | 4111 | for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) { |
4082 | irq_entry = find_irq_entry(ioapic, pin, mp_INT); | 4112 | irq_entry = find_irq_entry(ioapic, pin, mp_INT); |
4083 | if (irq_entry == -1) | 4113 | if (irq_entry == -1) |
4084 | continue; | 4114 | continue; |
4085 | irq = pin_2_irq(irq_entry, ioapic, pin); | 4115 | irq = pin_2_irq(irq_entry, ioapic, pin); |
4086 | 4116 | ||
4117 | if ((ioapic > 0) && (irq > 16)) | ||
4118 | continue; | ||
4119 | |||
4087 | desc = irq_to_desc(irq); | 4120 | desc = irq_to_desc(irq); |
4088 | 4121 | ||
4089 | /* | 4122 | /* |
@@ -4268,3 +4301,24 @@ void __init mp_register_ioapic(int id, u32 address, u32 gsi_base) | |||
4268 | 4301 | ||
4269 | nr_ioapics++; | 4302 | nr_ioapics++; |
4270 | } | 4303 | } |
4304 | |||
4305 | /* Enable IOAPIC early just for system timer */ | ||
4306 | void __init pre_init_apic_IRQ0(void) | ||
4307 | { | ||
4308 | struct irq_cfg *cfg; | ||
4309 | struct irq_desc *desc; | ||
4310 | |||
4311 | printk(KERN_INFO "Early APIC setup for system timer0\n"); | ||
4312 | #ifndef CONFIG_SMP | ||
4313 | phys_cpu_present_map = physid_mask_of_physid(boot_cpu_physical_apicid); | ||
4314 | #endif | ||
4315 | desc = irq_to_desc_alloc_node(0, 0); | ||
4316 | |||
4317 | setup_local_APIC(); | ||
4318 | |||
4319 | cfg = irq_cfg(0); | ||
4320 | add_pin_to_irq_node(cfg, 0, 0, 0); | ||
4321 | set_irq_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq, "edge"); | ||
4322 | |||
4323 | setup_IO_APIC_irq(0, 0, 0, desc, 0, 0); | ||
4324 | } | ||
diff --git a/arch/x86/kernel/apic/nmi.c b/arch/x86/kernel/apic/nmi.c index 0159a69396cb..8aa65adbd25d 100644 --- a/arch/x86/kernel/apic/nmi.c +++ b/arch/x86/kernel/apic/nmi.c | |||
@@ -177,7 +177,7 @@ int __init check_nmi_watchdog(void) | |||
177 | error: | 177 | error: |
178 | if (nmi_watchdog == NMI_IO_APIC) { | 178 | if (nmi_watchdog == NMI_IO_APIC) { |
179 | if (!timer_through_8259) | 179 | if (!timer_through_8259) |
180 | disable_8259A_irq(0); | 180 | legacy_pic->chip->mask(0); |
181 | on_each_cpu(__acpi_nmi_disable, NULL, 1); | 181 | on_each_cpu(__acpi_nmi_disable, NULL, 1); |
182 | } | 182 | } |
183 | 183 | ||
@@ -416,13 +416,13 @@ nmi_watchdog_tick(struct pt_regs *regs, unsigned reason) | |||
416 | 416 | ||
417 | /* We can be called before check_nmi_watchdog, hence NULL check. */ | 417 | /* We can be called before check_nmi_watchdog, hence NULL check. */ |
418 | if (cpumask_test_cpu(cpu, to_cpumask(backtrace_mask))) { | 418 | if (cpumask_test_cpu(cpu, to_cpumask(backtrace_mask))) { |
419 | static DEFINE_SPINLOCK(lock); /* Serialise the printks */ | 419 | static DEFINE_RAW_SPINLOCK(lock); /* Serialise the printks */ |
420 | 420 | ||
421 | spin_lock(&lock); | 421 | raw_spin_lock(&lock); |
422 | printk(KERN_WARNING "NMI backtrace for cpu %d\n", cpu); | 422 | printk(KERN_WARNING "NMI backtrace for cpu %d\n", cpu); |
423 | show_regs(regs); | 423 | show_regs(regs); |
424 | dump_stack(); | 424 | dump_stack(); |
425 | spin_unlock(&lock); | 425 | raw_spin_unlock(&lock); |
426 | cpumask_clear_cpu(cpu, to_cpumask(backtrace_mask)); | 426 | cpumask_clear_cpu(cpu, to_cpumask(backtrace_mask)); |
427 | 427 | ||
428 | rc = 1; | 428 | rc = 1; |
@@ -438,8 +438,8 @@ nmi_watchdog_tick(struct pt_regs *regs, unsigned reason) | |||
438 | * Ayiee, looks like this CPU is stuck ... | 438 | * Ayiee, looks like this CPU is stuck ... |
439 | * wait a few IRQs (5 seconds) before doing the oops ... | 439 | * wait a few IRQs (5 seconds) before doing the oops ... |
440 | */ | 440 | */ |
441 | __this_cpu_inc(per_cpu_var(alert_counter)); | 441 | __this_cpu_inc(alert_counter); |
442 | if (__this_cpu_read(per_cpu_var(alert_counter)) == 5 * nmi_hz) | 442 | if (__this_cpu_read(alert_counter) == 5 * nmi_hz) |
443 | /* | 443 | /* |
444 | * die_nmi will return ONLY if NOTIFY_STOP happens.. | 444 | * die_nmi will return ONLY if NOTIFY_STOP happens.. |
445 | */ | 445 | */ |
@@ -447,7 +447,7 @@ nmi_watchdog_tick(struct pt_regs *regs, unsigned reason) | |||
447 | regs, panic_on_timeout); | 447 | regs, panic_on_timeout); |
448 | } else { | 448 | } else { |
449 | __get_cpu_var(last_irq_sum) = sum; | 449 | __get_cpu_var(last_irq_sum) = sum; |
450 | __this_cpu_write(per_cpu_var(alert_counter), 0); | 450 | __this_cpu_write(alert_counter, 0); |
451 | } | 451 | } |
452 | 452 | ||
453 | /* see if the nmi watchdog went off */ | 453 | /* see if the nmi watchdog went off */ |
diff --git a/arch/x86/kernel/apic/numaq_32.c b/arch/x86/kernel/apic/numaq_32.c index 98c4665f251c..3e28401f161c 100644 --- a/arch/x86/kernel/apic/numaq_32.c +++ b/arch/x86/kernel/apic/numaq_32.c | |||
@@ -225,7 +225,7 @@ static void __init smp_read_mpc_oem(struct mpc_table *mpc) | |||
225 | 225 | ||
226 | mpc_record = 0; | 226 | mpc_record = 0; |
227 | printk(KERN_INFO | 227 | printk(KERN_INFO |
228 | "Found an OEM MPC table at %8p - parsing it ... \n", oemtable); | 228 | "Found an OEM MPC table at %8p - parsing it...\n", oemtable); |
229 | 229 | ||
230 | if (memcmp(oemtable->signature, MPC_OEM_SIGNATURE, 4)) { | 230 | if (memcmp(oemtable->signature, MPC_OEM_SIGNATURE, 4)) { |
231 | printk(KERN_WARNING | 231 | printk(KERN_WARNING |
@@ -277,6 +277,7 @@ static __init void early_check_numaq(void) | |||
277 | x86_init.mpparse.mpc_oem_pci_bus = mpc_oem_pci_bus; | 277 | x86_init.mpparse.mpc_oem_pci_bus = mpc_oem_pci_bus; |
278 | x86_init.mpparse.mpc_oem_bus_info = mpc_oem_bus_info; | 278 | x86_init.mpparse.mpc_oem_bus_info = mpc_oem_bus_info; |
279 | x86_init.timers.tsc_pre_init = numaq_tsc_init; | 279 | x86_init.timers.tsc_pre_init = numaq_tsc_init; |
280 | x86_init.pci.init = pci_numaq_init; | ||
280 | } | 281 | } |
281 | } | 282 | } |
282 | 283 | ||
diff --git a/arch/x86/kernel/apic/x2apic_uv_x.c b/arch/x86/kernel/apic/x2apic_uv_x.c index 21db3cbea7dc..3740c8a4eae7 100644 --- a/arch/x86/kernel/apic/x2apic_uv_x.c +++ b/arch/x86/kernel/apic/x2apic_uv_x.c | |||
@@ -5,7 +5,7 @@ | |||
5 | * | 5 | * |
6 | * SGI UV APIC functions (note: not an Intel compatible APIC) | 6 | * SGI UV APIC functions (note: not an Intel compatible APIC) |
7 | * | 7 | * |
8 | * Copyright (C) 2007-2008 Silicon Graphics, Inc. All rights reserved. | 8 | * Copyright (C) 2007-2009 Silicon Graphics, Inc. All rights reserved. |
9 | */ | 9 | */ |
10 | #include <linux/cpumask.h> | 10 | #include <linux/cpumask.h> |
11 | #include <linux/hardirq.h> | 11 | #include <linux/hardirq.h> |
@@ -20,6 +20,8 @@ | |||
20 | #include <linux/cpu.h> | 20 | #include <linux/cpu.h> |
21 | #include <linux/init.h> | 21 | #include <linux/init.h> |
22 | #include <linux/io.h> | 22 | #include <linux/io.h> |
23 | #include <linux/pci.h> | ||
24 | #include <linux/kdebug.h> | ||
23 | 25 | ||
24 | #include <asm/uv/uv_mmrs.h> | 26 | #include <asm/uv/uv_mmrs.h> |
25 | #include <asm/uv/uv_hub.h> | 27 | #include <asm/uv/uv_hub.h> |
@@ -34,10 +36,13 @@ | |||
34 | 36 | ||
35 | DEFINE_PER_CPU(int, x2apic_extra_bits); | 37 | DEFINE_PER_CPU(int, x2apic_extra_bits); |
36 | 38 | ||
39 | #define PR_DEVEL(fmt, args...) pr_devel("%s: " fmt, __func__, args) | ||
40 | |||
37 | static enum uv_system_type uv_system_type; | 41 | static enum uv_system_type uv_system_type; |
38 | static u64 gru_start_paddr, gru_end_paddr; | 42 | static u64 gru_start_paddr, gru_end_paddr; |
39 | int uv_min_hub_revision_id; | 43 | int uv_min_hub_revision_id; |
40 | EXPORT_SYMBOL_GPL(uv_min_hub_revision_id); | 44 | EXPORT_SYMBOL_GPL(uv_min_hub_revision_id); |
45 | static DEFINE_SPINLOCK(uv_nmi_lock); | ||
41 | 46 | ||
42 | static inline bool is_GRU_range(u64 start, u64 end) | 47 | static inline bool is_GRU_range(u64 start, u64 end) |
43 | { | 48 | { |
@@ -71,6 +76,7 @@ static int __init uv_acpi_madt_oem_check(char *oem_id, char *oem_table_id) | |||
71 | if (!strcmp(oem_id, "SGI")) { | 76 | if (!strcmp(oem_id, "SGI")) { |
72 | nodeid = early_get_nodeid(); | 77 | nodeid = early_get_nodeid(); |
73 | x86_platform.is_untracked_pat_range = uv_is_untracked_pat_range; | 78 | x86_platform.is_untracked_pat_range = uv_is_untracked_pat_range; |
79 | x86_platform.nmi_init = uv_nmi_init; | ||
74 | if (!strcmp(oem_table_id, "UVL")) | 80 | if (!strcmp(oem_table_id, "UVL")) |
75 | uv_system_type = UV_LEGACY_APIC; | 81 | uv_system_type = UV_LEGACY_APIC; |
76 | else if (!strcmp(oem_table_id, "UVX")) | 82 | else if (!strcmp(oem_table_id, "UVX")) |
@@ -482,7 +488,7 @@ static void uv_heartbeat(unsigned long ignored) | |||
482 | 488 | ||
483 | static void __cpuinit uv_heartbeat_enable(int cpu) | 489 | static void __cpuinit uv_heartbeat_enable(int cpu) |
484 | { | 490 | { |
485 | if (!uv_cpu_hub_info(cpu)->scir.enabled) { | 491 | while (!uv_cpu_hub_info(cpu)->scir.enabled) { |
486 | struct timer_list *timer = &uv_cpu_hub_info(cpu)->scir.timer; | 492 | struct timer_list *timer = &uv_cpu_hub_info(cpu)->scir.timer; |
487 | 493 | ||
488 | uv_set_cpu_scir_bits(cpu, SCIR_CPU_HEARTBEAT|SCIR_CPU_ACTIVITY); | 494 | uv_set_cpu_scir_bits(cpu, SCIR_CPU_HEARTBEAT|SCIR_CPU_ACTIVITY); |
@@ -490,11 +496,10 @@ static void __cpuinit uv_heartbeat_enable(int cpu) | |||
490 | timer->expires = jiffies + SCIR_CPU_HB_INTERVAL; | 496 | timer->expires = jiffies + SCIR_CPU_HB_INTERVAL; |
491 | add_timer_on(timer, cpu); | 497 | add_timer_on(timer, cpu); |
492 | uv_cpu_hub_info(cpu)->scir.enabled = 1; | 498 | uv_cpu_hub_info(cpu)->scir.enabled = 1; |
493 | } | ||
494 | 499 | ||
495 | /* check boot cpu */ | 500 | /* also ensure that boot cpu is enabled */ |
496 | if (!uv_cpu_hub_info(0)->scir.enabled) | 501 | cpu = 0; |
497 | uv_heartbeat_enable(0); | 502 | } |
498 | } | 503 | } |
499 | 504 | ||
500 | #ifdef CONFIG_HOTPLUG_CPU | 505 | #ifdef CONFIG_HOTPLUG_CPU |
@@ -553,6 +558,30 @@ late_initcall(uv_init_heartbeat); | |||
553 | 558 | ||
554 | #endif /* !CONFIG_HOTPLUG_CPU */ | 559 | #endif /* !CONFIG_HOTPLUG_CPU */ |
555 | 560 | ||
561 | /* Direct Legacy VGA I/O traffic to designated IOH */ | ||
562 | int uv_set_vga_state(struct pci_dev *pdev, bool decode, | ||
563 | unsigned int command_bits, bool change_bridge) | ||
564 | { | ||
565 | int domain, bus, rc; | ||
566 | |||
567 | PR_DEVEL("devfn %x decode %d cmd %x chg_brdg %d\n", | ||
568 | pdev->devfn, decode, command_bits, change_bridge); | ||
569 | |||
570 | if (!change_bridge) | ||
571 | return 0; | ||
572 | |||
573 | if ((command_bits & PCI_COMMAND_IO) == 0) | ||
574 | return 0; | ||
575 | |||
576 | domain = pci_domain_nr(pdev->bus); | ||
577 | bus = pdev->bus->number; | ||
578 | |||
579 | rc = uv_bios_set_legacy_vga_target(decode, domain, bus); | ||
580 | PR_DEVEL("vga decode %d %x:%x, rc: %d\n", decode, domain, bus, rc); | ||
581 | |||
582 | return rc; | ||
583 | } | ||
584 | |||
556 | /* | 585 | /* |
557 | * Called on each cpu to initialize the per_cpu UV data area. | 586 | * Called on each cpu to initialize the per_cpu UV data area. |
558 | * FIXME: hotplug not supported yet | 587 | * FIXME: hotplug not supported yet |
@@ -569,6 +598,46 @@ void __cpuinit uv_cpu_init(void) | |||
569 | set_x2apic_extra_bits(uv_hub_info->pnode); | 598 | set_x2apic_extra_bits(uv_hub_info->pnode); |
570 | } | 599 | } |
571 | 600 | ||
601 | /* | ||
602 | * When NMI is received, print a stack trace. | ||
603 | */ | ||
604 | int uv_handle_nmi(struct notifier_block *self, unsigned long reason, void *data) | ||
605 | { | ||
606 | if (reason != DIE_NMI_IPI) | ||
607 | return NOTIFY_OK; | ||
608 | /* | ||
609 | * Use a lock so only one cpu prints at a time | ||
610 | * to prevent intermixed output. | ||
611 | */ | ||
612 | spin_lock(&uv_nmi_lock); | ||
613 | pr_info("NMI stack dump cpu %u:\n", smp_processor_id()); | ||
614 | dump_stack(); | ||
615 | spin_unlock(&uv_nmi_lock); | ||
616 | |||
617 | return NOTIFY_STOP; | ||
618 | } | ||
619 | |||
620 | static struct notifier_block uv_dump_stack_nmi_nb = { | ||
621 | .notifier_call = uv_handle_nmi | ||
622 | }; | ||
623 | |||
624 | void uv_register_nmi_notifier(void) | ||
625 | { | ||
626 | if (register_die_notifier(&uv_dump_stack_nmi_nb)) | ||
627 | printk(KERN_WARNING "UV NMI handler failed to register\n"); | ||
628 | } | ||
629 | |||
630 | void uv_nmi_init(void) | ||
631 | { | ||
632 | unsigned int value; | ||
633 | |||
634 | /* | ||
635 | * Unmask NMI on all cpus | ||
636 | */ | ||
637 | value = apic_read(APIC_LVT1) | APIC_DM_NMI; | ||
638 | value &= ~APIC_LVT_MASKED; | ||
639 | apic_write(APIC_LVT1, value); | ||
640 | } | ||
572 | 641 | ||
573 | void __init uv_system_init(void) | 642 | void __init uv_system_init(void) |
574 | { | 643 | { |
@@ -634,8 +703,8 @@ void __init uv_system_init(void) | |||
634 | } | 703 | } |
635 | 704 | ||
636 | uv_bios_init(); | 705 | uv_bios_init(); |
637 | uv_bios_get_sn_info(0, &uv_type, &sn_partition_id, | 706 | uv_bios_get_sn_info(0, &uv_type, &sn_partition_id, &sn_coherency_id, |
638 | &sn_coherency_id, &sn_region_size); | 707 | &sn_region_size, &system_serial_number); |
639 | uv_rtc_init(); | 708 | uv_rtc_init(); |
640 | 709 | ||
641 | for_each_present_cpu(cpu) { | 710 | for_each_present_cpu(cpu) { |
@@ -690,5 +759,9 @@ void __init uv_system_init(void) | |||
690 | 759 | ||
691 | uv_cpu_init(); | 760 | uv_cpu_init(); |
692 | uv_scir_register_cpu_notifier(); | 761 | uv_scir_register_cpu_notifier(); |
762 | uv_register_nmi_notifier(); | ||
693 | proc_mkdir("sgi_uv", NULL); | 763 | proc_mkdir("sgi_uv", NULL); |
764 | |||
765 | /* register Legacy VGA I/O redirection handler */ | ||
766 | pci_register_set_vga_state(uv_set_vga_state); | ||
694 | } | 767 | } |