qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Cédric Le Goater" <clg@kaod.org>
To: Steven Lee <steven_lee@aspeedtech.com>,
	Peter Maydell <peter.maydell@linaro.org>,
	Troy Lee <leetroy@gmail.com>,
	Jamin Lin <jamin_lin@aspeedtech.com>,
	Andrew Jeffery <andrew@codeconstruct.com.au>,
	Joel Stanley <joel@jms.id.au>,
	"open list:ASPEED BMCs" <qemu-arm@nongnu.org>,
	"open list:All patches CC here" <qemu-devel@nongnu.org>
Cc: Troy Lee <troy_lee@aspeedtech.com>,
	Yunlin Tang <yunlin.tang@aspeedtech.com>
Subject: Re: [PATCH v2 00/13] Introduce AST27x0 multi-SoC machine
Date: Tue, 8 Apr 2025 08:46:48 +0200	[thread overview]
Message-ID: <b00e7982-3fb1-42e2-b11c-e351fa261282@kaod.org> (raw)
In-Reply-To: <KL1PR0601MB4180B751F27DD46E378825E885B52@KL1PR0601MB4180.apcprd06.prod.outlook.com>

On 4/8/25 08:35, Steven Lee wrote:
>> -----Original Message-----
>> From: Cédric Le Goater <clg@kaod.org>
>> Sent: Wednesday, March 26, 2025 1:34 AM
>> To: Steven Lee <steven_lee@aspeedtech.com>; Peter Maydell
>> <peter.maydell@linaro.org>; Troy Lee <leetroy@gmail.com>; Jamin Lin
>> <jamin_lin@aspeedtech.com>; Andrew Jeffery
>> <andrew@codeconstruct.com.au>; Joel Stanley <joel@jms.id.au>; open
>> list:ASPEED BMCs <qemu-arm@nongnu.org>; open list:All patches CC here
>> <qemu-devel@nongnu.org>
>> Cc: Troy Lee <troy_lee@aspeedtech.com>; Yunlin Tang
>> <yunlin.tang@aspeedtech.com>
>> Subject: Re: [PATCH v2 00/13] Introduce AST27x0 multi-SoC machine
>>
>> Hello Steven,
>>
>> On 3/13/25 06:40, Steven Lee wrote:
>>> This patch series introduces full core support for the AST27x0 SoC, along with
>> necessary updates to the ASPEED AST27x0 SOC.
>>> The AST27x0 SoC is a new family of ASPEED SoCs featuring 4 Cortex-A35
>> cores and 2 Cortex-M4 cores.
>>>
>>> v1:
>>>     - Map unimplemented devices in SoC memory
>>>     - Intruduce AST2700 CM4 SoC
>>>     - Introduce AST27x0FC Machine
>>>
>>> v2:
>>>     - Remove unused functions
>>>     - Correct hex notation for device addresses in AST27x0 SoC
>>>     - Add AST2700 SSP INTC and AST2700 TSP INTC
>>>     - Split AST27x0 CM4 SoC to AST27x0 SSP SoC and AST27x0 TSP SoC
>>>     - Add AST27x0 A0 SSP SoC and AST27x0 A1 SSP SoC
>>>     - Add AST27x0 A0 TSP SoC and AST27x0 A1 TSP SoC
>>>     - Add functional tests for AST2700FC A0 and AST2700FC A1
>>>     - Add Documentation for AST2700FC
>>
>> Please try to label all patches as v2. See 'git format-patch -v ...'
>>
> 
> Hi Cédric,
> 
> Thanks for the reminder. I will label the patches as v3 in the next submission.
> 
> Regards,
> Steven
> 
>>> Steven Lee (13):
>>>     aspeed: ast27x0: Map unimplemented devices in SoC memory
>>>     aspeed: ast27x0: Correct hex notation for device addresses
>>>     hw/intc/aspeed: Add support for AST2700 SSP INTC
>>>     hw/intc/aspeed: Add support for AST2700 TSP INTC
>>>     hw/arm/aspeed_ast27x0-ssp: Introduce AST27x0 A0 SSP SoC
>>>     hw/arm/aspeed_ast27x0-ssp: Introduce AST27x0 A1 SSP SoC
>>>     hw/arm/aspeed_ast27x0-tsp: Introduce AST27x0 A0 TSP SoC
>>>     hw/arm/aspeed_ast27x0-tsp: Introduce AST27x0 A1 TSP SoC
>>>     hw/arm: Introduce ASPEED AST2700 a0 full core machine
>>>     hw/arm: Introduce ASPEED AST2700 a1 full core machine
>>>     tests/function/aspeed: Add functional test for AST2700FC
>>>     tests/function/aspeed: Add functional test for AST2700FC A1
>>>     docs: Add support for ast2700fc machine
>>
>> Do we need to add support for the A0 and A1 ? Would A1 be enough ?
>>
> 
> I will remove A0 in v3 the patch series.

