[IA64] Support irq migration across domain
Add support for IRQ migration across vector domain. Signed-off-by: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com> Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com> Signed-off-by: Tony Luck <tony.luck@intel.com>
This commit is contained in:
Родитель
4994be1b3f
Коммит
cd378f18cf
|
@ -354,11 +354,13 @@ iosapic_set_affinity (unsigned int irq, cpumask_t mask)
|
||||||
|
|
||||||
irq &= (~IA64_IRQ_REDIRECTED);
|
irq &= (~IA64_IRQ_REDIRECTED);
|
||||||
|
|
||||||
/* IRQ migration across domain is not supported yet */
|
cpus_and(mask, mask, cpu_online_map);
|
||||||
cpus_and(mask, mask, irq_to_domain(irq));
|
|
||||||
if (cpus_empty(mask))
|
if (cpus_empty(mask))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
if (reassign_irq_vector(irq, first_cpu(mask)))
|
||||||
|
return;
|
||||||
|
|
||||||
dest = cpu_physical_id(first_cpu(mask));
|
dest = cpu_physical_id(first_cpu(mask));
|
||||||
|
|
||||||
if (list_empty(&iosapic_intr_info[irq].rtes))
|
if (list_empty(&iosapic_intr_info[irq].rtes))
|
||||||
|
@ -376,6 +378,8 @@ iosapic_set_affinity (unsigned int irq, cpumask_t mask)
|
||||||
else
|
else
|
||||||
/* change delivery mode to fixed */
|
/* change delivery mode to fixed */
|
||||||
low32 |= (IOSAPIC_FIXED << IOSAPIC_DELIVERY_SHIFT);
|
low32 |= (IOSAPIC_FIXED << IOSAPIC_DELIVERY_SHIFT);
|
||||||
|
low32 &= IOSAPIC_VECTOR_MASK;
|
||||||
|
low32 |= irq_to_vector(irq);
|
||||||
|
|
||||||
iosapic_intr_info[irq].low32 = low32;
|
iosapic_intr_info[irq].low32 = low32;
|
||||||
iosapic_intr_info[irq].dest = dest;
|
iosapic_intr_info[irq].dest = dest;
|
||||||
|
@ -404,10 +408,20 @@ iosapic_end_level_irq (unsigned int irq)
|
||||||
{
|
{
|
||||||
ia64_vector vec = irq_to_vector(irq);
|
ia64_vector vec = irq_to_vector(irq);
|
||||||
struct iosapic_rte_info *rte;
|
struct iosapic_rte_info *rte;
|
||||||
|
int do_unmask_irq = 0;
|
||||||
|
|
||||||
|
if (unlikely(irq_desc[irq].status & IRQ_MOVE_PENDING)) {
|
||||||
|
do_unmask_irq = 1;
|
||||||
|
mask_irq(irq);
|
||||||
|
}
|
||||||
|
|
||||||
move_native_irq(irq);
|
|
||||||
list_for_each_entry(rte, &iosapic_intr_info[irq].rtes, rte_list)
|
list_for_each_entry(rte, &iosapic_intr_info[irq].rtes, rte_list)
|
||||||
iosapic_eoi(rte->iosapic->addr, vec);
|
iosapic_eoi(rte->iosapic->addr, vec);
|
||||||
|
|
||||||
|
if (unlikely(do_unmask_irq)) {
|
||||||
|
move_masked_irq(irq);
|
||||||
|
unmask_irq(irq);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#define iosapic_shutdown_level_irq mask_irq
|
#define iosapic_shutdown_level_irq mask_irq
|
||||||
|
|
|
@ -172,15 +172,13 @@ int bind_irq_vector(int irq, int vector, cpumask_t domain)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void clear_irq_vector(int irq)
|
static void __clear_irq_vector(int irq)
|
||||||
{
|
{
|
||||||
unsigned long flags;
|
|
||||||
int vector, cpu, pos;
|
int vector, cpu, pos;
|
||||||
cpumask_t mask;
|
cpumask_t mask;
|
||||||
cpumask_t domain;
|
cpumask_t domain;
|
||||||
struct irq_cfg *cfg = &irq_cfg[irq];
|
struct irq_cfg *cfg = &irq_cfg[irq];
|
||||||
|
|
||||||
spin_lock_irqsave(&vector_lock, flags);
|
|
||||||
BUG_ON((unsigned)irq >= NR_IRQS);
|
BUG_ON((unsigned)irq >= NR_IRQS);
|
||||||
BUG_ON(cfg->vector == IRQ_VECTOR_UNASSIGNED);
|
BUG_ON(cfg->vector == IRQ_VECTOR_UNASSIGNED);
|
||||||
vector = cfg->vector;
|
vector = cfg->vector;
|
||||||
|
@ -193,6 +191,14 @@ static void clear_irq_vector(int irq)
|
||||||
irq_status[irq] = IRQ_UNUSED;
|
irq_status[irq] = IRQ_UNUSED;
|
||||||
pos = vector - IA64_FIRST_DEVICE_VECTOR;
|
pos = vector - IA64_FIRST_DEVICE_VECTOR;
|
||||||
cpus_andnot(vector_table[pos], vector_table[pos], domain);
|
cpus_andnot(vector_table[pos], vector_table[pos], domain);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void clear_irq_vector(int irq)
|
||||||
|
{
|
||||||
|
unsigned long flags;
|
||||||
|
|
||||||
|
spin_lock_irqsave(&vector_lock, flags);
|
||||||
|
__clear_irq_vector(irq);
|
||||||
spin_unlock_irqrestore(&vector_lock, flags);
|
spin_unlock_irqrestore(&vector_lock, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -275,6 +281,36 @@ void destroy_and_reserve_irq(unsigned int irq)
|
||||||
reserve_irq(irq);
|
reserve_irq(irq);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int __reassign_irq_vector(int irq, int cpu)
|
||||||
|
{
|
||||||
|
struct irq_cfg *cfg = &irq_cfg[irq];
|
||||||
|
int vector;
|
||||||
|
cpumask_t domain;
|
||||||
|
|
||||||
|
if (cfg->vector == IRQ_VECTOR_UNASSIGNED || !cpu_online(cpu))
|
||||||
|
return -EINVAL;
|
||||||
|
if (cpu_isset(cpu, cfg->domain))
|
||||||
|
return 0;
|
||||||
|
domain = vector_allocation_domain(cpu);
|
||||||
|
vector = find_unassigned_vector(domain);
|
||||||
|
if (vector < 0)
|
||||||
|
return -ENOSPC;
|
||||||
|
__clear_irq_vector(irq);
|
||||||
|
BUG_ON(__bind_irq_vector(irq, vector, domain));
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int reassign_irq_vector(int irq, int cpu)
|
||||||
|
{
|
||||||
|
unsigned long flags;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
spin_lock_irqsave(&vector_lock, flags);
|
||||||
|
ret = __reassign_irq_vector(irq, cpu);
|
||||||
|
spin_unlock_irqrestore(&vector_lock, flags);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Dynamic irq allocate and deallocation for MSI
|
* Dynamic irq allocate and deallocation for MSI
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
|
|
||||||
#define MSI_DATA_VECTOR_SHIFT 0
|
#define MSI_DATA_VECTOR_SHIFT 0
|
||||||
#define MSI_DATA_VECTOR(v) (((u8)v) << MSI_DATA_VECTOR_SHIFT)
|
#define MSI_DATA_VECTOR(v) (((u8)v) << MSI_DATA_VECTOR_SHIFT)
|
||||||
|
#define MSI_DATA_VECTOR_MASK 0xffffff00
|
||||||
|
|
||||||
#define MSI_DATA_DELIVERY_SHIFT 8
|
#define MSI_DATA_DELIVERY_SHIFT 8
|
||||||
#define MSI_DATA_DELIVERY_FIXED (0 << MSI_DATA_DELIVERY_SHIFT)
|
#define MSI_DATA_DELIVERY_FIXED (0 << MSI_DATA_DELIVERY_SHIFT)
|
||||||
|
@ -50,22 +51,29 @@ static struct irq_chip ia64_msi_chip;
|
||||||
static void ia64_set_msi_irq_affinity(unsigned int irq, cpumask_t cpu_mask)
|
static void ia64_set_msi_irq_affinity(unsigned int irq, cpumask_t cpu_mask)
|
||||||
{
|
{
|
||||||
struct msi_msg msg;
|
struct msi_msg msg;
|
||||||
u32 addr;
|
u32 addr, data;
|
||||||
|
int cpu = first_cpu(cpu_mask);
|
||||||
|
|
||||||
/* IRQ migration across domain is not supported yet */
|
if (!cpu_online(cpu))
|
||||||
cpus_and(cpu_mask, cpu_mask, irq_to_domain(irq));
|
return;
|
||||||
if (cpus_empty(cpu_mask))
|
|
||||||
|
if (reassign_irq_vector(irq, cpu))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
read_msi_msg(irq, &msg);
|
read_msi_msg(irq, &msg);
|
||||||
|
|
||||||
addr = msg.address_lo;
|
addr = msg.address_lo;
|
||||||
addr &= MSI_ADDR_DESTID_MASK;
|
addr &= MSI_ADDR_DESTID_MASK;
|
||||||
addr |= MSI_ADDR_DESTID_CPU(cpu_physical_id(first_cpu(cpu_mask)));
|
addr |= MSI_ADDR_DESTID_CPU(cpu_physical_id(cpu));
|
||||||
msg.address_lo = addr;
|
msg.address_lo = addr;
|
||||||
|
|
||||||
|
data = msg.data;
|
||||||
|
data &= MSI_DATA_VECTOR_MASK;
|
||||||
|
data |= MSI_DATA_VECTOR(irq_to_vector(irq));
|
||||||
|
msg.data = data;
|
||||||
|
|
||||||
write_msi_msg(irq, &msg);
|
write_msi_msg(irq, &msg);
|
||||||
irq_desc[irq].affinity = cpu_mask;
|
irq_desc[irq].affinity = cpumask_of_cpu(cpu);
|
||||||
}
|
}
|
||||||
#endif /* CONFIG_SMP */
|
#endif /* CONFIG_SMP */
|
||||||
|
|
||||||
|
|
|
@ -106,6 +106,7 @@ extern int assign_irq_vector (int irq); /* allocate a free vector */
|
||||||
extern void free_irq_vector (int vector);
|
extern void free_irq_vector (int vector);
|
||||||
extern int reserve_irq_vector (int vector);
|
extern int reserve_irq_vector (int vector);
|
||||||
extern void __setup_vector_irq(int cpu);
|
extern void __setup_vector_irq(int cpu);
|
||||||
|
extern int reassign_irq_vector(int irq, int cpu);
|
||||||
extern void ia64_send_ipi (int cpu, int vector, int delivery_mode, int redirect);
|
extern void ia64_send_ipi (int cpu, int vector, int delivery_mode, int redirect);
|
||||||
extern void register_percpu_irq (ia64_vector vec, struct irqaction *action);
|
extern void register_percpu_irq (ia64_vector vec, struct irqaction *action);
|
||||||
extern int check_irq_used (int irq);
|
extern int check_irq_used (int irq);
|
||||||
|
|
|
@ -47,6 +47,8 @@
|
||||||
#define IOSAPIC_MASK_SHIFT 16
|
#define IOSAPIC_MASK_SHIFT 16
|
||||||
#define IOSAPIC_MASK (1<<IOSAPIC_MASK_SHIFT)
|
#define IOSAPIC_MASK (1<<IOSAPIC_MASK_SHIFT)
|
||||||
|
|
||||||
|
#define IOSAPIC_VECTOR_MASK 0xffffff00
|
||||||
|
|
||||||
#ifndef __ASSEMBLY__
|
#ifndef __ASSEMBLY__
|
||||||
|
|
||||||
#ifdef CONFIG_IOSAPIC
|
#ifdef CONFIG_IOSAPIC
|
||||||
|
|
Загрузка…
Ссылка в новой задаче