qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Cédric Le Goater" <clg@redhat.com>
To: Jamin Lin <jamin_lin@aspeedtech.com>,
	Paolo Bonzini <pbonzini@redhat.com>,
	Peter Maydell <peter.maydell@linaro.org>,
	Steven Lee <steven_lee@aspeedtech.com>,
	Troy Lee <leetroy@gmail.com>,
	Andrew Jeffery <andrew@codeconstruct.com.au>,
	Joel Stanley <joel@jms.id.au>,
	"Michael S. Tsirkin" <mst@redhat.com>,
	Marcel Apfelbaum <marcel.apfelbaum@gmail.com>,
	"open list:ARM TCG CPUs" <qemu-arm@nongnu.org>,
	"open list:All patches CC here" <qemu-devel@nongnu.org>
Cc: troy_lee@aspeedtech.com, nabihestefan@google.com,
	wuhaotsh@google.com, titusr@google.com
Subject: Re: [SPAM] [PATCH v5 12/14] hw/arm/aspeed_ast27x0: Introduce 3 PCIe RCs for AST2700
Date: Fri, 19 Sep 2025 11:49:39 +0200	[thread overview]
Message-ID: <2b844152-7db6-4706-ab1d-4d8176c67985@redhat.com> (raw)
In-Reply-To: <20250919093017.338309-13-jamin_lin@aspeedtech.com>

On 9/19/25 11:30, Jamin Lin wrote:
> Add PCIe Root Complex support to the AST2700 SoC model.
> 
> The AST2700 A1 silicon revision provides three PCIe Root Complexes:
> 
> PCIe0 with its PHY at 0x12C15000, config (H2X) block at 0x120E0000,
> MMIO window at 0x60000000, and GIC IRQ 56.
> 
> PCIe1 with its PHY at 0x12C15800, config (H2X) block at 0x120F0000,
> MMIO window at 0x80000000, and GIC IRQ 57.
> 
> PCIe2 with its PHY at 0x14C1C000, config (H2X) block at 0x140D0000,
> MMIO window at 0xA0000000, and IRQ routed through INTC4 bit 31
> mapped to GIC IRQ 196.
> 
> Each RC instantiates a PHY device, a PCIe config (H2X) bridge, and an MMIO
> alias region. The per-RC MMIO alias size is 0x20000000. The AST2700 A0
> silicon revision does not support PCIe Root Complexes, so pcie_num is set
> to 0 in that variant.
> 
> Signed-off-by: Jamin Lin <jamin_lin@aspeedtech.com>


Reviewed-by: Cédric Le Goater <clg@redhat.com>

Thanks,

C.


