aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@suse.com>2012-09-11 15:59:43 +0200
committerJan Beulich <jbeulich@suse.com>2012-09-11 15:59:43 +0200
commit510cbdf5edecc3a4898c87b02de9e4f3e9360eda (patch)
tree44647a31eb54907eeb1e0f5dd4f87da901369988
parenteda00984552b2871e23e6f8f7268f0bd6a04c473 (diff)
downloadxen-510cbdf5edecc3a4898c87b02de9e4f3e9360eda.tar.gz
xen-510cbdf5edecc3a4898c87b02de9e4f3e9360eda.tar.bz2
xen-510cbdf5edecc3a4898c87b02de9e4f3e9360eda.zip
PCI: bus scan adjustments
As done elsewhere, the ns16550 code shouldn't look at non-zero functions of a device if that isn't multi-function. Also both there and in pass-through's _scan_pci_devices() skip looking at non-zero functions when the device at function zero doesn't exist. Signed-off-by: Jan Beulich <jbeulich@suse.com> Acked-by: Keir Fraser <keir@xen.org>
-rw-r--r--xen/drivers/char/ns16550.c11
-rw-r--r--xen/drivers/passthrough/pci.c4
2 files changed, 13 insertions, 2 deletions
diff --git a/xen/drivers/char/ns16550.c b/xen/drivers/char/ns16550.c
index a6a4a2a728..2eb7f6cff7 100644
--- a/xen/drivers/char/ns16550.c
+++ b/xen/drivers/char/ns16550.c
@@ -470,21 +470,28 @@ static int
pci_uart_config (struct ns16550 *uart, int skip_amt, int bar_idx)
{
uint32_t bar, len;
- int b, d, f;
+ int b, d, f, nextf;
/* NB. Start at bus 1 to avoid AMT: a plug-in card cannot be on bus 0. */
for ( b = skip_amt ? 1 : 0; b < 0x100; b++ )
{
for ( d = 0; d < 0x20; d++ )
{
- for ( f = 0; f < 0x8; f++ )
+ for ( f = 0; f < 8; f = nextf )
{
+ nextf = (f || (pci_conf_read16(0, b, d, f, PCI_HEADER_TYPE) &
+ 0x80)) ? f + 1 : 8;
+
switch ( pci_conf_read16(0, b, d, f, PCI_CLASS_DEVICE) )
{
case 0x0700: /* single port serial */
case 0x0702: /* multi port serial */
case 0x0780: /* other (e.g serial+parallel) */
break;
+ case 0xffff:
+ if ( !f )
+ nextf = 8;
+ /* fall through */
default:
continue;
}
diff --git a/xen/drivers/passthrough/pci.c b/xen/drivers/passthrough/pci.c
index 0ab0488c27..29d88fd32d 100644
--- a/xen/drivers/passthrough/pci.c
+++ b/xen/drivers/passthrough/pci.c
@@ -665,7 +665,11 @@ static int __init _scan_pci_devices(struct pci_seg *pseg, void *arg)
for ( func = 0; func < 8; func++ )
{
if ( pci_device_detect(pseg->nr, bus, dev, func) == 0 )
+ {
+ if ( !func )
+ break;
continue;
+ }
pdev = alloc_pdev(pseg, bus, PCI_DEVFN(dev, func));
if ( !pdev )