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 06/18] ppc/pnv: Add model for POWER10 PHB5 PCIe Host bridge
Date: Fri, 25 Feb 2022 11:09:25 -0300 [thread overview]
Message-ID: <0263dc61-7bd5-d3d7-14e4-5884183222e6@gmail.com> (raw)
In-Reply-To: <20211126115349.2737605-7-clg@kaod.org>
On 11/26/21 08:53, Cédric Le Goater wrote:
> PHB4 and PHB5 are very similar. Use the PHB4 models with some minor
> adjustements in a subclass for P10.
>
> Signed-off-by: Cédric Le Goater <clg@kaod.org>
> ---
> include/hw/pci-host/pnv_phb4.h | 11 ++++
> include/hw/ppc/pnv.h | 3 ++
> include/hw/ppc/pnv_xscom.h | 6 +++
> hw/pci-host/pnv_phb4_pec.c | 44 ++++++++++++++++
> hw/ppc/pnv.c | 94 ++++++++++++++++++++++++++++++++++
> 5 files changed, 158 insertions(+)
>
> diff --git a/include/hw/pci-host/pnv_phb4.h b/include/hw/pci-host/pnv_phb4.h
> index 27556ae53425..78ae74349299 100644
> --- a/include/hw/pci-host/pnv_phb4.h
> +++ b/include/hw/pci-host/pnv_phb4.h
> @@ -221,4 +221,15 @@ struct PnvPhb4PecClass {
> int stk_compat_size;
> };
>
> +/*
> + * POWER10 definitions
> + */
> +
> +#define PNV_PHB5_VERSION 0x000000a500000001ull
> +#define PNV_PHB5_DEVICE_ID 0x0652
> +
> +#define TYPE_PNV_PHB5_PEC "pnv-phb5-pec"
> +#define PNV_PHB5_PEC(obj) \
> + OBJECT_CHECK(PnvPhb4PecState, (obj), TYPE_PNV_PHB5_PEC)
> +
> #endif /* PCI_HOST_PNV_PHB4_H */
> diff --git a/include/hw/ppc/pnv.h b/include/hw/ppc/pnv.h
> index 13495423283a..f44b9947d00e 100644
> --- a/include/hw/ppc/pnv.h
> +++ b/include/hw/ppc/pnv.h
> @@ -131,6 +131,9 @@ struct Pnv10Chip {
>
> uint32_t nr_quads;
> PnvQuad *quads;
> +
> +#define PNV10_CHIP_MAX_PEC 2
> + PnvPhb4PecState pecs[PNV10_CHIP_MAX_PEC];
> };
>
> #define PNV10_PIR2FUSEDCORE(pir) (((pir) >> 3) & 0xf)
> diff --git a/include/hw/ppc/pnv_xscom.h b/include/hw/ppc/pnv_xscom.h
> index 151df15378d1..75db33d46af6 100644
> --- a/include/hw/ppc/pnv_xscom.h
> +++ b/include/hw/ppc/pnv_xscom.h
> @@ -137,6 +137,12 @@ struct PnvXScomInterfaceClass {
> #define PNV10_XSCOM_XIVE2_BASE 0x2010800
> #define PNV10_XSCOM_XIVE2_SIZE 0x400
>
> +#define PNV10_XSCOM_PEC_NEST_BASE 0x3011800 /* index goes downwards ... */
> +#define PNV10_XSCOM_PEC_NEST_SIZE 0x100
> +
> +#define PNV10_XSCOM_PEC_PCI_BASE 0x8010800 /* index goes upwards ... */
> +#define PNV10_XSCOM_PEC_PCI_SIZE 0x200
> +
> void pnv_xscom_realize(PnvChip *chip, uint64_t size, Error **errp);
> int pnv_dt_xscom(PnvChip *chip, void *fdt, int root_offset,
> uint64_t xscom_base, uint64_t xscom_size,
> diff --git a/hw/pci-host/pnv_phb4_pec.c b/hw/pci-host/pnv_phb4_pec.c
> index 741ddc90ed8d..ab13311ef4c7 100644
> --- a/hw/pci-host/pnv_phb4_pec.c
> +++ b/hw/pci-host/pnv_phb4_pec.c
> @@ -584,9 +584,53 @@ static const TypeInfo pnv_pec_stk_type_info = {
> }
> };
>
> +/*
> + * POWER10 definitions
> + */
> +
> +static uint32_t pnv_phb5_pec_xscom_pci_base(PnvPhb4PecState *pec)
> +{
> + return PNV10_XSCOM_PEC_PCI_BASE + 0x1000000 * pec->index;
> +}
> +
> +static uint32_t pnv_phb5_pec_xscom_nest_base(PnvPhb4PecState *pec)
> +{
> + /* index goes down ... */
> + return PNV10_XSCOM_PEC_NEST_BASE - 0x1000000 * pec->index;
> +}
> +
> +static void pnv_phb5_pec_class_init(ObjectClass *klass, void *data)
> +{
> + PnvPhb4PecClass *pecc = PNV_PHB4_PEC_CLASS(klass);
> + static const char compat[] = "ibm,power10-pbcq";
> + static const char stk_compat[] = "ibm,power10-phb-stack";
> +
> + pecc->xscom_nest_base = pnv_phb5_pec_xscom_nest_base;
> + pecc->xscom_pci_base = pnv_phb5_pec_xscom_pci_base;
> + pecc->xscom_nest_size = PNV10_XSCOM_PEC_NEST_SIZE;
> + pecc->xscom_pci_size = PNV10_XSCOM_PEC_PCI_SIZE;
> + pecc->compat = compat;
> + pecc->compat_size = sizeof(compat);
> + pecc->stk_compat = stk_compat;
> + pecc->stk_compat_size = sizeof(stk_compat);
> +}
> +
> +static const TypeInfo pnv_phb5_pec_type_info = {
> + .name = TYPE_PNV_PHB5_PEC,
> + .parent = TYPE_PNV_PHB4_PEC,
> + .instance_size = sizeof(PnvPhb4PecState),
> + .class_init = pnv_phb5_pec_class_init,
> + .class_size = sizeof(PnvPhb4PecClass),
> + .interfaces = (InterfaceInfo[]) {
> + { TYPE_PNV_XSCOM_INTERFACE },
> + { }
> + }
> +};
> +
> static void pnv_pec_register_types(void)
> {
> type_register_static(&pnv_pec_type_info);
> + type_register_static(&pnv_phb5_pec_type_info);
> type_register_static(&pnv_pec_stk_type_info);
> }
>
> diff --git a/hw/ppc/pnv.c b/hw/ppc/pnv.c
> index 5c342e313329..0de3027b7122 100644
> --- a/hw/ppc/pnv.c
> +++ b/hw/ppc/pnv.c
> @@ -706,9 +706,17 @@ static void pnv_ipmi_bt_init(ISABus *bus, IPMIBmc *bmc, uint32_t irq)
> static void pnv_chip_power10_pic_print_info(PnvChip *chip, Monitor *mon)
> {
> Pnv10Chip *chip10 = PNV10_CHIP(chip);
> + int i, j;
>
> pnv_xive2_pic_print_info(&chip10->xive, mon);
> pnv_psi_pic_print_info(&chip10->psi, mon);
> +
> + for (i = 0; i < PNV10_CHIP_MAX_PEC; i++) {
> + PnvPhb4PecState *pec = &chip10->pecs[i];
> + for (j = 0; j < pec->num_stacks; j++) {
> + pnv_phb4_pic_print_info(&pec->stacks[j].phb, mon);
> + }
> + }
> }
>
> /* Always give the first 1GB to chip 0 else we won't boot */
> @@ -1602,7 +1610,10 @@ static void pnv_chip_power9_class_init(ObjectClass *klass, void *data)
>
> static void pnv_chip_power10_instance_init(Object *obj)
> {
> + PnvChip *chip = PNV_CHIP(obj);
> Pnv10Chip *chip10 = PNV10_CHIP(obj);
> + PnvChipClass *pcc = PNV_CHIP_GET_CLASS(obj);
> + int i;
>
> object_initialize_child(obj, "xive", &chip10->xive, TYPE_PNV_XIVE2);
> object_property_add_alias(obj, "xive-fabric", OBJECT(&chip10->xive),
> @@ -1610,6 +1621,16 @@ static void pnv_chip_power10_instance_init(Object *obj)
> object_initialize_child(obj, "psi", &chip10->psi, TYPE_PNV10_PSI);
> object_initialize_child(obj, "lpc", &chip10->lpc, TYPE_PNV10_LPC);
> object_initialize_child(obj, "occ", &chip10->occ, TYPE_PNV10_OCC);
> +
> + for (i = 0; i < PNV10_CHIP_MAX_PEC; i++) {
> + object_initialize_child(obj, "pec[*]", &chip10->pecs[i],
> + TYPE_PNV_PHB5_PEC);
> + }
> +
> + /*
> + * Number of PHBs is the chip default
> + */
> + chip->num_phbs = pcc->num_phbs;
> }
>
> static void pnv_chip_power10_quad_realize(Pnv10Chip *chip10, Error **errp)
> @@ -1630,6 +1651,71 @@ static void pnv_chip_power10_quad_realize(Pnv10Chip *chip10, Error **errp)
> }
> }
>
> +static void pnv_chip_power10_phb_realize(PnvChip *chip, Error **errp)
> +{
> + Pnv10Chip *chip10 = PNV10_CHIP(chip);
> + int i, j;
> + int phb_id = 0;
> +
> + for (i = 0; i < PNV10_CHIP_MAX_PEC; i++) {
> + PnvPhb4PecState *pec = &chip10->pecs[i];
> + PnvPhb4PecClass *pecc = PNV_PHB4_PEC_GET_CLASS(pec);
> + uint32_t pec_nest_base;
> + uint32_t pec_pci_base;
> +
> + object_property_set_int(OBJECT(pec), "index", i, &error_fatal);
> + /*
> + * PEC0 -> 3 stacks
> + * PEC1 -> 3 stacks
> + */
> + object_property_set_int(OBJECT(pec), "num-stacks", 3,
> + &error_fatal);
> + object_property_set_int(OBJECT(pec), "chip-id", chip->chip_id,
> + &error_fatal);
> + object_property_set_link(OBJECT(pec), "system-memory",
> + OBJECT(get_system_memory()), &error_abort);
> + if (!qdev_realize(DEVICE(pec), NULL, errp)) {
> + return;
> + }
> +
> + pec_nest_base = pecc->xscom_nest_base(pec);
> + pec_pci_base = pecc->xscom_pci_base(pec);
> +
> + pnv_xscom_add_subregion(chip, pec_nest_base, &pec->nest_regs_mr);
> + pnv_xscom_add_subregion(chip, pec_pci_base, &pec->pci_regs_mr);
> +
> + for (j = 0; j < pec->num_stacks && phb_id < chip->num_phbs;
> + j++, phb_id++) {
> + PnvPhb4PecStack *stack = &pec->stacks[j];
> + Object *obj = OBJECT(&stack->phb);
> +
> + object_property_set_int(obj, "index", phb_id, &error_fatal);
> + object_property_set_int(obj, "chip-id", chip->chip_id,
> + &error_fatal);
> + object_property_set_int(obj, "version", PNV_PHB5_VERSION,
> + &error_fatal);
> + object_property_set_int(obj, "device-id", PNV_PHB5_DEVICE_ID,
> + &error_fatal);
> + object_property_set_link(obj, "stack", OBJECT(stack), &error_abort);
> + if (!sysbus_realize(SYS_BUS_DEVICE(obj), errp)) {
> + return;
> + }
> +
> + /* Populate the XSCOM address space. */
> + pnv_xscom_add_subregion(chip,
> + pec_nest_base + 0x40 * (stack->stack_no + 1),
> + &stack->nest_regs_mr);
> + pnv_xscom_add_subregion(chip,
> + pec_pci_base + 0x40 * (stack->stack_no + 1),
> + &stack->pci_regs_mr);
> + pnv_xscom_add_subregion(chip,
> + pec_pci_base + PNV9_XSCOM_PEC_PCI_STK0 +
> + 0x40 * stack->stack_no,
> + &stack->phb_regs_mr);
> + }
This except will need rework after all the changes we've done in the pnv-phb4 codebase.
We don't have PnvPhb4PecStack anymore, the order/place in which we create the devices
and realize them are all different, etc.
Thanks,
Daniel
> + }
> +}
> +
> static void pnv_chip_power10_realize(DeviceState *dev, Error **errp)
> {
> PnvChipClass *pcc = PNV_CHIP_GET_CLASS(dev);
> @@ -1708,6 +1794,13 @@ static void pnv_chip_power10_realize(DeviceState *dev, Error **errp)
> }
> pnv_xscom_add_subregion(chip, PNV10_XSCOM_OCC_BASE,
> &chip10->occ.xscom_regs);
> +
> + /* PHBs */
> + pnv_chip_power10_phb_realize(chip, &local_err);
> + if (local_err) {
> + error_propagate(errp, local_err);
> + return;
> + }
> }
>
> static uint32_t pnv_chip_power10_xscom_pcba(PnvChip *chip, uint64_t addr)
> @@ -1734,6 +1827,7 @@ static void pnv_chip_power10_class_init(ObjectClass *klass, void *data)
> k->xscom_core_base = pnv_chip_power10_xscom_core_base;
> k->xscom_pcba = pnv_chip_power10_xscom_pcba;
> dc->desc = "PowerNV Chip POWER10";
> + k->num_phbs = 6;
>
> device_class_set_parent_realize(dc, pnv_chip_power10_realize,
> &k->parent_realize);
next prev parent reply other threads:[~2022-02-25 14:36 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 [this message]
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 ` [PATCH v3 00/18] ppc/pnv: Extend the powernv10 machine Daniel Henrique Barboza
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=0263dc61-7bd5-d3d7-14e4-5884183222e6@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).