> ---
>   include/hw/arm/aspeed_soc.h |  1 +
>   hw/arm/aspeed_ast27x0.c     | 74 +++++++++++++++++++++++++++++++++++++
>   2 files changed, 75 insertions(+)
> 
> diff --git a/include/hw/arm/aspeed_soc.h b/include/hw/arm/aspeed_soc.h
> index a0cf433775..aaf518d179 100644
> --- a/include/hw/arm/aspeed_soc.h
> +++ b/include/hw/arm/aspeed_soc.h
> @@ -186,6 +186,7 @@ struct AspeedSoCClass {
>       uint32_t silicon_rev;
>       uint64_t sram_size;
>       uint64_t secsram_size;
> +    int pcie_num;
>       int spis_num;
>       int ehcis_num;
>       int wdts_num;
> diff --git a/hw/arm/aspeed_ast27x0.c b/hw/arm/aspeed_ast27x0.c
> index 6aa3841b69..853339119f 100644
> --- a/hw/arm/aspeed_ast27x0.c
> +++ b/hw/arm/aspeed_ast27x0.c
> @@ -38,6 +38,8 @@ static const hwaddr aspeed_soc_ast2700_memmap[] = {
>       [ASPEED_DEV_EHCI2]     =  0x12063000,
>       [ASPEED_DEV_HACE]      =  0x12070000,
>       [ASPEED_DEV_EMMC]      =  0x12090000,
> +    [ASPEED_DEV_PCIE0]     =  0x120E0000,
> +    [ASPEED_DEV_PCIE1]     =  0x120F0000,
>       [ASPEED_DEV_INTC]      =  0x12100000,
>       [ASPEED_GIC_DIST]      =  0x12200000,
>       [ASPEED_GIC_REDIST]    =  0x12280000,
> @@ -45,6 +47,8 @@ static const hwaddr aspeed_soc_ast2700_memmap[] = {
>       [ASPEED_DEV_SCU]       =  0x12C02000,
>       [ASPEED_DEV_RTC]       =  0x12C0F000,
>       [ASPEED_DEV_TIMER1]    =  0x12C10000,
> +    [ASPEED_DEV_PCIE_PHY0] =  0x12C15000,
> +    [ASPEED_DEV_PCIE_PHY1] =  0x12C15800,
>       [ASPEED_DEV_SLI]       =  0x12C17000,
>       [ASPEED_DEV_UART4]     =  0x12C1A000,
>       [ASPEED_DEV_IOMEM1]    =  0x14000000,
> @@ -59,6 +63,7 @@ static const hwaddr aspeed_soc_ast2700_memmap[] = {
>       [ASPEED_DEV_ETH2]      =  0x14060000,
>       [ASPEED_DEV_ETH3]      =  0x14070000,
>       [ASPEED_DEV_SDHCI]     =  0x14080000,
> +    [ASPEED_DEV_PCIE2]     =  0x140D0000,
>       [ASPEED_DEV_EHCI3]     =  0x14121000,
>       [ASPEED_DEV_EHCI4]     =  0x14123000,
>       [ASPEED_DEV_ADC]       =  0x14C00000,
> @@ -66,6 +71,7 @@ static const hwaddr aspeed_soc_ast2700_memmap[] = {
>       [ASPEED_DEV_GPIO]      =  0x14C0B000,
>       [ASPEED_DEV_I2C]       =  0x14C0F000,
>       [ASPEED_DEV_INTCIO]    =  0x14C18000,
> +    [ASPEED_DEV_PCIE_PHY2] =  0x14C1C000,
>       [ASPEED_DEV_SLIIO]     =  0x14C1E000,
>       [ASPEED_DEV_VUART]     =  0x14C30000,
>       [ASPEED_DEV_UART0]     =  0x14C33000,
> @@ -81,6 +87,9 @@ static const hwaddr aspeed_soc_ast2700_memmap[] = {
>       [ASPEED_DEV_UART11]    =  0x14C33A00,
>       [ASPEED_DEV_UART12]    =  0x14C33B00,
>       [ASPEED_DEV_WDT]       =  0x14C37000,
> +    [ASPEED_DEV_PCIE_MMIO0] = 0x60000000,
> +    [ASPEED_DEV_PCIE_MMIO1] = 0x80000000,
> +    [ASPEED_DEV_PCIE_MMIO2] = 0xA0000000,
>       [ASPEED_DEV_SPI_BOOT]  =  0x100000000,
>       [ASPEED_DEV_LTPI]      =  0x300000000,
>       [ASPEED_DEV_SDRAM]     =  0x400000000,
> @@ -156,6 +165,8 @@ static const int aspeed_soc_ast2700a1_irqmap[] = {
>       [ASPEED_DEV_DP]        = 28,
>       [ASPEED_DEV_EHCI1]     = 33,
>       [ASPEED_DEV_EHCI2]     = 37,
> +    [ASPEED_DEV_PCIE0]     = 56,
> +    [ASPEED_DEV_PCIE1]     = 57,
>       [ASPEED_DEV_LPC]       = 192,
>       [ASPEED_DEV_IBT]       = 192,
>       [ASPEED_DEV_KCS]       = 192,
> @@ -166,6 +177,7 @@ static const int aspeed_soc_ast2700a1_irqmap[] = {
>       [ASPEED_DEV_WDT]       = 195,
>       [ASPEED_DEV_PWM]       = 195,
>       [ASPEED_DEV_I3C]       = 195,
> +    [ASPEED_DEV_PCIE2]     = 196,
>       [ASPEED_DEV_UART0]     = 196,
>       [ASPEED_DEV_UART1]     = 196,
>       [ASPEED_DEV_UART2]     = 196,
> @@ -233,6 +245,7 @@ static const int ast2700_gic132_gic196_intcmap[] = {
>       [ASPEED_DEV_UART12]    = 18,
>       [ASPEED_DEV_EHCI3]     = 28,
>       [ASPEED_DEV_EHCI4]     = 29,
> +    [ASPEED_DEV_PCIE2]     = 31,
>   };
>   
>   /* GICINT 133 */
> @@ -519,6 +532,17 @@ static void aspeed_soc_ast2700_init(Object *obj)
>   
>       snprintf(typename, sizeof(typename), "aspeed.hace-%s", socname);
>       object_initialize_child(obj, "hace", &s->hace, typename);
> +
> +    for (i = 0; i < sc->pcie_num; i++) {
> +        snprintf(typename, sizeof(typename), "aspeed.pcie-phy-%s", socname);
> +        object_initialize_child(obj, "pcie-phy[*]", &s->pcie_phy[i], typename);
> +        object_property_set_int(OBJECT(&s->pcie_phy[i]), "id", i, &error_abort);
> +
> +        snprintf(typename, sizeof(typename), "aspeed.pcie-cfg-%s", socname);
> +        object_initialize_child(obj, "pcie-cfg[*]", &s->pcie[i], typename);
> +        object_property_set_int(OBJECT(&s->pcie[i]), "id", i, &error_abort);
> +    }
> +
>       object_initialize_child(obj, "dpmcu", &s->dpmcu,
>                               TYPE_UNIMPLEMENTED_DEVICE);
>       object_initialize_child(obj, "ltpi", &s->ltpi,
> @@ -610,6 +634,49 @@ static bool aspeed_soc_ast2700_gic_realize(DeviceState *dev, Error **errp)
>       return true;
>   }
>   
> +static bool aspeed_soc_ast2700_pcie_realize(DeviceState *dev, Error **errp)
> +{
> +    AspeedSoCState *s = ASPEED_SOC(dev);
> +    AspeedSoCClass *sc = ASPEED_SOC_GET_CLASS(s);
> +    MemoryRegion *mmio_mr = NULL;
> +    char name[64];
> +    qemu_irq irq;
> +    int i;
> +
> +    for (i = 0; i < sc->pcie_num; i++) {
> +        if (!sysbus_realize(SYS_BUS_DEVICE(&s->pcie_phy[i]), errp)) {
> +            return false;
> +        }
> +        aspeed_mmio_map(s, SYS_BUS_DEVICE(&s->pcie_phy[i]), 0,
> +                        sc->memmap[ASPEED_DEV_PCIE_PHY0 + i]);
> +
> +        object_property_set_int(OBJECT(&s->pcie[i]), "dram-base",
> +                                sc->memmap[ASPEED_DEV_SDRAM],
> +                                &error_abort);
> +        object_property_set_link(OBJECT(&s->pcie[i]), "dram",
> +                                 OBJECT(s->dram_mr), &error_abort);
> +        if (!sysbus_realize(SYS_BUS_DEVICE(&s->pcie[i]), errp)) {
> +            return false;
> +        }
> +        aspeed_mmio_map(s, SYS_BUS_DEVICE(&s->pcie[i]), 0,
> +                        sc->memmap[ASPEED_DEV_PCIE0 + i]);
> +        irq = aspeed_soc_get_irq(s, ASPEED_DEV_PCIE0 + i);
> +        sysbus_connect_irq(SYS_BUS_DEVICE(&s->pcie[i].rc), 0, irq);
> +
> +        mmio_mr = sysbus_mmio_get_region(SYS_BUS_DEVICE(&s->pcie[i].rc), 1);
> +        snprintf(name, sizeof(name), "aspeed.pcie-mmio.%d", i);
> +        memory_region_init_alias(&s->pcie_mmio_alias[i], OBJECT(&s->pcie[i].rc),
> +                                 name, mmio_mr,
> +                                 sc->memmap[ASPEED_DEV_PCIE_MMIO0 + i],
> +                                 0x20000000);
> +        memory_region_add_subregion(s->memory,
> +                                    sc->memmap[ASPEED_DEV_PCIE_MMIO0 + i],
> +                                    &s->pcie_mmio_alias[i]);
> +    }
> +
> +    return true;
> +}
> +
>   static void aspeed_soc_ast2700_realize(DeviceState *dev, Error **errp)
>   {
>       int i;
> @@ -936,6 +1003,11 @@ static void aspeed_soc_ast2700_realize(DeviceState *dev, Error **errp)
>       sysbus_connect_irq(SYS_BUS_DEVICE(&s->hace), 0,
>                          aspeed_soc_get_irq(s, ASPEED_DEV_HACE));
>   
> +    /* PCIe Root Complex (RC) */
> +    if (!aspeed_soc_ast2700_pcie_realize(dev, errp)) {
> +        return;
> +    }
> +
>       aspeed_mmio_map_unimplemented(s, SYS_BUS_DEVICE(&s->dpmcu),
>                                     "aspeed.dpmcu",
>                                     sc->memmap[ASPEED_DEV_DPMCU],
> @@ -974,6 +1046,7 @@ static void aspeed_soc_ast2700a0_class_init(ObjectClass *oc, const void *data)
>       sc->valid_cpu_types = valid_cpu_types;
>       sc->silicon_rev  = AST2700_A0_SILICON_REV;
>       sc->sram_size    = 0x20000;
> +    sc->pcie_num     = 0;
>       sc->spis_num     = 3;
>       sc->ehcis_num    = 2;
>       sc->wdts_num     = 8;
> @@ -1002,6 +1075,7 @@ static void aspeed_soc_ast2700a1_class_init(ObjectClass *oc, const void *data)
>       sc->valid_cpu_types = valid_cpu_types;
>       sc->silicon_rev  = AST2700_A1_SILICON_REV;
>       sc->sram_size    = 0x20000;
> +    sc->pcie_num     = 3;
>       sc->spis_num     = 3;
>       sc->ehcis_num    = 4;
>       sc->wdts_num     = 8;



  reply	other threads:[~2025-09-19  9:50 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-09-19  9:29 [PATCH v5 00/14] Support PCIe RC to AST2600 and AST2700 Jamin Lin via
2025-09-19  9:30 ` [PATCH v5 01/14] hw/pci/pci_ids: Add PCI vendor ID for ASPEED Jamin Lin via
2025-09-19  9:30 ` [PATCH v5 02/14] hw/pci-host/aspeed: Add AST2600 PCIe PHY model Jamin Lin via
2025-09-19  9:30 ` [PATCH v5 03/14] hw/pci-host/aspeed: Add AST2600 PCIe config space and host bridge Jamin Lin via
2025-09-19  9:30 ` [PATCH v5 04/14] hw/pci-host/aspeed: Add AST2600 PCIe Root Device support Jamin Lin via
2025-09-19  9:30 ` [PATCH v5 05/14] hw/pci-host/aspeed: Add AST2600 PCIe Root Port and make address configurable Jamin Lin via
2025-09-19  9:30 ` [PATCH v5 06/14] hw/pci-host/aspeed: Add MSI support and per-RC IOMMU address space Jamin Lin via
2025-09-19  9:30 ` [PATCH v5 07/14] hw/arm/aspeed: Wire up PCIe devices in SoC model Jamin Lin via
2025-09-19  9:30 ` [PATCH v5 08/14] hw/arm/aspeed_ast2600: Add PCIe RC support (RC_H only) Jamin Lin via
2025-09-19  9:30 ` [PATCH v5 09/14] hw/pci-host/aspeed: Add AST2700 PCIe PHY Jamin Lin via
2025-09-19  9:30 ` [PATCH v5 10/14] hw/pci-host/aspeed: Add AST2700 PCIe config with dedicated H2X blocks Jamin Lin via
2025-09-19  9:30 ` [PATCH v5 11/14] hw/pci-host/aspeed: Disable Root Device and place Root Port at 00:00.0 to AST2700 Jamin Lin via
2025-09-19  9:30 ` [PATCH v5 12/14] hw/arm/aspeed_ast27x0: Introduce 3 PCIe RCs for AST2700 Jamin Lin via
2025-09-19  9:49   ` Cédric Le Goater [this message]
2025-09-19  9:30 ` [PATCH v5 13/14] tests/functional/arm/test_aspeed_ast2600: Add PCIe and network test Jamin Lin via
2025-09-19  9:30 ` [PATCH v5 14/14] tests/functional/aarch64/aspeed_ast2700: Add PCIe and network tests Jamin Lin via
2025-10-01  6:04   ` [SPAM] " Cédric Le Goater
2025-09-19  9:52 ` [SPAM] [PATCH v5 00/14] Support PCIe RC to AST2600 and AST2700 Cédric Le Goater
2025-10-01  2:20   ` Jamin Lin
2025-10-01  6:01     ` Cédric Le Goater

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=2b844152-7db6-4706-ab1d-4d8176c67985@redhat.com \
    --to=clg@redhat.com \
    --cc=andrew@codeconstruct.com.au \
    --cc=jamin_lin@aspeedtech.com \
    --cc=joel@jms.id.au \
    --cc=leetroy@gmail.com \
    --cc=marcel.apfelbaum@gmail.com \
    --cc=mst@redhat.com \
    --cc=nabihestefan@google.com \
    --cc=pbonzini@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-arm@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=steven_lee@aspeedtech.com \
    --cc=titusr@google.com \
    --cc=troy_lee@aspeedtech.com \
    --cc=wuhaotsh@google.com \
    /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).