// SPDX-License-Identifier: GPL-2.0 #include #include #include #include int msi_compose_msg(unsigned int irq, struct msi_msg *msg) { msg->address_hi = (unsigned int)(MSIX_MSG_ADDR >> 32); msg->address_lo = (unsigned int)(MSIX_MSG_ADDR & 0xffffffff); msg->data = irq; return irq; } void sw64_irq_noop(struct irq_data *d) { } void arch_teardown_msi_irq(unsigned int irq) { }