All of lore.kernel.org
 help / color / mirror / Atom feed
From: Weidong Han <weidong.han@intel.com>
To: Konrad Rzeszutek Wilk <konrad.wilk@Oracle.Com>
Cc: "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>,
	Nick Couchman <Nick.Couchman@seakr.com>
Subject: Re: PCI Passthrough Problems/Questions
Date: Wed, 27 Oct 2010 14:40:30 +0800	[thread overview]
Message-ID: <4CC7C95E.7020500@intel.com> (raw)
In-Reply-To: <20101025190752.GB6452@dumpdata.com>

Konrad Rzeszutek Wilk wrote:
> On Mon, Oct 25, 2010 at 12:50:41PM -0600, Nick Couchman wrote:
>   
>> On Mon, 2010-10-25 at 14:48 -0400, Konrad Rzeszutek Wilk wrote:
>>     
>>> On Mon, Oct 25, 2010 at 12:33:09PM -0600, Nick Couchman wrote:
>>>       
>>>> On Mon, 2010-10-25 at 13:40 -0400, Konrad Rzeszutek Wilk wrote:
>>>>
>>>>         
>>>>> What do you see on your Xen serial output? I presume you cranked up logging:
>>>>> loglevel=all guest_lvl=all iommu=verbose on your Xen command line.
>>>>>
>>>>> Is there anything that shows up when you get the 'Failed to assign.." ?
>>>>>
>>>>>           
>>>> The only messages I get on the serial console after setting those
>>>> parameters on the xen.gz kernel line in grub (and rebooting, of course)
>>>> are the following:
>>>>
>>>> (XEN) [VT-D]iommu.c:1496: d0:PCI: unmap bdf = 2:0.0
>>>> (XEN) [VT-D]iommu.c:1364: d1:PCI: map bdf = 2:0.0
>>>> (XEN) domctl.c:848:d0 XEN_DOMCTL_assign_device: assign device (2:0.0)
>>>> failed
>>>> (XEN) event_channel.c:192:d0 EVTCHNOP failure: domain 1, error -22
>>>>         
Nick,

I think the issue is 02:00.0 was mapped twice. Could you try with below 
patch? Then post the xen log. Pls post all output of 'lspci -v' on your 
system.

diff -r eff592364826 xen/drivers/passthrough/vtd/iommu.c
--- a/xen/drivers/passthrough/vtd/iommu.c   Wed Sep 01 11:23:49 2010 +0100
+++ b/xen/drivers/passthrough/vtd/iommu.c   Wed Oct 27 14:33:23 2010 +0800
@@ -1225,7 +1225,11 @@ static int domain_context_mapping_one(
         if (!pdev)
             res = -ENODEV;
         else if (pdev->domain != domain)
-            res = -EINVAL;
+        {
+            dprintk(VTDPREFIX, "context_present: %x:%x.%x: 
pdev->domain=%d domain=%d\n",
+                    bus, PCI_SLOT(devfn), PCI_FUNC(devfn), 
pdev->domain, domain->domain_id);
+        //    res = -EINVAL;
+        }
         unmap_vtd_domain_page(context_entries);
         spin_unlock(&iommu->lock);
         return res;
@@ -1352,6 +1356,8 @@ static int domain_context_mapping(struct
         /* PCIe to PCI/PCIx bridge */
         if ( pdev_type(bus, devfn) == DEV_TYPE_PCIe2PCI_BRIDGE )
         {
+            dprintk(VTDPREFIX, "d%d:PCI: map PCIe2PCI bdf = %x:%x.%x\n",
+                    domain->domain_id, bus, PCI_SLOT(devfn), 
PCI_FUNC(devfn));
             ret = domain_context_mapping_one(domain, drhd->iommu, bus, 
devfn);
             if ( ret )
                 return ret;
@@ -1362,6 +1368,8 @@ static int domain_context_mapping(struct
              * on the secondary bus behind the bridge. Map that id
              * as well.
              */
+            dprintk(VTDPREFIX, "d%d:PCI: map secbus (%d) with devfn 0\n",
+                    domain->domain_id, secbus);
             ret = domain_context_mapping_one(domain, drhd->iommu, 
secbus, 0);
         }
         else /* Legacy PCI bridge */

>>> So, -EINVAL. How comfortable are you sticking a bunch of
>>> dprintk(VTDPREFIX, " in the drivers/passthrough/vtd/iommu.c file? Basically
>>> you need to figure which of the functions that are past line 1364
>>> are being called and return -EINVAL. 
>>>       
>> I'm happy to give it a shot...it'll take a while to get the devel
>> environment configured, as I'm using packages right now and I don't even
>> think I have a compiler on this system.  I'll report back once I get
>> that done and give that a try.
>>     
>
> Excellent. You might also want to CC Weidong (weidong.han@intel.com) in the future
> who is right now on travel and he might have better suggestions. CC-ing him on this e-mail.
>   

  parent reply	other threads:[~2010-10-27  6:40 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-10-25 16:35 PCI Passthrough Problems/Questions Nick Couchman
2010-10-25 17:40 ` Konrad Rzeszutek Wilk
2010-10-25 18:33   ` Nick Couchman
2010-10-25 18:48     ` Konrad Rzeszutek Wilk
2010-10-25 18:50       ` Nick Couchman
2010-10-25 19:07         ` Konrad Rzeszutek Wilk
2010-10-25 19:45           ` Nick Couchman
2010-10-25 20:11           ` Nick Couchman
2010-10-27  6:40           ` Weidong Han [this message]
2010-10-27 15:07             ` Nick Couchman
2010-10-28  2:31               ` Weidong Han
     [not found] <4CC8A62602000099000BAA42@collaborate.seakr.com>
2010-10-28  4:37 ` Han, Weidong
  -- strict thread matches above, loose matches on Subject: below --
2010-10-28 14:01 Nick Couchman
2010-10-29  2:54 ` Weidong Han
2010-10-29 18:52   ` Nick Couchman
2010-11-02  3:30     ` Weidong Han
2010-11-02 19:07       ` Nick Couchman
2010-11-03  1:01         ` Weidong Han
2010-11-03 14:54           ` Nick Couchman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4CC7C95E.7020500@intel.com \
    --to=weidong.han@intel.com \
    --cc=Nick.Couchman@seakr.com \
    --cc=konrad.wilk@Oracle.Com \
    --cc=xen-devel@lists.xensource.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.