[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 00/10] accel: Allow targets to use Kconfig, disable semihostin
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH v2 00/10] accel: Allow targets to use Kconfig, disable semihosting by default |
Date: |
Fri, 15 May 2020 19:07:54 +0200 |
This series include generic patches I took of the KVM/ARM
specific series which will follow.
- List orphan accelerators in MAINTAINERS
- Add accel/Kconfig
- Allow targets to use their how Kconfig
- Enforce semihosting on architecture where required,
disable it elsewhere
Since v1:
https://www.mail-archive.com/address@hidden/msg689024.html
- Drop HVF MAINTAINERS patch (merged elsewhere)
- Kconfig-select SEMIHOSTING (bonzini)
- Drop user-mode selection patches
- consider m68k/nios2/xtensa/riscv (pm215)
- reword Kconfig SEMIHOSTING description (pm215)
- reset some of rth R-b tags
Previous RFC for semihosting posted earlier:
https://www.mail-archive.com/address@hidden/msg631218.html
$ git backport-diff -u v1 -r v2
Key:
[----] : patches are identical
[####] : number of functional differences between upstream/downstream patch
[down] : patch is downstream-only
The flags [FC] indicate (F)unctional and (C)ontextual differences, respectively
001/10:[----] [--] 'MAINTAINERS: Fix KVM path expansion glob'
002/10:[----] [-C] 'MAINTAINERS: Add an 'overall' entry for accelerators'
003/10:[----] [-C] 'MAINTAINERS: Add an entry for the HAX accelerator'
004/10:[down] 'accel/tcg: Add stub for probe_access()'
005/10:[down] 'Makefile: Remove dangerous EOL trailing backslash'
006/10:[0003] [FC] 'Makefile: Write MINIKCONF variables as one entry per line'
007/10:[----] [--] 'accel/Kconfig: Extract accel selectors into their own
config'
008/10:[----] [--] 'accel/Kconfig: Add the TCG selector'
009/10:[down] 'Makefile: Allow target-specific optional Kconfig'
010/10:[0028] [FC] 'hw/semihosting: Make the feature depend of TCG, and allow
to disable it'
Philippe Mathieu-Daudé (10):
MAINTAINERS: Fix KVM path expansion glob
MAINTAINERS: Add an 'overall' entry for accelerators
MAINTAINERS: Add an entry for the HAX accelerator
accel/tcg: Add stub for probe_access()
Makefile: Remove dangerous EOL trailing backslash
Makefile: Write MINIKCONF variables as one entry per line
accel/Kconfig: Extract accel selectors into their own config
accel/Kconfig: Add the TCG selector
Makefile: Allow target-specific optional Kconfig
hw/semihosting: Make the feature depend of TCG, and allow to disable
it
Makefile | 15 +++++++++++----
default-configs/arm-softmmu.mak | 1 -
default-configs/lm32-softmmu.mak | 2 --
default-configs/m68k-softmmu.mak | 2 --
default-configs/mips-softmmu-common.mak | 3 ---
default-configs/nios2-softmmu.mak | 2 --
default-configs/xtensa-softmmu.mak | 2 --
accel/stubs/tcg-stub.c | 7 +++++++
Kconfig.host | 7 -------
MAINTAINERS | 17 ++++++++++++++++-
accel/Kconfig | 9 +++++++++
hw/semihosting/Kconfig | 4 +++-
target/arm/Kconfig | 2 ++
target/lm32/Kconfig | 2 ++
target/m68k/Kconfig | 2 ++
target/mips/Kconfig | 2 ++
target/nios2/Kconfig | 2 ++
target/riscv/Kconfig | 2 ++
target/xtensa/Kconfig | 2 ++
19 files changed, 60 insertions(+), 25 deletions(-)
create mode 100644 accel/Kconfig
create mode 100644 target/arm/Kconfig
create mode 100644 target/lm32/Kconfig
create mode 100644 target/m68k/Kconfig
create mode 100644 target/mips/Kconfig
create mode 100644 target/nios2/Kconfig
create mode 100644 target/riscv/Kconfig
create mode 100644 target/xtensa/Kconfig
--
2.21.3
- [PATCH v2 00/10] accel: Allow targets to use Kconfig, disable semihosting by default,
Philippe Mathieu-Daudé <=
- [PATCH v2 01/10] MAINTAINERS: Fix KVM path expansion glob, Philippe Mathieu-Daudé, 2020/05/15
- [PATCH v2 02/10] MAINTAINERS: Add an 'overall' entry for accelerators, Philippe Mathieu-Daudé, 2020/05/15
- [PATCH v2 03/10] MAINTAINERS: Add an entry for the HAX accelerator, Philippe Mathieu-Daudé, 2020/05/15
- [PATCH v2 04/10] accel/tcg: Add stub for probe_access(), Philippe Mathieu-Daudé, 2020/05/15
- [PATCH v2 05/10] Makefile: Remove dangerous EOL trailing backslash, Philippe Mathieu-Daudé, 2020/05/15