[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH RFC] seabios: add OSHP method stub
From: |
Michael S. Tsirkin |
Subject: |
Re: [Qemu-devel] [PATCH RFC] seabios: add OSHP method stub |
Date: |
Tue, 14 Feb 2012 16:11:57 +0200 |
User-agent: |
Mutt/1.5.21 (2010-09-15) |
On Tue, Feb 14, 2012 at 01:47:59PM +0000, Paul Brook wrote:
> > > > Now an OS can have a standard driver and use it
> > > > to activate hotplug functionality. This is OS hotplug (OSHP).
> > >
> > > So presumably this will work on targets that don't have ACPI?
> > > Assuming a competent guest OS of course. Have you tested this?
> >
> > This being the qemu side of things? I run Linux
> > and verified that it calls OSHP and afterwards,
> > runs the native driver and handles hotplug/unplug
> > without invoking ACPI at all.
>
> I mean using your shiny new hotplug PCI-PCI bridge on arm/ppc/mips targets
> (i.e anything other than x86 PC). From your description it sounds like it
> *should* work.
>
> > It seems that at least the SHPC driver in linux
> > doesn't work if you don't have an acpi table
> > with the OSHP method - not many people run with acpi=off
> > nowdays, so it's probably just a bug.
> > I'll check how hard it is to fix this.
>
> Targets other than x86 don't have ACPI to start with.
>
> Paul
So
#ifdef CONFIG_ACPI
#include <linux/pci-acpi.h>
static inline int get_hp_hw_control_from_firmware(struct pci_dev *dev)
{
u32 flags = OSC_SHPC_NATIVE_HP_CONTROL;
return acpi_get_hp_hw_control_from_firmware(dev, flags);
}
#else
#define get_hp_hw_control_from_firmware(dev) (0)
#endif
So if you build your guest without acpi, things should work fine.
--
MMST
- Re: [Qemu-devel] [PATCHv2-RFC 1/2] shpc: standard hot plug controller, (continued)
- [Qemu-devel] [PATCH RFC] seabios: add OSHP method stub, Michael S. Tsirkin, 2012/02/13
- Re: [Qemu-devel] [PATCH RFC] seabios: add OSHP method stub, Kevin O'Connor, 2012/02/13
- Re: [Qemu-devel] [PATCH RFC] seabios: add OSHP method stub, Michael S. Tsirkin, 2012/02/13
- Re: [Qemu-devel] [PATCH RFC] seabios: add OSHP method stub, Kevin O'Connor, 2012/02/13
- Re: [Qemu-devel] [PATCH RFC] seabios: add OSHP method stub, Michael S. Tsirkin, 2012/02/13
- Re: [Qemu-devel] [PATCH RFC] seabios: add OSHP method stub, Paul Brook, 2012/02/14
- Re: [Qemu-devel] [PATCH RFC] seabios: add OSHP method stub, Michael S. Tsirkin, 2012/02/14
- Re: [Qemu-devel] [PATCH RFC] seabios: add OSHP method stub, Paul Brook, 2012/02/14
- Re: [Qemu-devel] [PATCH RFC] seabios: add OSHP method stub,
Michael S. Tsirkin <=
Re: [Qemu-devel] [SeaBIOS] [PATCH RFC] seabios: add OSHP method stub, Gerd Hoffmann, 2012/02/29
Re: [Qemu-devel] [PATCHv2-RFC 0/2] RFC: standard pci bridge device, Wen Congyang, 2012/02/13