Thanks, it all looked good to me. I should be able to queue the series
quickly for QEMU 10.1 before Jamin's HACE changes.

C.


> 
>>
>>
>>
>>
>>>    docs/system/arm/aspeed.rst                 |  61 ++-
>>>    include/hw/arm/aspeed_soc.h                |  32 ++
>>>    include/hw/intc/aspeed_intc.h              |   5 +
>>>    hw/arm/aspeed_ast27x0-fc.c                 | 340
>> +++++++++++++++++
>>>    hw/arm/aspeed_ast27x0-ssp.c                | 400
>> +++++++++++++++++++
>>>    hw/arm/aspeed_ast27x0-tsp.c                | 400
>> +++++++++++++++++++
>>>    hw/arm/aspeed_ast27x0.c                    |  79 +++-
>>>    hw/intc/aspeed_intc.c                      | 424
>> +++++++++++++++++++++
>>>    hw/arm/meson.build                         |   6 +-
>>>    tests/functional/test_aarch64_ast2700fc.py | 161 ++++++++
>>>    10 files changed, 1884 insertions(+), 24 deletions(-)
>>>    create mode 100644 hw/arm/aspeed_ast27x0-fc.c
>>>    create mode 100644 hw/arm/aspeed_ast27x0-ssp.c
>>>    create mode 100644 hw/arm/aspeed_ast27x0-tsp.c
>>>    create mode 100755 tests/functional/test_aarch64_ast2700fc.py
>>>
> 



  reply	other threads:[~2025-04-08  6:47 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-13  5:40 [PATCH v2 00/13] Introduce AST27x0 multi-SoC machine Steven Lee via
2025-03-13  5:40 ` [PATCH 01/13] aspeed: ast27x0: Map unimplemented devices in SoC memory Steven Lee via
2025-03-25 17:30   ` Cédric Le Goater
2025-03-13  5:40 ` [PATCH 02/13] aspeed: ast27x0: Correct hex notation for device addresses Steven Lee via
2025-03-25 17:31   ` Cédric Le Goater
2025-03-13  5:40 ` [PATCH 03/13] hw/intc/aspeed: Add support for AST2700 SSP INTC Steven Lee via
2025-04-07 15:12   ` Cédric Le Goater
2025-03-13  5:40 ` [PATCH 04/13] hw/intc/aspeed: Add support for AST2700 TSP INTC Steven Lee via
2025-04-07 15:14   ` Cédric Le Goater
2025-03-13  5:40 ` [PATCH 05/13] hw/arm/aspeed_ast27x0-ssp: Introduce AST27x0 A0 SSP SoC Steven Lee via
2025-04-07 15:16   ` Cédric Le Goater
2025-04-08  1:43     ` Steven Lee
2025-03-13  5:40 ` [PATCH 06/13] hw/arm/aspeed_ast27x0-ssp: Introduce AST27x0 A1 " Steven Lee via
2025-04-07 15:17   ` Cédric Le Goater
2025-04-08  1:48     ` Steven Lee
2025-03-13  5:40 ` [PATCH 07/13] hw/arm/aspeed_ast27x0-tsp: Introduce AST27x0 A0 TSP SoC Steven Lee via
2025-03-13  5:40 ` [PATCH 08/13] hw/arm/aspeed_ast27x0-tsp: Introduce AST27x0 A1 " Steven Lee via
2025-03-13  5:40 ` [PATCH 09/13] hw/arm: Introduce ASPEED AST2700 a0 full core machine Steven Lee via
2025-03-13  5:40 ` [PATCH 10/13] hw/arm: Introduce ASPEED AST2700 a1 " Steven Lee via
2025-03-13  5:40 ` [PATCH 11/13] tests/function/aspeed: Add functional test for AST2700FC Steven Lee via
2025-03-13  5:40 ` [PATCH 12/13] tests/function/aspeed: Add functional test for AST2700FC A1 Steven Lee via
2025-03-13  5:40 ` [PATCH 13/13] docs: Add support for ast2700fc machine Steven Lee via
2025-03-25 17:33 ` [PATCH v2 00/13] Introduce AST27x0 multi-SoC machine Cédric Le Goater
2025-04-08  6:35   ` Steven Lee
2025-04-08  6:46     ` Cédric Le Goater [this message]
2025-04-23  9:51     ` 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=b00e7982-3fb1-42e2-b11c-e351fa261282@kaod.org \
    --to=clg@kaod.org \
    --cc=andrew@codeconstruct.com.au \
    --cc=jamin_lin@aspeedtech.com \
    --cc=joel@jms.id.au \
    --cc=leetroy@gmail.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-arm@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=steven_lee@aspeedtech.com \
    --cc=troy_lee@aspeedtech.com \
    --cc=yunlin.tang@aspeedtech.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).