Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 60583
b: refs/heads/master
c: aab8350
h: refs/heads/master
i:
  60581: 468c559
  60579: 4509b78
  60575: cfb9f0e
v: v3
  • Loading branch information
Geoff Levand authored and Paul Mackerras committed Jun 28, 2007
1 parent 6c91011 commit 73843e4
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 27 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ffbdd246478693673adcfe1c34b29714cf25dadd
refs/heads/master: aab835007097122c3a1e7a7dddda0cf89a94cd4e
55 changes: 29 additions & 26 deletions trunk/arch/powerpc/platforms/ps3/interrupt.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,14 @@ struct ps3_bmp {
/**
* struct ps3_private - a per cpu data structure
* @bmp: ps3_bmp structure
* @node: HV logical_ppe_id
* @cpu: HV thread_id
* @ppe_id: HV logical_ppe_id
* @thread_id: HV thread_id
*/

struct ps3_private {
struct ps3_bmp bmp __attribute__ ((aligned (PS3_BMP_MINALIGN)));
u64 node;
unsigned int cpu;
u64 ppe_id;
u64 thread_id;
};

static DEFINE_PER_CPU(struct ps3_private, ps3_private);
Expand All @@ -105,7 +105,8 @@ static void ps3_chip_mask(unsigned int virq)
u64 old;
unsigned long flags;

pr_debug("%s:%d: cpu %u, virq %d\n", __func__, __LINE__, pd->cpu, virq);
pr_debug("%s:%d: thread_id %lu, virq %d\n", __func__, __LINE__,
pd->thread_id, virq);

local_irq_save(flags);
asm volatile(
Expand All @@ -117,7 +118,7 @@ static void ps3_chip_mask(unsigned int virq)
: "r" (bit), "r" (p)
: "cc" );

lv1_did_update_interrupt_mask(pd->node, pd->cpu);
lv1_did_update_interrupt_mask(pd->ppe_id, pd->thread_id);
local_irq_restore(flags);
}

Expand All @@ -136,7 +137,8 @@ static void ps3_chip_unmask(unsigned int virq)
u64 old;
unsigned long flags;

pr_debug("%s:%d: cpu %u, virq %d\n", __func__, __LINE__, pd->cpu, virq);
pr_debug("%s:%d: thread_id %lu, virq %d\n", __func__, __LINE__,
pd->thread_id, virq);

local_irq_save(flags);
asm volatile(
Expand All @@ -148,7 +150,7 @@ static void ps3_chip_unmask(unsigned int virq)
: "r" (bit), "r" (p)
: "cc" );

lv1_did_update_interrupt_mask(pd->node, pd->cpu);
lv1_did_update_interrupt_mask(pd->ppe_id, pd->thread_id);
local_irq_restore(flags);
}

Expand All @@ -162,7 +164,7 @@ static void ps3_chip_unmask(unsigned int virq)
static void ps3_chip_eoi(unsigned int virq)
{
const struct ps3_private *pd = get_irq_chip_data(virq);
lv1_end_of_interrupt_ext(pd->node, pd->cpu, virq);
lv1_end_of_interrupt_ext(pd->ppe_id, pd->thread_id, virq);
}

/**
Expand Down Expand Up @@ -241,8 +243,8 @@ int ps3_virq_destroy(unsigned int virq)
{
const struct ps3_private *pd = get_irq_chip_data(virq);

pr_debug("%s:%d: node %lu, cpu %d, virq %u\n", __func__, __LINE__,
pd->node, pd->cpu, virq);
pr_debug("%s:%d: ppe_id %lu, thread_id %lu, virq %u\n", __func__,
__LINE__, pd->ppe_id, pd->thread_id, virq);

set_irq_chip_data(virq, NULL);
irq_dispose_mapping(virq);
Expand Down Expand Up @@ -278,7 +280,8 @@ int ps3_irq_plug_setup(enum ps3_cpu_binding cpu, unsigned long outlet,

/* Binds outlet to cpu + virq. */

result = lv1_connect_irq_plug_ext(pd->node, pd->cpu, *virq, outlet, 0);
result = lv1_connect_irq_plug_ext(pd->ppe_id, pd->thread_id, *virq,
outlet, 0);

