diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2020-08-05 12:13:10 -0700 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2020-08-05 12:13:10 -0700 | 
| commit | ecfd7940b8641da6e41ca94eba36876dc2ba827b (patch) | |
| tree | b25d042366a3b6f165abb4c9fba9b9faf1ba33f6 /drivers/usb/core/hcd-pci.c | |
| parent | dd27111e32572fdd3aaae98ba2817df6d202357a (diff) | |
| parent | e3ee0e740c3887d2293e8d54a8707218d70d86ca (diff) | |
Merge tag 'usb-5.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb
Pull USB/Thunderbolt updates from Greg KH:
 "Here is the large set of USB and Thunderbolt patches for 5.9-rc1.
  Nothing really magic/major in here, just lots of little changes and
  updates:
   - clean up language usages in USB core and some drivers
   - Thunderbolt driver updates and additions
   - USB Gadget driver updates
   - dwc3 driver updates (like always...)
   - build with "W=1" warning fixups
   - mtu3 driver updates
   - usb-serial driver updates and device ids
   - typec additions and updates for new hardware
   - xhci debug code updates for future platforms
   - cdns3 driver updates
   - lots of other minor driver updates and fixes and cleanups
  All of these have been in linux-next for a while with no reported
  issues"
* tag 'usb-5.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb: (330 commits)
  usb: common: usb-conn-gpio: Register charger
  usb: mtu3: simplify mtu3_req_complete()
  usb: mtu3: clear dual mode of u3port when disable device
  usb: mtu3: use MTU3_EP_WEDGE flag
  usb: mtu3: remove useless member @busy in mtu3_ep struct
  usb: mtu3: remove repeated error log
  usb: mtu3: add ->udc_set_speed()
  usb: mtu3: introduce a funtion to check maximum speed
  usb: mtu3: clear interrupts status when disable interrupts
  usb: mtu3: reinitialize CSR registers
  usb: mtu3: fix macro for maximum number of packets
  usb: mtu3: remove unnecessary pointer checks
  usb: xhci: Fix ASMedia ASM1142 DMA addressing
  usb: xhci: define IDs for various ASMedia host controllers
  usb: musb: convert to devm_platform_ioremap_resource_byname
  usb: gadget: tegra-xudc: convert to devm_platform_ioremap_resource_byname
  usb: gadget: r8a66597: convert to devm_platform_ioremap_resource_byname
  usb: dwc3: convert to devm_platform_ioremap_resource_byname
  usb: cdns3: convert to devm_platform_ioremap_resource_byname
  usb: phy: am335x: convert to devm_platform_ioremap_resource_byname
  ...
Diffstat (limited to 'drivers/usb/core/hcd-pci.c')
| -rw-r--r-- | drivers/usb/core/hcd-pci.c | 14 | 
1 files changed, 10 insertions, 4 deletions
diff --git a/drivers/usb/core/hcd-pci.c b/drivers/usb/core/hcd-pci.c index 1547aa6e5314..4dc443aaef5c 100644 --- a/drivers/usb/core/hcd-pci.c +++ b/drivers/usb/core/hcd-pci.c @@ -194,20 +194,21 @@ int usb_hcd_pci_probe(struct pci_dev *dev, const struct pci_device_id *id,  	 * make sure irq setup is not touched for xhci in generic hcd code  	 */  	if ((driver->flags & HCD_MASK) < HCD_USB3) { -		if (!dev->irq) { +		retval = pci_alloc_irq_vectors(dev, 1, 1, PCI_IRQ_LEGACY | PCI_IRQ_MSI); +		if (retval < 0) {  			dev_err(&dev->dev,  			"Found HC with no IRQ. Check BIOS/PCI %s setup!\n",  				pci_name(dev));  			retval = -ENODEV;  			goto disable_pci;  		} -		hcd_irq = dev->irq; +		hcd_irq = pci_irq_vector(dev, 0);  	}  	hcd = usb_create_hcd(driver, &dev->dev, pci_name(dev));  	if (!hcd) {  		retval = -ENOMEM; -		goto disable_pci; +		goto free_irq_vectors;  	}  	hcd->amd_resume_bug = (usb_hcd_amd_remote_wakeup_quirk(dev) && @@ -286,6 +287,9 @@ int usb_hcd_pci_probe(struct pci_dev *dev, const struct pci_device_id *id,  put_hcd:  	usb_put_hcd(hcd); +free_irq_vectors: +	if ((driver->flags & HCD_MASK) < HCD_USB3) +		pci_free_irq_vectors(dev);  disable_pci:  	pci_disable_device(dev);  	dev_err(&dev->dev, "init %s fail, %d\n", pci_name(dev), retval); @@ -343,6 +347,8 @@ void usb_hcd_pci_remove(struct pci_dev *dev)  		up_read(&companions_rwsem);  	}  	usb_put_hcd(hcd); +	if ((hcd->driver->flags & HCD_MASK) < HCD_USB3) +		pci_free_irq_vectors(dev);  	pci_disable_device(dev);  }  EXPORT_SYMBOL_GPL(usb_hcd_pci_remove); @@ -454,7 +460,7 @@ static int suspend_common(struct device *dev, bool do_wakeup)  	 * synchronized here.  	 */  	if (!hcd->msix_enabled) -		synchronize_irq(pci_dev->irq); +		synchronize_irq(pci_irq_vector(pci_dev, 0));  	/* Downstream ports from this root hub should already be quiesced, so  	 * there will be no DMA activity.  Now we can shut down the upstream  | 
