qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Daniel Henrique Barboza <danielhb413@gmail.com>
To: "Cédric Le Goater" <clg@kaod.org>,
	qemu-ppc@nongnu.org, qemu-devel@nongnu.org
Cc: Alexey Kardashevskiy <aik@ozlabs.ru>,
	Frederic Barrat <fbarrat@linux.ibm.com>,
	Greg Kurz <groug@kaod.org>,
	David Gibson <david@gibson.dropbear.id.au>
Subject: Re: [PATCH v3 00/18] ppc/pnv: Extend the powernv10 machine
Date: Tue, 11 Jan 2022 10:34:02 -0300	[thread overview]
Message-ID: <785b3735-4106-82da-dbe8-6d76e94e0665@gmail.com> (raw)
In-Reply-To: <20211126115349.2737605-1-clg@kaod.org>

Hey,

I suppose you`ll want to rebase these patches with the changes done in pnv-phb4
models and the exceptions cleanup. In that case I'll wait for a re-send before
looking into these.

I also read from the [1] [2] and [3] about PHB5. I guess we can introduce pnv-phb5
with the same premises (i.e. user creatable) pnv-phb4 will now operate.


Thanks,


Daniel


On 11/26/21 08:53, Cédric Le Goater wrote:
> Hi,
> 
> The skiboot merged in QEMU already has POWER10 support. This series
> adds a minimum set of models (XIVE2, PHB5) to boot a baremetal POWER10
> machine using the OpenPOWER firmware images.
> 
> The major change is the support for the interrupt controller of the
> POWER10 processor. XIVE2 is very much like XIVE on POWER9 but the
> register interface, the different MMIO regions, the XIVE internal
> descriptors have gone through a major cleanup. It was easier to
> duplicate the models then to try to adapt the current models.
> 
> XIVE2 adds some new set of features. Only some are modeled :
> 
>    - Address-based trigger (AB5) mode. Activated by default on the
>      PHB5. When using ABT [1], the PHB5 offloads [2] all interrupt
>      management on the IC, this to improve latency.
>      
>    - P9 compat mode. XIVE2 can be configured to provide a strict P9
>      interface for the TIMA.
>      
>    - Automatic save & restore of thread context registers. Used in
>      KVM [3].
>    
>    - 8bits thread id. Mostly to validate the model.
> 
> Thanks,
> 
> C.
> 
> [1] https://github.com/open-power/skiboot/commit/2a7e3d203496a016cc90ce91eeb2c4e680ebd1d2
> [2] https://github.com/open-power/skiboot/commit/5b2d7c79a2049c1bedfaa8a9dfa19880f980b2ef
> [3] https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=f5af0a978776
> 
> Changes in v3:
> 
>    - rebased on upstream
>     
> Changes in v2:
> 
>    - Most comments on v1 have been addressed independently and merged
> 
> Cédric Le Goater (18):
>    ppc/xive2: Introduce a XIVE2 core framework
>    ppc/xive2: Introduce a presenter matching routine
>    ppc/pnv: Add a XIVE2 controller to the POWER10 chip
>    ppc/pnv: Add a OCC model for POWER10
>    ppc/pnv: Add POWER10 quads
>    ppc/pnv: Add model for POWER10 PHB5 PCIe Host bridge
>    ppc/pnv: Add a HOMER model to POWER10
>    ppc/psi: Add support for StoreEOI and 64k ESB pages (POWER10)
>    ppc/xive2: Add support for notification injection on ESB pages
>    ppc/xive: Add support for PQ state bits offload
>    ppc/pnv: Add support for PQ offload on PHB5
>    ppc/pnv: Add support for PHB5 "Address-based trigger" mode
>    pnv/xive2: Introduce new capability bits
>    ppc/pnv: add XIVE Gen2 TIMA support
>    pnv/xive2: Add support XIVE2 P9-compat mode (or Gen1)
>    xive2: Add a get_config() handler for the router configuration
>    pnv/xive2: Add support for automatic save&restore
>    pnv/xive2: Add support for 8bits thread id
> 
>   hw/intc/pnv_xive2_regs.h            |  442 ++++++
>   include/hw/pci-host/pnv_phb4.h      |   11 +
>   include/hw/pci-host/pnv_phb4_regs.h |    3 +
>   include/hw/ppc/pnv.h                |   39 +
>   include/hw/ppc/pnv_homer.h          |    3 +
>   include/hw/ppc/pnv_occ.h            |    2 +
>   include/hw/ppc/pnv_xive.h           |   71 +
>   include/hw/ppc/pnv_xscom.h          |   15 +
>   include/hw/ppc/xive.h               |   10 +-
>   include/hw/ppc/xive2.h              |  109 ++
>   include/hw/ppc/xive2_regs.h         |  210 +++
>   hw/intc/pnv_xive.c                  |   37 +-
>   hw/intc/pnv_xive2.c                 | 2127 +++++++++++++++++++++++++++
>   hw/intc/spapr_xive.c                |   25 +
>   hw/intc/xive.c                      |   77 +-
>   hw/intc/xive2.c                     | 1017 +++++++++++++
>   hw/pci-host/pnv_phb4.c              |   87 +-
>   hw/pci-host/pnv_phb4_pec.c          |   44 +
>   hw/ppc/pnv.c                        |  265 +++-
>   hw/ppc/pnv_homer.c                  |   64 +
>   hw/ppc/pnv_occ.c                    |   16 +
>   hw/ppc/pnv_psi.c                    |   38 +-
>   hw/intc/meson.build                 |    4 +-
>   hw/pci-host/trace-events            |    2 +
>   24 files changed, 4677 insertions(+), 41 deletions(-)
>   create mode 100644 hw/intc/pnv_xive2_regs.h
>   create mode 100644 include/hw/ppc/xive2.h
>   create mode 100644 include/hw/ppc/xive2_regs.h
>   create mode 100644 hw/intc/pnv_xive2.c
>   create mode 100644 hw/intc/xive2.c
> 


      parent reply	other threads:[~2022-01-11 13:54 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-26 11:53 [PATCH v3 00/18] ppc/pnv: Extend the powernv10 machine Cédric Le Goater
2021-11-26 11:53 ` [PATCH v3 01/18] ppc/xive2: Introduce a XIVE2 core framework Cédric Le Goater
2022-02-25 13:44   ` Daniel Henrique Barboza
2021-11-26 11:53 ` [PATCH v3 02/18] ppc/xive2: Introduce a presenter matching routine Cédric Le Goater
2022-02-25 13:44   ` Daniel Henrique Barboza
2021-11-26 11:53 ` [PATCH v3 03/18] ppc/pnv: Add a XIVE2 controller to the POWER10 chip Cédric Le Goater
2022-02-25 14:01   ` Daniel Henrique Barboza
2021-11-26 11:53 ` [PATCH v3 04/18] ppc/pnv: Add a OCC model for POWER10 Cédric Le Goater
2021-11-26 11:53 ` [PATCH v3 05/18] ppc/pnv: Add POWER10 quads Cédric Le Goater
2021-11-26 11:53 ` [PATCH v3 06/18] ppc/pnv: Add model for POWER10 PHB5 PCIe Host bridge Cédric Le Goater
2022-02-25 14:09   ` Daniel Henrique Barboza
2021-11-26 11:53 ` [PATCH v3 07/18] ppc/pnv: Add a HOMER model to POWER10 Cédric Le Goater
2021-11-26 11:53 ` [PATCH v3 08/18] ppc/psi: Add support for StoreEOI and 64k ESB pages (POWER10) Cédric Le Goater
2022-02-25 14:11   ` Daniel Henrique Barboza
2021-11-26 11:53 ` [PATCH v3 09/18] ppc/xive2: Add support for notification injection on ESB pages Cédric Le Goater
2022-02-25 14:18   ` Daniel Henrique Barboza
2021-11-26 11:53 ` [PATCH v3 10/18] ppc/xive: Add support for PQ state bits offload Cédric Le Goater
2022-02-25 16:00   ` Daniel Henrique Barboza
2021-11-26 11:53 ` [PATCH v3 11/18] ppc/pnv: Add support for PQ offload on PHB5 Cédric Le Goater
2022-02-25 16:06   ` Daniel Henrique Barboza
2021-11-26 11:53 ` [PATCH v3 12/18] ppc/pnv: Add support for PHB5 "Address-based trigger" mode Cédric Le Goater
2022-02-25 16:11   ` Daniel Henrique Barboza
2021-11-26 11:53 ` [PATCH v3 13/18] pnv/xive2: Introduce new capability bits Cédric Le Goater
2022-02-25 16:13   ` Daniel Henrique Barboza
2021-11-26 11:53 ` [PATCH v3 14/18] ppc/pnv: add XIVE Gen2 TIMA support Cédric Le Goater
2022-02-25 16:26   ` Daniel Henrique Barboza
2021-11-26 11:53 ` [PATCH v3 15/18] pnv/xive2: Add support XIVE2 P9-compat mode (or Gen1) Cédric Le Goater
2022-02-25 16:28   ` Daniel Henrique Barboza
2021-11-26 11:53 ` [PATCH v3 16/18] xive2: Add a get_config() handler for the router configuration Cédric Le Goater
2022-02-25 16:29   ` Daniel Henrique Barboza
2021-11-26 11:53 ` [PATCH v3 17/18] pnv/xive2: Add support for automatic save&restore Cédric Le Goater
2022-02-25 16:33   ` Daniel Henrique Barboza
2021-11-26 11:53 ` [PATCH v3 18/18] pnv/xive2: Add support for 8bits thread id Cédric Le Goater
2022-02-25 16:33   ` Daniel Henrique Barboza
2022-01-11 13:34 ` Daniel Henrique Barboza [this message]

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=785b3735-4106-82da-dbe8-6d76e94e0665@gmail.com \
    --to=danielhb413@gmail.com \
    --cc=aik@ozlabs.ru \
    --cc=clg@kaod.org \
    --cc=david@gibson.dropbear.id.au \
    --cc=fbarrat@linux.ibm.com \
    --cc=groug@kaod.org \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@nongnu.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).