Re: [PATCH 2/3] usb: enable pci MSI/MSIX in usb core

From: Alex,Shi
Date: Thu Feb 23 2012 - 20:48:46 EST



> > Felipe, can you please review this patch for the effects on non-PCI
> > hosts? I think nothing will change, since this patchset just modifies
> > the USB core PCI initialization flow, but I need your eyes on this. :)
>
> Sure thing :-)

Thanks a lot!

> > > +/* Check for buggy HCD devices, and driver's expectation for MSI.
>
> please use the preferred multi-line comment style.

See and thanks!

> > > + retval = request_irq(hcd->msix_entries[i].vector,
> > > + (irq_handler_t)hcd->driver->msix_irq,
>
> do you really need this cast here ?

Yes, otherwise the complain like here:
drivers/usb/core/hcd-pci.c:330: warning: passing argument 2 of ârequest_irqâ from incompatible pointer type
include/linux/interrupt.h:134: note: expected âirq_handler_tâ but argument is of type âenum irqreturn_t (* const)(int, struct usb_hcd *)â

> > > +int usb_hcd_request_irqs(struct usb_hcd *hcd, unsigned int irqnum,
> > > + unsigned long irqflags)
> > > +{
> > > + int retval = 1;
> > > +
> > > +#ifdef CONFIG_PCI
> > > + retval = usb_hcd_request_msi_msix_irqs(hcd, irqnum, irqflags);
> > > +#endif
>
> I would like it better if the #ifdef is in the function body, something
> like:
>
> int usb_hcd_request_msi_msix_irqs(struct hcd *hcd, int irqnum, int irqflags)
> {
> #ifdef CONFIG_PCI
> /* blablabla */
> #else
> return -ENODEV;
> #endif
> }

The function usb_hcd_request_msi_msix_irqs() is defined in hcd-pci.c. If
you don't like to see '#ifdef CONFIG_PCI' in hcd.c, maybe we can add a
same name function usb_hcd_request_msi_msix_irqs() in hcd.h for non-pci
environment. Is that ok of the following?
------
diff --git a/drivers/usb/core/hcd.c b/drivers/usb/core/hcd.c
index 579cbd3..9bc6568 100644
--- a/drivers/usb/core/hcd.c
+++ b/drivers/usb/core/hcd.c
@@ -2365,12 +2365,9 @@ static int usb_hcd_request_default_irqs(struct usb_hcd *hcd,
int usb_hcd_request_irqs(struct usb_hcd *hcd, unsigned int irqnum,
unsigned long irqflags)
{
- int retval = 1;
+ int retval = 0;

-#ifdef CONFIG_PCI
- retval = usb_hcd_request_msi_msix_irqs(hcd, irqnum, irqflags);
-#endif
- if (retval)
+ if (usb_hcd_request_msi_msix_irqs(hcd, irqnum, irqflags))
retval = usb_hcd_request_default_irqs(hcd, irqnum, irqflags);

return retval;
diff --git a/include/linux/usb/hcd.h b/include/linux/usb/hcd.h
index 5253c02..6743ed8 100644
--- a/include/linux/usb/hcd.h
+++ b/include/linux/usb/hcd.h
@@ -413,6 +413,13 @@ extern int usb_hcd_register_msi_msix_irqs(struct usb_hcd *hcd);
#ifdef CONFIG_PM_SLEEP
extern const struct dev_pm_ops usb_hcd_pci_pm_ops;
#endif
+
+#else
+extern int usb_hcd_request_msi_msix_irqs(struct usb_hcd *hcd,
+ unsigned int irqnum, unsigned long irqflags)
+{
+ return -ENODEV;
+}
#endif /* CONFIG_PCI */

/* pci-ish (pdev null is ok) buffer alloc/mapping support */

> Yeah, I don't think this will break anything for my non-PCI stuff, but
> the very fact that usbcore knows so much about PCI is quite a bummer. I
> think usbcore should know about USB Devices and HCDs, no matter if it's
> PCI or platform BUS or whatever else, but that's just me and changing
> that would be quite a big re-work.
>

Thanks again for all comments!

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/