qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Paulo Alcantara <pcacjr@zytor.com>
Cc: pbonzini@redhat.com, seabios@seabios.org,
	Paulo Alcantara <pcacjr@gmail.com>,
	qemu-devel@nongnu.org, kraxel@redhat.com
Subject: Re: [Qemu-devel] [PATCH v5 2/3] target-i386: reserve RCRB mmio space in ACPI DSDT table
Date: Wed, 24 Jun 2015 18:04:35 +0200	[thread overview]
Message-ID: <20150624180308-mutt-send-email-mst@redhat.com> (raw)
In-Reply-To: <20150624130049.3ea28b7a@zytor.com>

On Wed, Jun 24, 2015 at 01:00:49PM -0300, Paulo Alcantara wrote:
> On Wed, 24 Jun 2015 17:11:26 +0200
> "Michael S. Tsirkin" <mst@redhat.com> wrote:
> 
> > On Mon, Jun 22, 2015 at 08:10:28PM -0300, Paulo Alcantara wrote:
> > > This block is mapped into memory space, using the Root Complex Base
> > > Address (RCBA) register of the PCI-to-LPC bridge. Accesses in this
> > > space must be limited to 32-(DW) bit quantities. Burst accesses are
> > > not allowed.
> > > 
> > > All Chipset Configuration Registers are located in this 16KiB space.
> > > 
> > > Signed-off-by: Paulo Alcantara <pcacjr@zytor.com>
> > 
> > Can you confirm things just work for you if you drop this patch from
> > the series?
> 
> Hi Michael,
> 
> Yes, everything works. I still see no point of adding it to SSDT
> because OVMF is already setting RCBA to that fixed address and so
> SeaBIOS once my patch is applied. Therefore, there is no no such thing
> like "dynamically programmed by BIOS" either. Although, my host and
> probably yours define the same address in DSDT.
> 
> Given that UEFI and a BIOS implementations are using the same fixed
> address, this patch was done in a hope of not letting the ACPI-aware OS
> using the same address for another BAR or something else thus avoiding
> conflicts.

But does PCI root CRS cover this range? If not - an ACPI aware
OS can't assign PCI BARs in this range really.


> Please, let me know if I'm missing something here. If you want, I can
> send v6 with this patch removed completely.
> 
> (BTW, sorry for the delay. It's holiday here in Brazil and, you know,
> real life happens sometimes :-) )
> 
> Thanks,
> 
> Paulo

No rush, we have a couple of days until the hard freeze still


