diff options
author | Geoff Levand <geoff@infradead.org> | 2011-11-29 10:38:49 -0500 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2011-12-07 22:05:54 -0500 |
commit | 32b9074bf8d644fa61bbfa32e1917ced079b9756 (patch) | |
tree | b6e0d60ae676fcfc4fd0e56e445f446a6696afc6 /arch/powerpc/platforms/ps3/interrupt.c | |
parent | faa8bf8878636e40646d307e0516dbadb3b65b4f (diff) |
powerpc/ps3: Interrupt code cleanup
General code cleanup for PS3 interrupt.c:
o Fill out comments for structure members.
o Move variables ipi_debug_brk_mask and lock from struct ps3_bmp to
struct ps3_private.
o Fix pr_debug build errors when DEBUG is defined.
o Convert bit operation to set_bit().
o Convert DBG macro from pr_debug to pr_devel
o Add new macro FAIL to replace pr_debug calls
Signed-off-by: Geoff Levand <geoff@infradead.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/platforms/ps3/interrupt.c')
-rw-r--r-- | arch/powerpc/platforms/ps3/interrupt.c | 103 |
1 files changed, 53 insertions, 50 deletions
diff --git a/arch/powerpc/platforms/ps3/interrupt.c b/arch/powerpc/platforms/ps3/interrupt.c index 1d6f4f478fe2..617efa12a3a5 100644 --- a/arch/powerpc/platforms/ps3/interrupt.c +++ b/arch/powerpc/platforms/ps3/interrupt.c | |||
@@ -31,18 +31,18 @@ | |||
31 | 31 | ||
32 | #if defined(DEBUG) | 32 | #if defined(DEBUG) |
33 | #define DBG udbg_printf | 33 | #define DBG udbg_printf |
34 | #define FAIL udbg_printf | ||
34 | #else | 35 | #else |
35 | #define DBG pr_debug | 36 | #define DBG pr_devel |
37 | #define FAIL pr_debug | ||
36 | #endif | 38 | #endif |
37 | 39 | ||
38 | /** | 40 | /** |
39 | * struct ps3_bmp - a per cpu irq status and mask bitmap structure | 41 | * struct ps3_bmp - a per cpu irq status and mask bitmap structure |
40 | * @status: 256 bit status bitmap indexed by plug | 42 | * @status: 256 bit status bitmap indexed by plug |
41 | * @unused_1: | 43 | * @unused_1: Alignment |
42 | * @mask: 256 bit mask bitmap indexed by plug | 44 | * @mask: 256 bit mask bitmap indexed by plug |
43 | * @unused_2: | 45 | * @unused_2: Alignment |
44 | * @lock: | ||
45 | * @ipi_debug_brk_mask: | ||
46 | * | 46 | * |
47 | * The HV maintains per SMT thread mappings of HV outlet to HV plug on | 47 | * The HV maintains per SMT thread mappings of HV outlet to HV plug on |
48 | * behalf of the guest. These mappings are implemented as 256 bit guest | 48 | * behalf of the guest. These mappings are implemented as 256 bit guest |
@@ -73,21 +73,24 @@ struct ps3_bmp { | |||
73 | unsigned long mask; | 73 | unsigned long mask; |
74 | u64 unused_2[3]; | 74 | u64 unused_2[3]; |
75 | }; | 75 | }; |
76 | u64 ipi_debug_brk_mask; | ||
77 | spinlock_t lock; | ||
78 | }; | 76 | }; |
79 | 77 | ||
80 | /** | 78 | /** |
81 | * struct ps3_private - a per cpu data structure | 79 | * struct ps3_private - a per cpu data structure |
82 | * @bmp: ps3_bmp structure | 80 | * @bmp: ps3_bmp structure |
81 | * @bmp_lock: Syncronize access to bmp. | ||
82 | * @ipi_debug_brk_mask: Mask for debug break IPIs | ||
83 | * @ppe_id: HV logical_ppe_id | 83 | * @ppe_id: HV logical_ppe_id |
84 | * @thread_id: HV thread_id | 84 | * @thread_id: HV thread_id |
85 | * @ipi_mask: Mask of IPI virqs | ||
85 | */ | 86 | */ |
86 | 87 | ||
87 | struct ps3_private { | 88 | struct ps3_private { |
88 | struct ps3_bmp bmp __attribute__ ((aligned (PS3_BMP_MINALIGN))); | 89 | struct ps3_bmp bmp __attribute__ ((aligned (PS3_BMP_MINALIGN))); |
90 | spinlock_t bmp_lock; | ||
89 | u64 ppe_id; | 91 | u64 ppe_id; |
90 | u64 thread_id; | 92 | u64 thread_id; |
93 | unsigned long ipi_debug_brk_mask; | ||
91 | unsigned long ipi_mask; | 94 | unsigned long ipi_mask; |
92 | }; | 95 | }; |
93 | 96 | ||
@@ -105,7 +108,7 @@ static void ps3_chip_mask(struct irq_data *d) | |||
105 | struct ps3_private *pd = irq_data_get_irq_chip_data(d); | 108 | struct ps3_private *pd = irq_data_get_irq_chip_data(d); |
106 | unsigned long flags; | 109 | unsigned long flags; |
107 | 110 | ||
108 | pr_debug("%s:%d: thread_id %llu, virq %d\n", __func__, __LINE__, | 111 | DBG("%s:%d: thread_id %llu, virq %d\n", __func__, __LINE__, |
109 | pd->thread_id, d->irq); | 112 | pd->thread_id, d->irq); |
110 | 113 | ||
111 | local_irq_save(flags); | 114 | local_irq_save(flags); |
@@ -126,7 +129,7 @@ static void ps3_chip_unmask(struct irq_data *d) | |||
126 | struct ps3_private *pd = irq_data_get_irq_chip_data(d); | 129 | struct ps3_private *pd = irq_data_get_irq_chip_data(d); |
127 | unsigned long flags; | 130 | unsigned long flags; |
128 | 131 | ||
129 | pr_debug("%s:%d: thread_id %llu, virq %d\n", __func__, __LINE__, | 132 | DBG("%s:%d: thread_id %llu, virq %d\n", __func__, __LINE__, |
130 | pd->thread_id, d->irq); | 133 | pd->thread_id, d->irq); |
131 | 134 | ||
132 | local_irq_save(flags); | 135 | local_irq_save(flags); |
@@ -190,19 +193,19 @@ static int ps3_virq_setup(enum ps3_cpu_binding cpu, unsigned long outlet, | |||
190 | *virq = irq_create_mapping(NULL, outlet); | 193 | *virq = irq_create_mapping(NULL, outlet); |
191 | 194 | ||
192 | if (*virq == NO_IRQ) { | 195 | if (*virq == NO_IRQ) { |
193 | pr_debug("%s:%d: irq_create_mapping failed: outlet %lu\n", | 196 | FAIL("%s:%d: irq_create_mapping failed: outlet %lu\n", |
194 | __func__, __LINE__, outlet); | 197 | __func__, __LINE__, outlet); |
195 | result = -ENOMEM; | 198 | result = -ENOMEM; |
196 | goto fail_create; | 199 | goto fail_create; |
197 | } | 200 | } |
198 | 201 | ||
199 | pr_debug("%s:%d: outlet %lu => cpu %u, virq %u\n", __func__, __LINE__, | 202 | DBG("%s:%d: outlet %lu => cpu %u, virq %u\n", __func__, __LINE__, |
200 | outlet, cpu, *virq); | 203 | outlet, cpu, *virq); |
201 | 204 | ||
202 | result = irq_set_chip_data(*virq, pd); | 205 | result = irq_set_chip_data(*virq, pd); |
203 | 206 | ||
204 | if (result) { | 207 | if (result) { |
205 | pr_debug("%s:%d: irq_set_chip_data failed\n", | 208 | FAIL("%s:%d: irq_set_chip_data failed\n", |
206 | __func__, __LINE__); | 209 | __func__, __LINE__); |
207 | goto fail_set; | 210 | goto fail_set; |
208 | } | 211 | } |
@@ -228,13 +231,13 @@ static int ps3_virq_destroy(unsigned int virq) | |||
228 | { | 231 | { |
229 | const struct ps3_private *pd = irq_get_chip_data(virq); | 232 | const struct ps3_private *pd = irq_get_chip_data(virq); |
230 | 233 | ||
231 | pr_debug("%s:%d: ppe_id %llu, thread_id %llu, virq %u\n", __func__, | 234 | DBG("%s:%d: ppe_id %llu, thread_id %llu, virq %u\n", __func__, |
232 | __LINE__, pd->ppe_id, pd->thread_id, virq); | 235 | __LINE__, pd->ppe_id, pd->thread_id, virq); |
233 | 236 | ||
234 | irq_set_chip_data(virq, NULL); | 237 | irq_set_chip_data(virq, NULL); |
235 | irq_dispose_mapping(virq); | 238 | irq_dispose_mapping(virq); |
236 | 239 | ||
237 | pr_debug("%s:%d <-\n", __func__, __LINE__); | 240 | DBG("%s:%d <-\n", __func__, __LINE__); |
238 | return 0; | 241 | return 0; |
239 | } | 242 | } |
240 | 243 | ||
@@ -257,7 +260,7 @@ int ps3_irq_plug_setup(enum ps3_cpu_binding cpu, unsigned long outlet, | |||
257 | result = ps3_virq_setup(cpu, outlet, virq); | 260 | result = ps3_virq_setup(cpu, outlet, virq); |
258 | 261 | ||
259 | if (result) { | 262 | if (result) { |
260 | pr_debug("%s:%d: ps3_virq_setup failed\n", __func__, __LINE__); | 263 | FAIL("%s:%d: ps3_virq_setup failed\n", __func__, __LINE__); |
261 | goto fail_setup; | 264 | goto fail_setup; |
262 | } | 265 | } |
263 | 266 | ||
@@ -269,7 +272,7 @@ int ps3_irq_plug_setup(enum ps3_cpu_binding cpu, unsigned long outlet, | |||
269 | outlet, 0); | 272 | outlet, 0); |
270 | 273 | ||
271 | if (result) { | 274 | if (result) { |
272 | pr_info("%s:%d: lv1_connect_irq_plug_ext failed: %s\n", | 275 | FAIL("%s:%d: lv1_connect_irq_plug_ext failed: %s\n", |
273 | __func__, __LINE__, ps3_result(result)); | 276 | __func__, __LINE__, ps3_result(result)); |
274 | result = -EPERM; | 277 | result = -EPERM; |
275 | goto fail_connect; | 278 | goto fail_connect; |
@@ -298,7 +301,7 @@ int ps3_irq_plug_destroy(unsigned int virq) | |||
298 | int result; | 301 | int result; |
299 | const struct ps3_private *pd = irq_get_chip_data(virq); | 302 | const struct ps3_private *pd = irq_get_chip_data(virq); |
300 | 303 | ||
301 | pr_debug("%s:%d: ppe_id %llu, thread_id %llu, virq %u\n", __func__, | 304 | DBG("%s:%d: ppe_id %llu, thread_id %llu, virq %u\n", __func__, |
302 | __LINE__, pd->ppe_id, pd->thread_id, virq); | 305 | __LINE__, pd->ppe_id, pd->thread_id, virq); |
303 | 306 | ||
304 | ps3_chip_mask(irq_get_irq_data(virq)); | 307 | ps3_chip_mask(irq_get_irq_data(virq)); |
@@ -306,7 +309,7 @@ int ps3_irq_plug_destroy(unsigned int virq) | |||
306 | result = lv1_disconnect_irq_plug_ext(pd->ppe_id, pd->thread_id, virq); | 309 | result = lv1_disconnect_irq_plug_ext(pd->ppe_id, pd->thread_id, virq); |
307 | 310 | ||
308 | if (result) | 311 | if (result) |
309 | pr_info("%s:%d: lv1_disconnect_irq_plug_ext failed: %s\n", | 312 | FAIL("%s:%d: lv1_disconnect_irq_plug_ext failed: %s\n", |
310 | __func__, __LINE__, ps3_result(result)); | 313 | __func__, __LINE__, ps3_result(result)); |
311 | 314 | ||
312 | ps3_virq_destroy(virq); | 315 | ps3_virq_destroy(virq); |
@@ -334,7 +337,7 @@ int ps3_event_receive_port_setup(enum ps3_cpu_binding cpu, unsigned int *virq) | |||
334 | result = lv1_construct_event_receive_port(&outlet); | 337 | result = lv1_construct_event_receive_port(&outlet); |
335 | 338 | ||
336 | if (result) { | 339 | if (result) { |
337 | pr_debug("%s:%d: lv1_construct_event_receive_port failed: %s\n", | 340 | FAIL("%s:%d: lv1_construct_event_receive_port failed: %s\n", |
338 | __func__, __LINE__, ps3_result(result)); | 341 | __func__, __LINE__, ps3_result(result)); |
339 | *virq = NO_IRQ; | 342 | *virq = NO_IRQ; |
340 | return result; | 343 | return result; |
@@ -360,14 +363,14 @@ int ps3_event_receive_port_destroy(unsigned int virq) | |||
360 | { | 363 | { |
361 | int result; | 364 | int result; |
362 | 365 | ||
363 | pr_debug(" -> %s:%d virq %u\n", __func__, __LINE__, virq); | 366 | DBG(" -> %s:%d virq %u\n", __func__, __LINE__, virq); |
364 | 367 | ||
365 | ps3_chip_mask(irq_get_irq_data(virq)); | 368 | ps3_chip_mask(irq_get_irq_data(virq)); |
366 | 369 | ||
367 | result = lv1_destruct_event_receive_port(virq_to_hw(virq)); | 370 | result = lv1_destruct_event_receive_port(virq_to_hw(virq)); |
368 | 371 | ||
369 | if (result) | 372 | if (result) |
370 | pr_debug("%s:%d: lv1_destruct_event_receive_port failed: %s\n", | 373 | FAIL("%s:%d: lv1_destruct_event_receive_port failed: %s\n", |
371 | __func__, __LINE__, ps3_result(result)); | 374 | __func__, __LINE__, ps3_result(result)); |
372 | 375 | ||
373 | /* | 376 | /* |
@@ -375,7 +378,7 @@ int ps3_event_receive_port_destroy(unsigned int virq) | |||
375 | * calls from interrupt context (smp_call_function) when kexecing. | 378 | * calls from interrupt context (smp_call_function) when kexecing. |
376 | */ | 379 | */ |
377 | 380 | ||
378 | pr_debug(" <- %s:%d\n", __func__, __LINE__); | 381 | DBG(" <- %s:%d\n", __func__, __LINE__); |
379 | return result; | 382 | return result; |
380 | } | 383 | } |
381 | 384 | ||
@@ -411,7 +414,7 @@ int ps3_sb_event_receive_port_setup(struct ps3_system_bus_device *dev, | |||
411 | dev->dev_id, virq_to_hw(*virq), dev->interrupt_id); | 414 | dev->dev_id, virq_to_hw(*virq), dev->interrupt_id); |
412 | 415 | ||
413 | if (result) { | 416 | if (result) { |
414 | pr_debug("%s:%d: lv1_connect_interrupt_event_receive_port" | 417 | FAIL("%s:%d: lv1_connect_interrupt_event_receive_port" |
415 | " failed: %s\n", __func__, __LINE__, | 418 | " failed: %s\n", __func__, __LINE__, |
416 | ps3_result(result)); | 419 | ps3_result(result)); |
417 | ps3_event_receive_port_destroy(*virq); | 420 | ps3_event_receive_port_destroy(*virq); |
@@ -419,7 +422,7 @@ int ps3_sb_event_receive_port_setup(struct ps3_system_bus_device *dev, | |||
419 | return result; | 422 | return result; |
420 | } | 423 | } |
421 | 424 | ||
422 | pr_debug("%s:%d: interrupt_id %u, virq %u\n", __func__, __LINE__, | 425 | DBG("%s:%d: interrupt_id %u, virq %u\n", __func__, __LINE__, |
423 | dev->interrupt_id, *virq); | 426 | dev->interrupt_id, *virq); |
424 | 427 | ||
425 | return 0; | 428 | return 0; |
@@ -433,14 +436,14 @@ int ps3_sb_event_receive_port_destroy(struct ps3_system_bus_device *dev, | |||
433 | 436 | ||
434 | int result; | 437 | int result; |
435 | 438 | ||
436 | pr_debug(" -> %s:%d: interrupt_id %u, virq %u\n", __func__, __LINE__, | 439 | DBG(" -> %s:%d: interrupt_id %u, virq %u\n", __func__, __LINE__, |
437 | dev->interrupt_id, virq); | 440 | dev->interrupt_id, virq); |
438 | 441 | ||
439 | result = lv1_disconnect_interrupt_event_receive_port(dev->bus_id, | 442 | result = lv1_disconnect_interrupt_event_receive_port(dev->bus_id, |
440 | dev->dev_id, virq_to_hw(virq), dev->interrupt_id); | 443 | dev->dev_id, virq_to_hw(virq), dev->interrupt_id); |
441 | 444 | ||
442 | if (result) | 445 | if (result) |
443 | pr_debug("%s:%d: lv1_disconnect_interrupt_event_receive_port" | 446 | FAIL("%s:%d: lv1_disconnect_interrupt_event_receive_port" |
444 | " failed: %s\n", __func__, __LINE__, | 447 | " failed: %s\n", __func__, __LINE__, |
445 | ps3_result(result)); | 448 | ps3_result(result)); |
446 | 449 | ||
@@ -455,7 +458,7 @@ int ps3_sb_event_receive_port_destroy(struct ps3_system_bus_device *dev, | |||
455 | result = ps3_virq_destroy(virq); | 458 | result = ps3_virq_destroy(virq); |
456 | BUG_ON(result); | 459 | BUG_ON(result); |
457 | 460 | ||
458 | pr_debug(" <- %s:%d\n", __func__, __LINE__); | 461 | DBG(" <- %s:%d\n", __func__, __LINE__); |
459 | return result; | 462 | return result; |
460 | } | 463 | } |
461 | EXPORT_SYMBOL(ps3_sb_event_receive_port_destroy); | 464 | EXPORT_SYMBOL(ps3_sb_event_receive_port_destroy); |
@@ -480,7 +483,7 @@ int ps3_io_irq_setup(enum ps3_cpu_binding cpu, unsigned int interrupt_id, | |||
480 | result = lv1_construct_io_irq_outlet(interrupt_id, &outlet); | 483 | result = lv1_construct_io_irq_outlet(interrupt_id, &outlet); |
481 | 484 | ||
482 | if (result) { | 485 | if (result) { |
483 | pr_debug("%s:%d: lv1_construct_io_irq_outlet failed: %s\n", | 486 | FAIL("%s:%d: lv1_construct_io_irq_outlet failed: %s\n", |
484 | __func__, __LINE__, ps3_result(result)); | 487 | __func__, __LINE__, ps3_result(result)); |
485 | return result; | 488 | return result; |
486 | } | 489 | } |
@@ -510,7 +513,7 @@ int ps3_io_irq_destroy(unsigned int virq) | |||
510 | result = lv1_destruct_io_irq_outlet(outlet); | 513 | result = lv1_destruct_io_irq_outlet(outlet); |
511 | 514 | ||
512 | if (result) | 515 | if (result) |
513 | pr_debug("%s:%d: lv1_destruct_io_irq_outlet failed: %s\n", | 516 | FAIL("%s:%d: lv1_destruct_io_irq_outlet failed: %s\n", |
514 | __func__, __LINE__, ps3_result(result)); | 517 | __func__, __LINE__, ps3_result(result)); |
515 | 518 | ||
516 | return result; | 519 | return result; |
@@ -542,7 +545,7 @@ int ps3_vuart_irq_setup(enum ps3_cpu_binding cpu, void* virt_addr_bmp, | |||
542 | result = lv1_configure_virtual_uart_irq(lpar_addr, &outlet); | 545 | result = lv1_configure_virtual_uart_irq(lpar_addr, &outlet); |
543 | 546 | ||
544 | if (result) { | 547 | if (result) { |
545 | pr_debug("%s:%d: lv1_configure_virtual_uart_irq failed: %s\n", | 548 | FAIL("%s:%d: lv1_configure_virtual_uart_irq failed: %s\n", |
546 | __func__, __LINE__, ps3_result(result)); | 549 | __func__, __LINE__, ps3_result(result)); |
547 | return result; | 550 | return result; |
548 | } | 551 | } |
@@ -562,7 +565,7 @@ int ps3_vuart_irq_destroy(unsigned int virq) | |||
562 | result = lv1_deconfigure_virtual_uart_irq(); | 565 | result = lv1_deconfigure_virtual_uart_irq(); |
563 | 566 | ||
564 | if (result) { | 567 | if (result) { |
565 | pr_debug("%s:%d: lv1_configure_virtual_uart_irq failed: %s\n", | 568 | FAIL("%s:%d: lv1_configure_virtual_uart_irq failed: %s\n", |
566 | __func__, __LINE__, ps3_result(result)); | 569 | __func__, __LINE__, ps3_result(result)); |
567 | return result; | 570 | return result; |
568 | } | 571 | } |
@@ -595,7 +598,7 @@ int ps3_spe_irq_setup(enum ps3_cpu_binding cpu, unsigned long spe_id, | |||
595 | result = lv1_get_spe_irq_outlet(spe_id, class, &outlet); | 598 | result = lv1_get_spe_irq_outlet(spe_id, class, &outlet); |
596 | 599 | ||
597 | if (result) { | 600 | if (result) { |
598 | pr_debug("%s:%d: lv1_get_spe_irq_outlet failed: %s\n", | 601 | FAIL("%s:%d: lv1_get_spe_irq_outlet failed: %s\n", |
599 | __func__, __LINE__, ps3_result(result)); | 602 | __func__, __LINE__, ps3_result(result)); |
600 | return result; | 603 | return result; |
601 | } | 604 | } |
@@ -626,7 +629,7 @@ int ps3_spe_irq_destroy(unsigned int virq) | |||
626 | static void _dump_64_bmp(const char *header, const u64 *p, unsigned cpu, | 629 | static void _dump_64_bmp(const char *header, const u64 *p, unsigned cpu, |
627 | const char* func, int line) | 630 | const char* func, int line) |
628 | { | 631 | { |
629 | pr_debug("%s:%d: %s %u {%04lx_%04lx_%04lx_%04lx}\n", | 632 | pr_debug("%s:%d: %s %u {%04llx_%04llx_%04llx_%04llx}\n", |
630 | func, line, header, cpu, | 633 | func, line, header, cpu, |
631 | *p >> 48, (*p >> 32) & 0xffff, (*p >> 16) & 0xffff, | 634 | *p >> 48, (*p >> 32) & 0xffff, (*p >> 16) & 0xffff, |
632 | *p & 0xffff); | 635 | *p & 0xffff); |
@@ -635,7 +638,7 @@ static void _dump_64_bmp(const char *header, const u64 *p, unsigned cpu, | |||
635 | static void __maybe_unused _dump_256_bmp(const char *header, | 638 | static void __maybe_unused _dump_256_bmp(const char *header, |
636 | const u64 *p, unsigned cpu, const char* func, int line) | 639 | const u64 *p, unsigned cpu, const char* func, int line) |
637 | { | 640 | { |
638 | pr_debug("%s:%d: %s %u {%016lx:%016lx:%016lx:%016lx}\n", | 641 | pr_debug("%s:%d: %s %u {%016llx:%016llx:%016llx:%016llx}\n", |
639 | func, line, header, cpu, p[0], p[1], p[2], p[3]); | 642 | func, line, header, cpu, p[0], p[1], p[2], p[3]); |
640 | } | 643 | } |
641 | 644 | ||
@@ -644,10 +647,10 @@ static void _dump_bmp(struct ps3_private* pd, const char* func, int line) | |||
644 | { | 647 | { |
645 | unsigned long flags; | 648 | unsigned long flags; |
646 | 649 | ||
647 | spin_lock_irqsave(&pd->bmp.lock, flags); | 650 | spin_lock_irqsave(&pd->bmp_lock, flags); |
648 | _dump_64_bmp("stat", &pd->bmp.status, pd->thread_id, func, line); | 651 | _dump_64_bmp("stat", &pd->bmp.status, pd->thread_id, func, line); |
649 | _dump_64_bmp("mask", &pd->bmp.mask, pd->thread_id, func, line); | 652 | _dump_64_bmp("mask", (u64*)&pd->bmp.mask, pd->thread_id, func, line); |
650 | spin_unlock_irqrestore(&pd->bmp.lock, flags); | 653 | spin_unlock_irqrestore(&pd->bmp_lock, flags); |
651 | } | 654 | } |
652 | 655 | ||
653 | #define dump_mask(_x) _dump_mask(_x, __func__, __LINE__) | 656 | #define dump_mask(_x) _dump_mask(_x, __func__, __LINE__) |
@@ -656,9 +659,9 @@ static void __maybe_unused _dump_mask(struct ps3_private *pd, | |||
656 | { | 659 | { |
657 | unsigned long flags; | 660 | unsigned long flags; |
658 | 661 | ||
659 | spin_lock_irqsave(&pd->bmp.lock, flags); | 662 | spin_lock_irqsave(&pd->bmp_lock, flags); |
660 | _dump_64_bmp("mask", &pd->bmp.mask, pd->thread_id, func, line); | 663 | _dump_64_bmp("mask", (u64*)&pd->bmp.mask, pd->thread_id, func, line); |
661 | spin_unlock_irqrestore(&pd->bmp.lock, flags); | 664 | spin_unlock_irqrestore(&pd->bmp_lock, flags); |
662 | } | 665 | } |
663 | #else | 666 | #else |
664 | static void dump_bmp(struct ps3_private* pd) {}; | 667 | static void dump_bmp(struct ps3_private* pd) {}; |
@@ -667,7 +670,7 @@ static void dump_bmp(struct ps3_private* pd) {}; | |||
667 | static int ps3_host_map(struct irq_host *h, unsigned int virq, | 670 | static int ps3_host_map(struct irq_host *h, unsigned int virq, |
668 | irq_hw_number_t hwirq) | 671 | irq_hw_number_t hwirq) |
669 | { | 672 | { |
670 | pr_debug("%s:%d: hwirq %lu, virq %u\n", __func__, __LINE__, hwirq, | 673 | DBG("%s:%d: hwirq %lu, virq %u\n", __func__, __LINE__, hwirq, |
671 | virq); | 674 | virq); |
672 | 675 | ||
673 | irq_set_chip_and_handler(virq, &ps3_irq_chip, handle_fasteoi_irq); | 676 | irq_set_chip_and_handler(virq, &ps3_irq_chip, handle_fasteoi_irq); |
@@ -690,10 +693,10 @@ void __init ps3_register_ipi_debug_brk(unsigned int cpu, unsigned int virq) | |||
690 | { | 693 | { |
691 | struct ps3_private *pd = &per_cpu(ps3_private, cpu); | 694 | struct ps3_private *pd = &per_cpu(ps3_private, cpu); |
692 | 695 | ||
693 | pd->bmp.ipi_debug_brk_mask = 0x8000000000000000UL >> virq; | 696 | set_bit(63 - virq, &pd->ipi_debug_brk_mask); |
694 | 697 | ||
695 | pr_debug("%s:%d: cpu %u, virq %u, mask %llxh\n", __func__, __LINE__, | 698 | DBG("%s:%d: cpu %u, virq %u, mask %lxh\n", __func__, __LINE__, |
696 | cpu, virq, pd->bmp.ipi_debug_brk_mask); | 699 | cpu, virq, pd->ipi_debug_brk_mask); |
697 | } | 700 | } |
698 | 701 | ||
699 | void __init ps3_register_ipi_irq(unsigned int cpu, unsigned int virq) | 702 | void __init ps3_register_ipi_irq(unsigned int cpu, unsigned int virq) |
@@ -714,14 +717,14 @@ static unsigned int ps3_get_irq(void) | |||
714 | 717 | ||
715 | /* check for ipi break first to stop this cpu ASAP */ | 718 | /* check for ipi break first to stop this cpu ASAP */ |
716 | 719 | ||
717 | if (x & pd->bmp.ipi_debug_brk_mask) | 720 | if (x & pd->ipi_debug_brk_mask) |
718 | x &= pd->bmp.ipi_debug_brk_mask; | 721 | x &= pd->ipi_debug_brk_mask; |
719 | 722 | ||
720 | asm volatile("cntlzd %0,%1" : "=r" (plug) : "r" (x)); | 723 | asm volatile("cntlzd %0,%1" : "=r" (plug) : "r" (x)); |
721 | plug &= 0x3f; | 724 | plug &= 0x3f; |
722 | 725 | ||
723 | if (unlikely(plug == NO_IRQ)) { | 726 | if (unlikely(plug == NO_IRQ)) { |
724 | pr_debug("%s:%d: no plug found: thread_id %llu\n", __func__, | 727 | DBG("%s:%d: no plug found: thread_id %llu\n", __func__, |
725 | __LINE__, pd->thread_id); | 728 | __LINE__, pd->thread_id); |
726 | dump_bmp(&per_cpu(ps3_private, 0)); | 729 | dump_bmp(&per_cpu(ps3_private, 0)); |
727 | dump_bmp(&per_cpu(ps3_private, 1)); | 730 | dump_bmp(&per_cpu(ps3_private, 1)); |
@@ -760,9 +763,9 @@ void __init ps3_init_IRQ(void) | |||
760 | 763 | ||
761 | lv1_get_logical_ppe_id(&pd->ppe_id); | 764 | lv1_get_logical_ppe_id(&pd->ppe_id); |
762 | pd->thread_id = get_hard_smp_processor_id(cpu); | 765 | pd->thread_id = get_hard_smp_processor_id(cpu); |
763 | spin_lock_init(&pd->bmp.lock); | 766 | spin_lock_init(&pd->bmp_lock); |
764 | 767 | ||
765 | pr_debug("%s:%d: ppe_id %llu, thread_id %llu, bmp %lxh\n", | 768 | DBG("%s:%d: ppe_id %llu, thread_id %llu, bmp %lxh\n", |
766 | __func__, __LINE__, pd->ppe_id, pd->thread_id, | 769 | __func__, __LINE__, pd->ppe_id, pd->thread_id, |
767 | ps3_mm_phys_to_lpar(__pa(&pd->bmp))); | 770 | ps3_mm_phys_to_lpar(__pa(&pd->bmp))); |
768 | 771 | ||
@@ -770,7 +773,7 @@ void __init ps3_init_IRQ(void) | |||
770 | pd->thread_id, ps3_mm_phys_to_lpar(__pa(&pd->bmp))); | 773 | pd->thread_id, ps3_mm_phys_to_lpar(__pa(&pd->bmp))); |
771 | 774 | ||
772 | if (result) | 775 | if (result) |
773 | pr_debug("%s:%d: lv1_configure_irq_state_bitmap failed:" | 776 | FAIL("%s:%d: lv1_configure_irq_state_bitmap failed:" |
774 | " %s\n", __func__, __LINE__, | 777 | " %s\n", __func__, __LINE__, |
775 | ps3_result(result)); | 778 | ps3_result(result)); |
776 | } | 779 | } |