if (result) {
pr_info("%s:%d: lv1_connect_irq_plug_ext failed: %s\n",
Expand Down Expand Up @@ -310,12 +313,12 @@ int ps3_irq_plug_destroy(unsigned int virq)
int result;
const struct ps3_private *pd = get_irq_chip_data(virq);

pr_debug("%s:%d: node %lu, cpu %d, virq %u\n", __func__, __LINE__,
pd->node, pd->cpu, virq);
pr_debug("%s:%d: ppe_id %lu, thread_id %lu, virq %u\n", __func__,
__LINE__, pd->ppe_id, pd->thread_id, virq);

ps3_chip_mask(virq);

result = lv1_disconnect_irq_plug_ext(pd->node, pd->cpu, virq);
result = lv1_disconnect_irq_plug_ext(pd->ppe_id, pd->thread_id, virq);

if (result)
pr_info("%s:%d: lv1_disconnect_irq_plug_ext failed: %s\n",
Expand Down Expand Up @@ -657,8 +660,8 @@ static void _dump_bmp(struct ps3_private* pd, const char* func, int line)
unsigned long flags;

spin_lock_irqsave(&pd->bmp.lock, flags);
_dump_64_bmp("stat", &pd->bmp.status, pd->cpu, func, line);
_dump_64_bmp("mask", &pd->bmp.mask, pd->cpu, func, line);
_dump_64_bmp("stat", &pd->bmp.status, pd->thread_id, func, line);
_dump_64_bmp("mask", &pd->bmp.mask, pd->thread_id, func, line);
spin_unlock_irqrestore(&pd->bmp.lock, flags);
}

Expand All @@ -669,7 +672,7 @@ static void __maybe_unused _dump_mask(struct ps3_private *pd,
unsigned long flags;

spin_lock_irqsave(&pd->bmp.lock, flags);
_dump_64_bmp("mask", &pd->bmp.mask, pd->cpu, func, line);
_dump_64_bmp("mask", &pd->bmp.mask, pd->thread_id, func, line);
spin_unlock_irqrestore(&pd->bmp.lock, flags);
}
#else
Expand Down Expand Up @@ -722,8 +725,8 @@ static unsigned int ps3_get_irq(void)
plug &= 0x3f;

if (unlikely(plug) == NO_IRQ) {
pr_debug("%s:%d: no plug found: cpu %u\n", __func__, __LINE__,
pd->cpu);
pr_debug("%s:%d: no plug found: thread_id %lu\n", __func__,
__LINE__, pd->thread_id);
dump_bmp(&per_cpu(ps3_private, 0));
dump_bmp(&per_cpu(ps3_private, 1));
return NO_IRQ;
Expand Down Expand Up @@ -753,16 +756,16 @@ void __init ps3_init_IRQ(void)
for_each_possible_cpu(cpu) {
struct ps3_private *pd = &per_cpu(ps3_private, cpu);

lv1_get_logical_ppe_id(&pd->node);
pd->cpu = get_hard_smp_processor_id(cpu);
lv1_get_logical_ppe_id(&pd->ppe_id);
pd->thread_id = get_hard_smp_processor_id(cpu);
spin_lock_init(&pd->bmp.lock);

pr_debug("%s:%d: node %lu, cpu %d, bmp %lxh\n", __func__,
__LINE__, pd->node, pd->cpu,
pr_debug("%s:%d: ppe_id %lu, thread_id %lu, bmp %lxh\n",
__func__, __LINE__, pd->ppe_id, pd->thread_id,
ps3_mm_phys_to_lpar(__pa(&pd->bmp)));

result = lv1_configure_irq_state_bitmap(pd->node, pd->cpu,
ps3_mm_phys_to_lpar(__pa(&pd->bmp)));
result = lv1_configure_irq_state_bitmap(pd->ppe_id,
pd->thread_id, ps3_mm_phys_to_lpar(__pa(&pd->bmp)));

if (result)
pr_debug("%s:%d: lv1_configure_irq_state_bitmap failed:"
Expand Down

0 comments on commit 73843e4

Please sign in to comment.