> > 
> > > ---
> > > v1 -> v2:
> > >   * s/PDRC/CCR/ for clarity and match ICH9 spec
> > >   * remove unnecessary OperationRegion for RCRB
> > > 
> > > v2 -> v3: (no changes)
> > > 
> > > v3 -> v4:
> > >   * quote RCRB description from ICH9 spec to commit log
> > >   * fix indentation issue in _CRS() method declaration
> > >   * create hw/i386/ich9-cc.h for chipset configuration register
> > > values and use them in ASL
> > > 
> > > v4 -> v5:
> > >   * prefix macros in ich9-cc.h with "ICH9_" for better readability
> > > and make use of them in CCR device definition
> > > ---
> > >  hw/i386/q35-acpi-dsdt.dsl     |  16 ++++++++++++++++
> > >  include/hw/i386/ich9-cc.h     |  15 +++++++++++++++
> > >  tests/acpi-test-data/q35/DSDT | Bin 7666 -> 7723 bytes
> > >  3 files changed, 31 insertions(+)
> > >  create mode 100644 include/hw/i386/ich9-cc.h
> > > 
> > > diff --git a/hw/i386/q35-acpi-dsdt.dsl b/hw/i386/q35-acpi-dsdt.dsl
> > > index 16eaca3..8f4bb6a 100644
> > > --- a/hw/i386/q35-acpi-dsdt.dsl
> > > +++ b/hw/i386/q35-acpi-dsdt.dsl
> > > @@ -114,6 +114,22 @@ DefinitionBlock (
> > >          }
> > >      }
> > >  
> > > +#include "hw/i386/ich9-cc.h"
> > > +
> > > +/****************************************************************
> > > + * Chipset Configuration Registers
> > > + ****************************************************************/
> > > +Scope(\_SB.PCI0) {
> > > +    Device (CCR) {
> > > +        Name (_HID, EISAID("PNP0C02"))
> > > +        Name (_UID, 1)
> > > +
> > > +        Name (_CRS, ResourceTemplate() {
> > > +            Memory32Fixed(ReadWrite, ICH9_RCBA_BASE_ADDR,
> > > ICH9_RCRB_SIZE)
> > > +        })
> > > +    }
> > > +}
> > > +
> > >  #include "acpi-dsdt-hpet.dsl"
> > >  
> > >  
> > > diff --git a/include/hw/i386/ich9-cc.h b/include/hw/i386/ich9-cc.h
> > > new file mode 100644
> > > index 0000000..d4918ff
> > > --- /dev/null
> > > +++ b/include/hw/i386/ich9-cc.h
> > > @@ -0,0 +1,15 @@
> > > +/*
> > > + * QEMU ICH9 Chipset Configuration Registers
> > > + *
> > > + * Copyright (c) 2015 Paulo Alcantara <pcacjr@zytor.com>
> > > + *
> > > + * This work is licensed under the terms of the GNU GPL, version 2
> > > or later.
> > > + * See the COPYING file in the top-level directory.
> > > + */
> > > +#ifndef HW_ICH9_CC_H
> > > +#define HW_ICH9_CC_H
> > > +
> > > +#define ICH9_RCBA_BASE_ADDR    0xfed1c000
> > > +#define ICH9_RCRB_SIZE         0x00004000
> > > +
> > > +#endif /* HW_ICH9_CC_H */
> > > diff --git a/tests/acpi-test-data/q35/DSDT
> > > b/tests/acpi-test-data/q35/DSDT index
> > > 4723e5954dccb00995ccaf521b7daf6bf15cf1d4..f3bda7b54ea6d669b1498d9380e7781207fb6e49
> > > 100644 GIT binary patch delta 81
> > > zcmexlz1oJ$CD<iITaJN&F>xbTJfnq$UVN}qe1Nm3L3ERjvvW{9N4$rp3y<Rk9wv_X
> > > lP)`>|j(F#wU_n7HzBWz<Mur0y|1mf)FjO*Z&S3140RVI`6(s-w
> > > 
> > > delta 24
> > > gcmZ2&^U0daCD<k8lPm)R<DrdQ@r;`nF?PxT0Bl$YHUIzs
> > > 
> > > -- 
> > > 2.1.0
> > 
> 
> 
> 
> -- 
> Paulo Alcantara, C.E.S.A.R
> Speaking for myself only.

  reply	other threads:[~2015-06-24 16:04 UTC|newest]

Thread overview: 83+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-27  0:29 [Qemu-devel] [PATCH 1/3] ich9: add TCO interface emulation Paulo Alcantara
2015-05-27  0:29 ` [Qemu-devel] [PATCH 2/3] target-i386: reserve RCRB mmio space in ACPI DSDT table Paulo Alcantara
2015-05-27 12:03   ` Paolo Bonzini
2015-05-27 17:51     ` Paulo Alcantara
2015-05-28  7:13   ` [Qemu-devel] [SeaBIOS] " Gerd Hoffmann
2015-05-30 10:57     ` Paulo Alcantara
2015-06-01  7:16       ` Gerd Hoffmann
2015-06-01 11:59         ` Paulo Alcantara
2015-05-27  0:29 ` [Qemu-devel] [PATCH 3/3] tests: add testcase for TCO watchdog emulation Paulo Alcantara
2015-05-27 11:58 ` [Qemu-devel] [PATCH 1/3] ich9: add TCO interface emulation Paolo Bonzini
2015-05-27 18:23   ` Paulo Alcantara
2015-05-30 22:04 ` [Qemu-devel] [PATCH v2 " Paulo Alcantara
2015-05-30 22:04   ` [Qemu-devel] [PATCH v2 2/3] target-i386: reserve RCRB mmio space in ACPI DSDT table Paulo Alcantara
2015-05-30 22:04   ` [Qemu-devel] [PATCH v2 3/3] tests: add testcase for TCO watchdog emulation Paulo Alcantara
2015-06-01  9:07     ` Paolo Bonzini
2015-06-01  9:05   ` [Qemu-devel] [PATCH v2 1/3] ich9: add TCO interface emulation Paolo Bonzini
2015-06-01 13:38     ` Paulo Alcantara
2015-06-01 21:37       ` Paulo Alcantara
2015-06-01 23:48   ` [Qemu-devel] [PATCH v3 " Paulo Alcantara
2015-06-01 23:48     ` [Qemu-devel] [PATCH v3 2/3] target-i386: reserve RCRB mmio space in ACPI DSDT table Paulo Alcantara
2015-06-17 13:33       ` Michael S. Tsirkin
2015-06-18  2:14         ` Paulo Alcantara
2015-06-01 23:48     ` [Qemu-devel] [PATCH v3 3/3] tests: add testcase for TCO watchdog emulation Paulo Alcantara
2015-06-17 13:37       ` Michael S. Tsirkin
2015-06-18  2:23         ` Paulo Alcantara
2015-06-10 13:17     ` [Qemu-devel] [PATCH v3 1/3] ich9: add TCO interface emulation Paulo Alcantara
2015-06-17 13:27     ` Michael S. Tsirkin
2015-06-18  2:10       ` Paulo Alcantara
2015-06-22  0:37 ` [Qemu-devel] [PATCH v4 " Paulo Alcantara
2015-06-22  0:37   ` [Qemu-devel] [PATCH v4 2/3] target-i386: reserve RCRB mmio space in ACPI DSDT table Paulo Alcantara
2015-06-22  8:40     ` Michael S. Tsirkin
2015-06-22 12:53       ` Paulo Alcantara
2015-06-23 10:38     ` [Qemu-devel] [SeaBIOS] " Igor Mammedov
2015-06-23 10:58       ` Michael S. Tsirkin
2015-06-23 12:29         ` Igor Mammedov
2015-06-23 12:37           ` Michael S. Tsirkin
2015-06-23 11:15       ` Paolo Bonzini
2015-06-23 11:18       ` Paolo Bonzini
2015-06-23 12:22       ` Michael S. Tsirkin
2015-06-22  0:37   ` [Qemu-devel] [PATCH v4 3/3] tests: add testcase for TCO watchdog emulation Paulo Alcantara
2015-06-22  8:39   ` [Qemu-devel] [PATCH v4 1/3] ich9: add TCO interface emulation Michael S. Tsirkin
2015-06-22 12:30     ` Paulo Alcantara
2015-06-22 12:32       ` Paolo Bonzini
2015-06-22 12:47         ` Michael S. Tsirkin
2015-06-22 13:04           ` Paolo Bonzini
2015-06-22 13:07             ` Michael S. Tsirkin
2015-06-22 13:19               ` Paulo Alcantara
2015-06-22 13:10           ` Markus Armbruster
2015-06-22  8:43   ` Michael S. Tsirkin
2015-06-22  9:45     ` Paolo Bonzini
2015-06-22 12:11       ` Michael S. Tsirkin
2015-06-22 12:36         ` Paulo Alcantara
2015-06-22 12:44           ` Michael S. Tsirkin
2015-06-22 12:59             ` Paolo Bonzini
2015-06-22 18:29   ` Paulo Alcantara
2015-06-22 23:10 ` [Qemu-devel] [PATCH v5 " Paulo Alcantara
2015-06-22 23:10   ` [Qemu-devel] [PATCH v5 2/3] target-i386: reserve RCRB mmio space in ACPI DSDT table Paulo Alcantara
2015-06-23 14:29     ` [Qemu-devel] [SeaBIOS] " Igor Mammedov
2015-06-23 15:33       ` Michael S. Tsirkin
2015-06-23 14:39     ` Igor Mammedov
2015-06-23 15:06       ` Michael S. Tsirkin
2015-06-23 15:12         ` Igor Mammedov
2015-06-23 15:29           ` Michael S. Tsirkin
2015-06-24 15:11     ` [Qemu-devel] " Michael S. Tsirkin
2015-06-24 16:00       ` Paulo Alcantara
2015-06-24 16:04         ` Michael S. Tsirkin [this message]
2015-06-22 23:10   ` [Qemu-devel] [PATCH v5 3/3] tests: add testcase for TCO watchdog emulation Paulo Alcantara
2015-06-23  6:39   ` [Qemu-devel] [PATCH v5 1/3] ich9: add TCO interface emulation Michael S. Tsirkin
2015-06-24 18:03 ` [Qemu-devel] [PATCH v6 1/2] " Paulo Alcantara
2015-06-24 18:03   ` [Qemu-devel] [PATCH v6 2/2] tests: add testcase for TCO watchdog emulation Paulo Alcantara
2015-06-27 17:56 ` [Qemu-devel] [PATCH v7 1/3] ich9: add TCO interface emulation Paulo Alcantara
2015-06-27 17:56   ` [Qemu-devel] [PATCH v7 2/3] tests: add testcase for TCO watchdog emulation Paulo Alcantara
2015-06-27 17:56   ` [Qemu-devel] [PATCH v7 3/3] ich9: implement strap SPKR pin logic Paulo Alcantara
2015-06-28  8:37     ` Michael S. Tsirkin
2015-06-28 16:21       ` Paulo Alcantara
2015-06-28 17:58 ` [Qemu-devel] [PATCH v8 1/3] ich9: add TCO interface emulation Paulo Alcantara
2015-06-28 17:58   ` [Qemu-devel] [PATCH v8 2/3] tests: add testcase for TCO watchdog emulation Paulo Alcantara
2015-06-28 17:58   ` [Qemu-devel] [PATCH v8 3/3] ich9: implement strap SPKR pin logic Paulo Alcantara
2015-07-01 13:18     ` Paolo Bonzini
2015-07-01 13:31       ` Michael S. Tsirkin
2015-07-01 13:34         ` Paolo Bonzini
2015-07-02  1:30         ` Paulo Alcantara
2015-07-02  6:55           ` Paolo Bonzini

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=20150624180308-mutt-send-email-mst@redhat.com \
    --to=mst@redhat.com \
    --cc=kraxel@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=pcacjr@gmail.com \
    --cc=pcacjr@zytor.com \
    --cc=qemu-devel@nongnu.org \
    --cc=seabios@seabios.org \
    /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 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).