Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 21ccdd31 authored by Michael Ellerman's avatar Michael Ellerman Committed by Paul Mackerras
Browse files

[POWERPC] Inline u3msi_compose_msi_msg()



In the MPIC U3 MSI code, we call u3msi_compose_msi_msg() once for each MSI.
This is overkill, as the address is per pci device, not per MSI. So setup
the address once, and just set the data per MSI.

Signed-off-by: default avatarMichael Ellerman <michael@ellerman.id.au>
Acked-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent d385366a
Loading
Loading
Loading
Loading
+9 −15
Original line number Diff line number Diff line
@@ -108,26 +108,17 @@ static void u3msi_teardown_msi_irqs(struct pci_dev *pdev)
	return;
}

static void u3msi_compose_msi_msg(struct pci_dev *pdev, int virq,
				  struct msi_msg *msg)
{
	u64 addr;

	addr = find_ht_magic_addr(pdev);
	msg->address_lo = addr & 0xFFFFFFFF;
	msg->address_hi = addr >> 32;
	msg->data = virq_to_hw(virq);

	pr_debug("u3msi: allocated virq 0x%x (hw 0x%lx) at address 0x%lx\n",
		 virq, virq_to_hw(virq), addr);
}

static int u3msi_setup_msi_irqs(struct pci_dev *pdev, int nvec, int type)
{
	irq_hw_number_t hwirq;
	unsigned int virq;
	struct msi_desc *entry;
	struct msi_msg msg;
	u64 addr;

	addr = find_ht_magic_addr(pdev);
	msg.address_lo = addr & 0xFFFFFFFF;
	msg.address_hi = addr >> 32;

	list_for_each_entry(entry, &pdev->msi_list, list) {
		hwirq = mpic_msi_alloc_hwirqs(msi_mpic, 1);
@@ -147,7 +138,10 @@ static int u3msi_setup_msi_irqs(struct pci_dev *pdev, int nvec, int type)
		set_irq_chip(virq, &mpic_u3msi_chip);
		set_irq_type(virq, IRQ_TYPE_EDGE_RISING);

		u3msi_compose_msi_msg(pdev, virq, &msg);
		pr_debug("u3msi: allocated virq 0x%x (hw 0x%lx) addr 0x%lx\n",
			  virq, hwirq, addr);

		msg.data = hwirq;
		write_msi_msg(virq, &msg);

		hwirq++;