mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-28 17:41:50 +00:00
MIPS: BCM63xx: Allow setting affinity for IPIC
Wire up the set_affinity call for the internal PIC if booting on a cpu supporting it. Affinity is kept to boot cpu as default. Signed-off-by: Jonas Gorski <jogo@openwrt.org> Cc: linux-mips@linux-mips.org Cc: John Crispin <blogic@openwrt.org> Cc: Maxime Bizon <mbizon@freebox.fr> Cc: Florian Fainelli <florian@openwrt.org> Cc: Kevin Cernekee <cernekee@gmail.com> Cc: Gregory Fong <gregory.0xf0@gmail.com> Patchwork: https://patchwork.linux-mips.org/patch/7323/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
parent
553e25b3da
commit
b37f0f691e
1 changed files with 40 additions and 6 deletions
|
@ -32,7 +32,7 @@ static unsigned int ext_irq_count;
|
||||||
static unsigned int ext_irq_start, ext_irq_end;
|
static unsigned int ext_irq_start, ext_irq_end;
|
||||||
static unsigned int ext_irq_cfg_reg1, ext_irq_cfg_reg2;
|
static unsigned int ext_irq_cfg_reg1, ext_irq_cfg_reg2;
|
||||||
static void (*internal_irq_mask)(struct irq_data *d);
|
static void (*internal_irq_mask)(struct irq_data *d);
|
||||||
static void (*internal_irq_unmask)(struct irq_data *d);
|
static void (*internal_irq_unmask)(struct irq_data *d, const struct cpumask *m);
|
||||||
|
|
||||||
|
|
||||||
static inline u32 get_ext_irq_perf_reg(int irq)
|
static inline u32 get_ext_irq_perf_reg(int irq)
|
||||||
|
@ -51,6 +51,20 @@ static inline void handle_internal(int intbit)
|
||||||
do_IRQ(intbit + IRQ_INTERNAL_BASE);
|
do_IRQ(intbit + IRQ_INTERNAL_BASE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline int enable_irq_for_cpu(int cpu, struct irq_data *d,
|
||||||
|
const struct cpumask *m)
|
||||||
|
{
|
||||||
|
bool enable = cpu_online(cpu);
|
||||||
|
|
||||||
|
#ifdef CONFIG_SMP
|
||||||
|
if (m)
|
||||||
|
enable &= cpu_isset(cpu, *m);
|
||||||
|
else if (irqd_affinity_was_set(d))
|
||||||
|
enable &= cpu_isset(cpu, *d->affinity);
|
||||||
|
#endif
|
||||||
|
return enable;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* dispatch internal devices IRQ (uart, enet, watchdog, ...). do not
|
* dispatch internal devices IRQ (uart, enet, watchdog, ...). do not
|
||||||
* prioritize any interrupt relatively to another. the static counter
|
* prioritize any interrupt relatively to another. the static counter
|
||||||
|
@ -117,7 +131,8 @@ static void __internal_irq_mask_##width(struct irq_data *d) \
|
||||||
spin_unlock_irqrestore(&ipic_lock, flags); \
|
spin_unlock_irqrestore(&ipic_lock, flags); \
|
||||||
} \
|
} \
|
||||||
\
|
\
|
||||||
static void __internal_irq_unmask_##width(struct irq_data *d) \
|
static void __internal_irq_unmask_##width(struct irq_data *d, \
|
||||||
|
const struct cpumask *m) \
|
||||||
{ \
|
{ \
|
||||||
u32 val; \
|
u32 val; \
|
||||||
unsigned irq = d->irq - IRQ_INTERNAL_BASE; \
|
unsigned irq = d->irq - IRQ_INTERNAL_BASE; \
|
||||||
|
@ -132,7 +147,7 @@ static void __internal_irq_unmask_##width(struct irq_data *d) \
|
||||||
break; \
|
break; \
|
||||||
\
|
\
|
||||||
val = bcm_readl(irq_mask_addr[cpu] + reg * sizeof(u32));\
|
val = bcm_readl(irq_mask_addr[cpu] + reg * sizeof(u32));\
|
||||||
if (cpu_online(cpu)) \
|
if (enable_irq_for_cpu(cpu, d, m)) \
|
||||||
val |= (1 << bit); \
|
val |= (1 << bit); \
|
||||||
else \
|
else \
|
||||||
val &= ~(1 << bit); \
|
val &= ~(1 << bit); \
|
||||||
|
@ -189,7 +204,7 @@ static void bcm63xx_internal_irq_mask(struct irq_data *d)
|
||||||
|
|
||||||
static void bcm63xx_internal_irq_unmask(struct irq_data *d)
|
static void bcm63xx_internal_irq_unmask(struct irq_data *d)
|
||||||
{
|
{
|
||||||
internal_irq_unmask(d);
|
internal_irq_unmask(d, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -237,7 +252,8 @@ static void bcm63xx_external_irq_unmask(struct irq_data *d)
|
||||||
spin_unlock_irqrestore(&epic_lock, flags);
|
spin_unlock_irqrestore(&epic_lock, flags);
|
||||||
|
|
||||||
if (is_ext_irq_cascaded)
|
if (is_ext_irq_cascaded)
|
||||||
internal_irq_unmask(irq_get_irq_data(irq + ext_irq_start));
|
internal_irq_unmask(irq_get_irq_data(irq + ext_irq_start),
|
||||||
|
NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void bcm63xx_external_irq_clear(struct irq_data *d)
|
static void bcm63xx_external_irq_clear(struct irq_data *d)
|
||||||
|
@ -356,6 +372,18 @@ static int bcm63xx_external_irq_set_type(struct irq_data *d,
|
||||||
return IRQ_SET_MASK_OK_NOCOPY;
|
return IRQ_SET_MASK_OK_NOCOPY;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CONFIG_SMP
|
||||||
|
static int bcm63xx_internal_set_affinity(struct irq_data *data,
|
||||||
|
const struct cpumask *dest,
|
||||||
|
bool force)
|
||||||
|
{
|
||||||
|
if (!irqd_irq_disabled(data))
|
||||||
|
internal_irq_unmask(data, dest);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static struct irq_chip bcm63xx_internal_irq_chip = {
|
static struct irq_chip bcm63xx_internal_irq_chip = {
|
||||||
.name = "bcm63xx_ipic",
|
.name = "bcm63xx_ipic",
|
||||||
.irq_mask = bcm63xx_internal_irq_mask,
|
.irq_mask = bcm63xx_internal_irq_mask,
|
||||||
|
@ -523,7 +551,13 @@ void __init arch_init_irq(void)
|
||||||
|
|
||||||
setup_irq(MIPS_CPU_IRQ_BASE + 2, &cpu_ip2_cascade_action);
|
setup_irq(MIPS_CPU_IRQ_BASE + 2, &cpu_ip2_cascade_action);
|
||||||
#ifdef CONFIG_SMP
|
#ifdef CONFIG_SMP
|
||||||
if (is_ext_irq_cascaded)
|
if (is_ext_irq_cascaded) {
|
||||||
setup_irq(MIPS_CPU_IRQ_BASE + 3, &cpu_ip3_cascade_action);
|
setup_irq(MIPS_CPU_IRQ_BASE + 3, &cpu_ip3_cascade_action);
|
||||||
|
bcm63xx_internal_irq_chip.irq_set_affinity =
|
||||||
|
bcm63xx_internal_set_affinity;
|
||||||
|
|
||||||
|
cpumask_clear(irq_default_affinity);
|
||||||
|
cpumask_set_cpu(smp_processor_id(), irq_default_affinity);
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue