{
struct msi_msg msg;
- msi_compose_msg(desc, &msg);
+ msi_compose_msg(desc->arch.vector, desc->arch.cpu_mask, &msg);
return hpet_msi_write(desc->action->dev_id, &msg);
}
/*
* MSI message composition
*/
-void msi_compose_msg(struct irq_desc *desc, struct msi_msg *msg)
+void msi_compose_msg(unsigned vector, const cpumask_t *cpu_mask, struct msi_msg *msg)
{
unsigned dest;
- int vector = desc->arch.vector;
memset(msg, 0, sizeof(*msg));
- if ( !cpumask_intersects(desc->arch.cpu_mask, &cpu_online_map) ) {
+ if ( !cpumask_intersects(cpu_mask, &cpu_online_map) ) {
dprintk(XENLOG_ERR,"%s, compose msi message error!!\n", __func__);
return;
}
if ( vector ) {
cpumask_t *mask = this_cpu(scratch_mask);
- cpumask_and(mask, desc->arch.cpu_mask, &cpu_online_map);
+ cpumask_and(mask, cpu_mask, &cpu_online_map);
dest = cpu_mask_to_apicid(mask);
msg->address_hi = MSI_ADDR_BASE_HI;
desc->msi_desc = msidesc;
desc->handler = handler;
- msi_compose_msg(desc, &msg);
+ msi_compose_msg(desc->arch.vector, desc->arch.cpu_mask, &msg);
return write_msi_msg(msidesc, &msg);
}
return;
}
- msi_compose_msg(desc, &msg);
+ msi_compose_msg(desc->arch.vector, desc->arch.cpu_mask, &msg);
/* Are these overrides really needed? */
if (x2apic_enabled)
msg.address_hi = dest & 0xFFFFFF00;
};
void early_msi_init(void);
-void msi_compose_msg(struct irq_desc *, struct msi_msg *);
+void msi_compose_msg(unsigned vector, const cpumask_t *mask,
+ struct msi_msg *msg);
void __msi_set_enable(u16 seg, u8 bus, u8 slot, u8 func, int pos, int enable);
void mask_msi_irq(struct irq_desc *);
void unmask_msi_irq(struct irq_desc *);