[PATCH v2 0/6] hw/arm: Minor cleanups around MPCore code

Philippe Mathieu-Daudé posted 6 patches 2 months ago
include/hw/arm/boot.h    |  4 ++-
hw/arm/boot.c            | 11 +++----
hw/arm/fsl-imx6.c        | 52 +++++++++++++-------------------
hw/arm/fsl-imx6ul.c      | 64 +++++++++++++++++-----------------------
hw/arm/fsl-imx7.c        | 52 +++++++++++++++-----------------
hw/arm/virt.c            |  2 +-
hw/cpu/a15mpcore.c       | 21 ++++++-------
hw/cpu/a9mpcore.c        | 21 ++++++-------
hw/cpu/arm11mpcore.c     | 21 ++++++-------
hw/cpu/realview_mpcore.c | 29 +++++++-----------
10 files changed, 118 insertions(+), 159 deletions(-)
[PATCH v2 0/6] hw/arm: Minor cleanups around MPCore code
Posted by Philippe Mathieu-Daudé 2 months ago
(series fully reviewed)

Hi,

This series contains the non-controversial and already
reviewed patches (rebased) from this previous series:
"Remove one use of qemu_get_cpu() in A7/A15 MPCore priv"
https://lore.kernel.org/qemu-devel/20231212162935.42910-1-philmd@linaro.org/

Posted separately to avoid keeping rebasing.

Regards,

Phil.

Philippe Mathieu-Daudé (6):
  hw/arm/boot: Propagate vCPU to arm_load_dtb()
  hw/arm/fsl-imx6: Add local 'mpcore/gic' variables
  hw/arm/fsl-imx6ul: Add local 'mpcore/gic' variables
  hw/arm/fsl-imx7: Add local 'mpcore/gic' variables
  hw/cpu/arm: Alias 'num-cpu' property on TYPE_REALVIEW_MPCORE
  hw/cpu/arm: Declare CPU QOM types using DEFINE_TYPES() macro

 include/hw/arm/boot.h    |  4 ++-
 hw/arm/boot.c            | 11 +++----
 hw/arm/fsl-imx6.c        | 52 +++++++++++++-------------------
 hw/arm/fsl-imx6ul.c      | 64 +++++++++++++++++-----------------------
 hw/arm/fsl-imx7.c        | 52 +++++++++++++++-----------------
 hw/arm/virt.c            |  2 +-
 hw/cpu/a15mpcore.c       | 21 ++++++-------
 hw/cpu/a9mpcore.c        | 21 ++++++-------
 hw/cpu/arm11mpcore.c     | 21 ++++++-------
 hw/cpu/realview_mpcore.c | 29 +++++++-----------
 10 files changed, 118 insertions(+), 159 deletions(-)

-- 
2.47.1


Re: [PATCH v2 0/6] hw/arm: Minor cleanups around MPCore code
Posted by Peter Maydell 1 month, 4 weeks ago
On Thu, 30 Jan 2025 at 11:26, Philippe Mathieu-Daudé <philmd@linaro.org> wrote:
>
> (series fully reviewed)
>
> Hi,
>
> This series contains the non-controversial and already
> reviewed patches (rebased) from this previous series:
> "Remove one use of qemu_get_cpu() in A7/A15 MPCore priv"
> https://lore.kernel.org/qemu-devel/20231212162935.42910-1-philmd@linaro.org/
>
> Posted separately to avoid keeping rebasing.
>
> Regards,
>
> Phil.
>
> Philippe Mathieu-Daudé (6):
>   hw/arm/boot: Propagate vCPU to arm_load_dtb()
>   hw/arm/fsl-imx6: Add local 'mpcore/gic' variables
>   hw/arm/fsl-imx6ul: Add local 'mpcore/gic' variables
>   hw/arm/fsl-imx7: Add local 'mpcore/gic' variables
>   hw/cpu/arm: Alias 'num-cpu' property on TYPE_REALVIEW_MPCORE
>   hw/cpu/arm: Declare CPU QOM types using DEFINE_TYPES() macro
>


Applied to target-arm.next, thanks.

-- PMM