* [Qemu-devel] [PATCH] acpi: beginnings of piix acpi interface doc
@ 2012-03-12 9:35 Michael S. Tsirkin
2012-03-12 11:14 ` Gleb Natapov
0 siblings, 1 reply; 4+ messages in thread
From: Michael S. Tsirkin @ 2012-03-12 9:35 UTC (permalink / raw)
To: qemu-devel; +Cc: Alex Williamson, mtosatti, Anthony Liguori, gleb
Before we start tweaking and enhancing hardware, I think
it makes sense to document what we currently have, to make
sure we stay compatible.
This documents the hotplug interface for piix.
Stubs for cpu hotplug, PM.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
docs/acpi.txt | 32 ++++++++++++++++++++++++++++++++
1 files changed, 32 insertions(+), 0 deletions(-)
create mode 100644 docs/acpi.txt
diff --git a/docs/acpi.txt b/docs/acpi.txt
new file mode 100644
index 0000000..4938d48
--- /dev/null
+++ b/docs/acpi.txt
@@ -0,0 +1,32 @@
+QEMU exposes the following registers to guests,
+intended primarily for use by the ACPI interface.
+
+PCI Hotplug
+----
+
+Events use the standard GPE register:
+GPE 0xafe0 - an ACPI GPE register
+
+Hotplug events set GPE bit 1 (mask 0x2)
+
+The following registers are used for PCI hotplug.
+Each register is 32 bit (4 bytes) long, and has little endian format.
+Bits 0-31 in each register correspond to slots 0-31 on the root bus,
+respectively.
+
+UP 0xae00 - RO - Bit set by host on device insertion (note:existing implementations
+ trigger device check event)
+DOWN 0xae04 - RO - Bit set by host on user eject request
+EJ0 0xae08 - WO - Bit set by guest removes all power to device
+RMV 0xae0c - RO - Bit set by host if slot supports hotplug
+ (can not change while guest is up)
+
+
+Power management
+----
+TODO
+
+
+CPU hotplug
+----
+TODO
--
1.7.9.111.gf3fb0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] acpi: beginnings of piix acpi interface doc
2012-03-12 9:35 [Qemu-devel] [PATCH] acpi: beginnings of piix acpi interface doc Michael S. Tsirkin
@ 2012-03-12 11:14 ` Gleb Natapov
2012-03-12 13:24 ` Michael S. Tsirkin
0 siblings, 1 reply; 4+ messages in thread
From: Gleb Natapov @ 2012-03-12 11:14 UTC (permalink / raw)
To: Michael S. Tsirkin; +Cc: Alex Williamson, mtosatti, qemu-devel, Anthony Liguori
On Mon, Mar 12, 2012 at 11:35:29AM +0200, Michael S. Tsirkin wrote:
> Before we start tweaking and enhancing hardware, I think
> it makes sense to document what we currently have, to make
> sure we stay compatible.
> This documents the hotplug interface for piix.
> Stubs for cpu hotplug, PM.
>
We already have docs/specs/acpi_pci_hotplug.txt, no?
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> ---
> docs/acpi.txt | 32 ++++++++++++++++++++++++++++++++
> 1 files changed, 32 insertions(+), 0 deletions(-)
> create mode 100644 docs/acpi.txt
>
> diff --git a/docs/acpi.txt b/docs/acpi.txt
> new file mode 100644
> index 0000000..4938d48
> --- /dev/null
> +++ b/docs/acpi.txt
> @@ -0,0 +1,32 @@
> +QEMU exposes the following registers to guests,
> +intended primarily for use by the ACPI interface.
> +
> +PCI Hotplug
> +----
> +
> +Events use the standard GPE register:
> +GPE 0xafe0 - an ACPI GPE register
> +
> +Hotplug events set GPE bit 1 (mask 0x2)
> +
> +The following registers are used for PCI hotplug.
> +Each register is 32 bit (4 bytes) long, and has little endian format.
> +Bits 0-31 in each register correspond to slots 0-31 on the root bus,
> +respectively.
> +
> +UP 0xae00 - RO - Bit set by host on device insertion (note:existing implementations
> + trigger device check event)
> +DOWN 0xae04 - RO - Bit set by host on user eject request
> +EJ0 0xae08 - WO - Bit set by guest removes all power to device
> +RMV 0xae0c - RO - Bit set by host if slot supports hotplug
> + (can not change while guest is up)
> +
> +
> +Power management
> +----
> +TODO
> +
> +
> +CPU hotplug
> +----
> +TODO
> --
> 1.7.9.111.gf3fb0
--
Gleb.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] acpi: beginnings of piix acpi interface doc
2012-03-12 11:14 ` Gleb Natapov
@ 2012-03-12 13:24 ` Michael S. Tsirkin
2012-03-12 13:25 ` Gleb Natapov
0 siblings, 1 reply; 4+ messages in thread
From: Michael S. Tsirkin @ 2012-03-12 13:24 UTC (permalink / raw)
To: Gleb Natapov; +Cc: Alex Williamson, mtosatti, qemu-devel, Anthony Liguori
On Mon, Mar 12, 2012 at 01:14:10PM +0200, Gleb Natapov wrote:
> On Mon, Mar 12, 2012 at 11:35:29AM +0200, Michael S. Tsirkin wrote:
> > Before we start tweaking and enhancing hardware, I think
> > it makes sense to document what we currently have, to make
> > sure we stay compatible.
> > This documents the hotplug interface for piix.
> > Stubs for cpu hotplug, PM.
> >
> We already have docs/specs/acpi_pci_hotplug.txt, no?
Indeed. I didn't notice it.
Alex, so if you change this device you probably want to update the spec
:)
> > Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> > ---
> > docs/acpi.txt | 32 ++++++++++++++++++++++++++++++++
> > 1 files changed, 32 insertions(+), 0 deletions(-)
> > create mode 100644 docs/acpi.txt
> >
> > diff --git a/docs/acpi.txt b/docs/acpi.txt
> > new file mode 100644
> > index 0000000..4938d48
> > --- /dev/null
> > +++ b/docs/acpi.txt
> > @@ -0,0 +1,32 @@
> > +QEMU exposes the following registers to guests,
> > +intended primarily for use by the ACPI interface.
> > +
> > +PCI Hotplug
> > +----
> > +
> > +Events use the standard GPE register:
> > +GPE 0xafe0 - an ACPI GPE register
> > +
> > +Hotplug events set GPE bit 1 (mask 0x2)
> > +
> > +The following registers are used for PCI hotplug.
> > +Each register is 32 bit (4 bytes) long, and has little endian format.
> > +Bits 0-31 in each register correspond to slots 0-31 on the root bus,
> > +respectively.
> > +
> > +UP 0xae00 - RO - Bit set by host on device insertion (note:existing implementations
> > + trigger device check event)
> > +DOWN 0xae04 - RO - Bit set by host on user eject request
> > +EJ0 0xae08 - WO - Bit set by guest removes all power to device
> > +RMV 0xae0c - RO - Bit set by host if slot supports hotplug
> > + (can not change while guest is up)
> > +
> > +
> > +Power management
> > +----
> > +TODO
> > +
> > +
> > +CPU hotplug
> > +----
> > +TODO
> > --
> > 1.7.9.111.gf3fb0
>
> --
> Gleb.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] acpi: beginnings of piix acpi interface doc
2012-03-12 13:24 ` Michael S. Tsirkin
@ 2012-03-12 13:25 ` Gleb Natapov
0 siblings, 0 replies; 4+ messages in thread
From: Gleb Natapov @ 2012-03-12 13:25 UTC (permalink / raw)
To: Michael S. Tsirkin; +Cc: Alex Williamson, mtosatti, qemu-devel, Anthony Liguori
On Mon, Mar 12, 2012 at 03:24:39PM +0200, Michael S. Tsirkin wrote:
> On Mon, Mar 12, 2012 at 01:14:10PM +0200, Gleb Natapov wrote:
> > On Mon, Mar 12, 2012 at 11:35:29AM +0200, Michael S. Tsirkin wrote:
> > > Before we start tweaking and enhancing hardware, I think
> > > it makes sense to document what we currently have, to make
> > > sure we stay compatible.
> > > This documents the hotplug interface for piix.
> > > Stubs for cpu hotplug, PM.
> > >
> > We already have docs/specs/acpi_pci_hotplug.txt, no?
>
> Indeed. I didn't notice it.
The commit that adds it has your SOB :)
--
Gleb.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-03-12 13:26 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-12 9:35 [Qemu-devel] [PATCH] acpi: beginnings of piix acpi interface doc Michael S. Tsirkin
2012-03-12 11:14 ` Gleb Natapov
2012-03-12 13:24 ` Michael S. Tsirkin
2012-03-12 13:25 ` Gleb Natapov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).