mbox series

[PATCH-for-10.1,00/13] arm: Spring header cleanups

Message ID 20250402222334.66511-1-philmd@linaro.org
Headers show
Series arm: Spring header cleanups | expand

Message

Philippe Mathieu-Daudé April 2, 2025, 10:23 p.m. UTC
This series is more useful for heterogeneous emulation preparation
than single binary, because it allows non-ARM hw/ code to configure
ARM cores, so not using target-specific APIs. I figured some
patches could be useful to Pierrick "build hw/arm once" series (in
particular arm_cpu_has_feature).

Philippe Mathieu-Daudé (13):
  target/arm/cpu-features: Include missing 'cpu.h' header
  target/arm/qmp: Include missing 'cpu.h' header
  target/arm/kvm: Include missing 'cpu-qom.h' header
  target/arm/hvf: Include missing 'cpu-qom.h' header
  hw/arm: Remove unnecessary 'cpu.h' header
  target/arm: Restrict inclusion of 'multiprocessing.h'
  target/arm: Move some definitions from 'cpu.h' to 'multiprocessing.h'
  hw/arm: Include missing 'target/arm/gtimer.h' header
  target/arm: Extract PSCI definitions to 'psci.h'
  target/arm: Extract feature definitions to 'cpu_has_feature.h' header
  target/arm: Add arm_cpu_has_feature() helper
  hw/arm/realview: Replace arm_feature() -> arm_cpu_has_feature()
  hw/arm/virt-acpi: Replace arm_feature() -> arm_cpu_has_feature()

 include/hw/arm/boot.h        |  3 +-
 target/arm/cpu-features.h    |  1 +
 target/arm/cpu.h             | 78 +-----------------------------------
 target/arm/cpu_has_feature.h | 67 +++++++++++++++++++++++++++++++
 target/arm/hvf_arm.h         |  2 +-
 target/arm/kvm_arm.h         |  1 +
 target/arm/multiprocessing.h | 18 +++++++++
 target/arm/psci.h            | 18 +++++++++
 hw/arm/aspeed_ast2600.c      |  1 +
 hw/arm/aspeed_ast27x0.c      |  2 +
 hw/arm/bananapi_m2u.c        |  1 +
 hw/arm/bcm2838.c             |  1 +
 hw/arm/boot.c                |  1 +
 hw/arm/exynos4210.c          |  3 +-
 hw/arm/fsl-imx8mp.c          |  1 +
 hw/arm/highbank.c            |  2 +-
 hw/arm/imx8mp-evk.c          |  1 +
 hw/arm/mcimx6ul-evk.c        |  1 +
 hw/arm/mcimx7d-sabre.c       |  1 +
 hw/arm/mps3r.c               |  2 +-
 hw/arm/npcm8xx.c             |  2 +
 hw/arm/orangepi.c            |  1 +
 hw/arm/realview.c            | 10 ++---
 hw/arm/sbsa-ref.c            |  2 +
 hw/arm/smmuv3.c              |  1 -
 hw/arm/virt-acpi-build.c     |  4 +-
 hw/arm/virt.c                |  1 +
 hw/arm/xlnx-versal-virt.c    |  1 +
 hw/arm/xlnx-zcu102.c         |  1 +
 hw/vmapple/vmapple.c         |  3 ++
 target/arm/arm-qmp-cmds.c    |  1 +
 target/arm/cpu.c             |  8 ++++
 target/arm/helper.c          |  1 +
 target/arm/hvf/hvf.c         |  1 +
 target/arm/kvm.c             |  1 +
 target/arm/tcg/op_helper.c   |  2 +
 target/arm/tcg/psci.c        |  1 +
 37 files changed, 156 insertions(+), 90 deletions(-)
 create mode 100644 target/arm/cpu_has_feature.h
 create mode 100644 target/arm/psci.h

Comments

Pierrick Bouvier April 3, 2025, 6:18 p.m. UTC | #1
On 4/2/25 15:23, Philippe Mathieu-Daudé wrote:
> This series is more useful for heterogeneous emulation preparation
> than single binary, because it allows non-ARM hw/ code to configure
> ARM cores, so not using target-specific APIs. I figured some
> patches could be useful to Pierrick "build hw/arm once" series (in
> particular arm_cpu_has_feature).
> 
> Philippe Mathieu-Daudé (13):
>    target/arm/cpu-features: Include missing 'cpu.h' header
>    target/arm/qmp: Include missing 'cpu.h' header
>    target/arm/kvm: Include missing 'cpu-qom.h' header
>    target/arm/hvf: Include missing 'cpu-qom.h' header
>    hw/arm: Remove unnecessary 'cpu.h' header
>    target/arm: Restrict inclusion of 'multiprocessing.h'
>    target/arm: Move some definitions from 'cpu.h' to 'multiprocessing.h'
>    hw/arm: Include missing 'target/arm/gtimer.h' header
>    target/arm: Extract PSCI definitions to 'psci.h'
>    target/arm: Extract feature definitions to 'cpu_has_feature.h' header
>    target/arm: Add arm_cpu_has_feature() helper
>    hw/arm/realview: Replace arm_feature() -> arm_cpu_has_feature()
>    hw/arm/virt-acpi: Replace arm_feature() -> arm_cpu_has_feature()
> 

Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Pierrick Bouvier April 3, 2025, 6:22 p.m. UTC | #2
On 4/2/25 15:23, Philippe Mathieu-Daudé wrote:
> This series is more useful for heterogeneous emulation preparation
> than single binary, because it allows non-ARM hw/ code to configure
> ARM cores, so not using target-specific APIs. I figured some
> patches could be useful to Pierrick "build hw/arm once" series (in
> particular arm_cpu_has_feature).
> 

I'm ok with the cleanup part, as I sent a reviewed-by.

However, I'm not sure in which context non-ARM hw/ code will really need 
to do it. It would be better if we stick to mandatory changes for now, 
instead of anticipating future needs, which might be real or not.
We can implement those changes only as part of a series that really 
needs it.
Philippe Mathieu-Daudé April 3, 2025, 7:31 p.m. UTC | #3
On 3/4/25 20:22, Pierrick Bouvier wrote:
> On 4/2/25 15:23, Philippe Mathieu-Daudé wrote:
>> This series is more useful for heterogeneous emulation preparation
>> than single binary, because it allows non-ARM hw/ code to configure
>> ARM cores, so not using target-specific APIs. I figured some
>> patches could be useful to Pierrick "build hw/arm once" series (in
>> particular arm_cpu_has_feature).
>>
> 
> I'm ok with the cleanup part, as I sent a reviewed-by.
> 
> However, I'm not sure in which context non-ARM hw/ code will really need 
> to do it. It would be better if we stick to mandatory changes for now, 
> instead of anticipating future needs, which might be real or not.
> We can implement those changes only as part of a series that really 
> needs it.

I understand your view. I had to rebase these now old patches, and
figured it will cost me less if I get them merged, rather than
keeping rebasing them for 4 or 5 releases.

Single binary effort is just a milestone toward heterogeneous emulation.
Pierrick Bouvier April 3, 2025, 8:51 p.m. UTC | #4
On 4/3/25 12:31, Philippe Mathieu-Daudé wrote:
> On 3/4/25 20:22, Pierrick Bouvier wrote:
>> On 4/2/25 15:23, Philippe Mathieu-Daudé wrote:
>>> This series is more useful for heterogeneous emulation preparation
>>> than single binary, because it allows non-ARM hw/ code to configure
>>> ARM cores, so not using target-specific APIs. I figured some
>>> patches could be useful to Pierrick "build hw/arm once" series (in
>>> particular arm_cpu_has_feature).
>>>
>>
>> I'm ok with the cleanup part, as I sent a reviewed-by.
>>
>> However, I'm not sure in which context non-ARM hw/ code will really need
>> to do it. It would be better if we stick to mandatory changes for now,
>> instead of anticipating future needs, which might be real or not.
>> We can implement those changes only as part of a series that really
>> needs it.
> 
> I understand your view. I had to rebase these now old patches, and
> figured it will cost me less if I get them merged, rather than
> keeping rebasing them for 4 or 5 releases.
> 

Sure, that's the best approach. For the reviewer, it's not obvious when 
you implemented this though, so the only question we can ask is "Why is 
that needed?".

> Single binary effort is just a milestone toward heterogeneous emulation.

Yes. That said, it does not change the fact that anticipating needs 
(i.e. not explicitely required to compile/execute right now) can detour 
us from the goal, whether it's the single binary, heterogeneous 
emulation, or any feature we want to add to QEMU.

In the context of this series, it's still not obvious for me why a piece 
of hardware not related to Arm would poke internal registers to detect 
if a feature is implemented or not. Thus, it's not obvious why we need 
to expose that now. If we don't have an answer to that, I suggest to 
postpone this part of the series until we get a real use case.

For the cleanup part, as I mentioned before, I'm totally ok with it.