<anthony.perard@citrix.com>
2011-Jun-22 15:58 UTC
[Xen-devel] [PATCH] hw/piix_pci.c: Fix PIIX3-xen to initialize ids
From: Anthony PERARD <anthony.perard@citrix.com> Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> --- hw/piix_pci.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/hw/piix_pci.c b/hw/piix_pci.c index 26ce904..d08b31a 100644 --- a/hw/piix_pci.c +++ b/hw/piix_pci.c @@ -478,6 +478,9 @@ static PCIDeviceInfo i440fx_info[] = { .no_hotplug = 1, .init = piix3_initfn, .config_write = piix3_write_config_xen, + .vendor_id = PCI_VENDOR_ID_INTEL, + .device_id = PCI_DEVICE_ID_INTEL_82371SB_0, // 82371SB PIIX3 PCI-to-ISA bridge (Step A1) + .class_id = PCI_CLASS_BRIDGE_ISA, },{ /* end of list */ } -- 1.7.2.5 _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
Stefano Stabellini
2011-Jun-22 17:43 UTC
[Xen-devel] Re: [PATCH] hw/piix_pci.c: Fix PIIX3-xen to initialize ids
On Wed, 22 Jun 2011, anthony.perard@citrix.com wrote:> From: Anthony PERARD <anthony.perard@citrix.com> > > Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> > --- > hw/piix_pci.c | 3 +++ > 1 files changed, 3 insertions(+), 0 deletions(-) > > diff --git a/hw/piix_pci.c b/hw/piix_pci.c > index 26ce904..d08b31a 100644 > --- a/hw/piix_pci.c > +++ b/hw/piix_pci.c > @@ -478,6 +478,9 @@ static PCIDeviceInfo i440fx_info[] = { > .no_hotplug = 1, > .init = piix3_initfn, > .config_write = piix3_write_config_xen, > + .vendor_id = PCI_VENDOR_ID_INTEL, > + .device_id = PCI_DEVICE_ID_INTEL_82371SB_0, // 82371SB PIIX3 PCI-to-ISA bridge (Step A1) > + .class_id = PCI_CLASS_BRIDGE_ISA, > },{ > /* end of list */ > }shouldn''t piix3_initfn take care of setting vendor_id, device_id and class_id, as in the normal PIIX3 case? _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
Anthony PERARD
2011-Jun-22 17:48 UTC
Re: [Xen-devel] Re: [PATCH] hw/piix_pci.c: Fix PIIX3-xen to initialize ids
On Wed, Jun 22, 2011 at 18:43, Stefano Stabellini <stefano.stabellini@eu.citrix.com> wrote:> On Wed, 22 Jun 2011, anthony.perard@citrix.com wrote: >> From: Anthony PERARD <anthony.perard@citrix.com> >> >> Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> >> --- >> hw/piix_pci.c | 3 +++ >> 1 files changed, 3 insertions(+), 0 deletions(-) >> >> diff --git a/hw/piix_pci.c b/hw/piix_pci.c >> index 26ce904..d08b31a 100644 >> --- a/hw/piix_pci.c >> +++ b/hw/piix_pci.c >> @@ -478,6 +478,9 @@ static PCIDeviceInfo i440fx_info[] = { >> .no_hotplug = 1, >> .init = piix3_initfn, >> .config_write = piix3_write_config_xen, >> + .vendor_id = PCI_VENDOR_ID_INTEL, >> + .device_id = PCI_DEVICE_ID_INTEL_82371SB_0, // 82371SB PIIX3 PCI-to-ISA bridge (Step A1) >> + .class_id = PCI_CLASS_BRIDGE_ISA, >> },{ >> /* end of list */ >> } > > shouldn''t piix3_initfn take care of setting vendor_id, device_id and > class_id, as in the normal PIIX3 case?Not anymore. These ids have been removed from piix3_initfn and added to the PCIDeviceInfo of PIIX3 in the last update. -- Anthony PERARD _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
Stefano Stabellini
2011-Jun-22 18:00 UTC
Re: [Xen-devel] Re: [PATCH] hw/piix_pci.c: Fix PIIX3-xen to initialize ids
On Wed, 22 Jun 2011, Anthony PERARD wrote:> On Wed, Jun 22, 2011 at 18:43, Stefano Stabellini > <stefano.stabellini@eu.citrix.com> wrote: > > On Wed, 22 Jun 2011, anthony.perard@citrix.com wrote: > >> From: Anthony PERARD <anthony.perard@citrix.com> > >> > >> Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> > >> --- > >> hw/piix_pci.c | 3 +++ > >> 1 files changed, 3 insertions(+), 0 deletions(-) > >> > >> diff --git a/hw/piix_pci.c b/hw/piix_pci.c > >> index 26ce904..d08b31a 100644 > >> --- a/hw/piix_pci.c > >> +++ b/hw/piix_pci.c > >> @@ -478,6 +478,9 @@ static PCIDeviceInfo i440fx_info[] = { > >> .no_hotplug = 1, > >> .init = piix3_initfn, > >> .config_write = piix3_write_config_xen, > >> + .vendor_id = PCI_VENDOR_ID_INTEL, > >> + .device_id = PCI_DEVICE_ID_INTEL_82371SB_0, // 82371SB PIIX3 PCI-to-ISA bridge (Step A1) > >> + .class_id = PCI_CLASS_BRIDGE_ISA, > >> },{ > >> /* end of list */ > >> } > > > > shouldn''t piix3_initfn take care of setting vendor_id, device_id and > > class_id, as in the normal PIIX3 case? > > Not anymore. These ids have been removed from piix3_initfn and added > to the PCIDeviceInfo of PIIX3 in the last update.I see. Good catch. --8323329-2051912076-1308765621=:12963 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel --8323329-2051912076-1308765621=:12963--
Alexander Graf
2011-Jun-30 11:34 UTC
[Xen-devel] Re: [PATCH] hw/piix_pci.c: Fix PIIX3-xen to initialize ids
On 06/22/2011 05:58 PM, anthony.perard@citrix.com wrote:> From: Anthony PERARD<anthony.perard@citrix.com> > > Signed-off-by: Anthony PERARD<anthony.perard@citrix.com> > --- > hw/piix_pci.c | 3 +++ > 1 files changed, 3 insertions(+), 0 deletions(-) > > diff --git a/hw/piix_pci.c b/hw/piix_pci.c > index 26ce904..d08b31a 100644 > --- a/hw/piix_pci.c > +++ b/hw/piix_pci.c > @@ -478,6 +478,9 @@ static PCIDeviceInfo i440fx_info[] = { > .no_hotplug = 1, > .init = piix3_initfn, > .config_write = piix3_write_config_xen, > + .vendor_id = PCI_VENDOR_ID_INTEL, > + .device_id = PCI_DEVICE_ID_INTEL_82371SB_0, // 82371SB PIIX3 PCI-to-ISA bridge (Step A1) > + .class_id = PCI_CLASS_BRIDGE_ISA, > },{ > /* end of list */ > }$ ./scripts/checkpatch.pl ~/patch-xen/anthony1/\[PATCH\]\ hw_piix_pci.c\:\ Fix\ PIIX3-xen\ to\ initialize\ ids.eml WARNING: line over 80 characters #70: FILE: hw/piix_pci.c:482: + .device_id = PCI_DEVICE_ID_INTEL_82371SB_0, // 82371SB PIIX3 PCI-to-ISA bridge (Step A1) ERROR: do not use C99 // comments #70: FILE: hw/piix_pci.c:482: + .device_id = PCI_DEVICE_ID_INTEL_82371SB_0, // 82371SB PIIX3 PCI-to-ISA bridge (Step A1) total: 1 errors, 1 warnings, 9 lines checked _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel