From: Marc Zyngier <maz@kernel.org>
To: qemu-devel@nongnu.org
Cc: kvm@vger.kernel.org, kernel-team@android.com,
kvmarm@lists.cs.columbia.edu
Subject: [PATCH v3 0/5] target/arm: Reduced-IPA space and highmem=off fixes
Date: Mon, 27 Dec 2021 21:16:37 +0000 [thread overview]
Message-ID: <20211227211642.994461-1-maz@kernel.org> (raw)
Here's another stab at enabling QEMU on systems with pathologically
reduced IPA ranges such as the Apple M1 (previous version at [1]).
Eventually, we're able to run a KVM guest with more than just 3GB of
RAM on a system with a 36bit IPA space, and at most 123 vCPUs.
This series does a few things:
- decouple the enabling of the highmem PCIe region from the highmem
attribute
- introduce a new attribute to control the enabling of the highmem
GICv3 redistributors
- correctly cap the PA range with highmem is off
- generalise the highmem behaviour to any PA range
- disable both highmem PCIe and GICv3 RDs when they are outside of the
PA range
This has been tested on an M1-based Mac-mini running Linux v5.16-rc6
with both KVM and TCG.
* From v2:
- Fixed checking of the maximum memory against the IPA space
- Fixed TCG memory map creation
- Rebased on top of QEMU's 89f3bfa326
- Collected Andrew's RBs, with thanks
[1] https://lore.kernel.org/r/20211003164605.3116450-1-maz@kernel.org
Marc Zyngier (5):
hw/arm/virt: Key enablement of highmem PCIe on highmem_ecam
hw/arm/virt: Add a control for the the highmem redistributors
hw/arm/virt: Honor highmem setting when computing the memory map
hw/arm/virt: Use the PA range to compute the memory map
hw/arm/virt: Disable highmem devices that don't fit in the PA range
hw/arm/virt-acpi-build.c | 12 +++----
hw/arm/virt.c | 67 ++++++++++++++++++++++++++++++++++------
include/hw/arm/virt.h | 4 ++-
3 files changed, 67 insertions(+), 16 deletions(-)
--
2.30.2
_______________________________________________
kvmarm mailing list
kvmarm@lists.cs.columbia.edu
https://lists.cs.columbia.edu/mailman/listinfo/kvmarm
WARNING: multiple messages have this Message-ID (diff)
From: Marc Zyngier <maz@kernel.org>
To: qemu-devel@nongnu.org
Cc: Andrew Jones <drjones@redhat.com>,
Eric Auger <eric.auger@redhat.com>,
Peter Maydell <peter.maydell@linaro.org>,
kvmarm@lists.cs.columbia.edu, kvm@vger.kernel.org,
kernel-team@android.com
Subject: [PATCH v3 0/5] target/arm: Reduced-IPA space and highmem=off fixes
Date: Mon, 27 Dec 2021 21:16:37 +0000 [thread overview]
Message-ID: <20211227211642.994461-1-maz@kernel.org> (raw)
Here's another stab at enabling QEMU on systems with pathologically
reduced IPA ranges such as the Apple M1 (previous version at [1]).
Eventually, we're able to run a KVM guest with more than just 3GB of
RAM on a system with a 36bit IPA space, and at most 123 vCPUs.
This series does a few things:
- decouple the enabling of the highmem PCIe region from the highmem
attribute
- introduce a new attribute to control the enabling of the highmem
GICv3 redistributors
- correctly cap the PA range with highmem is off
- generalise the highmem behaviour to any PA range
- disable both highmem PCIe and GICv3 RDs when they are outside of the
PA range
This has been tested on an M1-based Mac-mini running Linux v5.16-rc6
with both KVM and TCG.
* From v2:
- Fixed checking of the maximum memory against the IPA space
- Fixed TCG memory map creation
- Rebased on top of QEMU's 89f3bfa326
- Collected Andrew's RBs, with thanks
[1] https://lore.kernel.org/r/20211003164605.3116450-1-maz@kernel.org
Marc Zyngier (5):
hw/arm/virt: Key enablement of highmem PCIe on highmem_ecam
hw/arm/virt: Add a control for the the highmem redistributors
hw/arm/virt: Honor highmem setting when computing the memory map
hw/arm/virt: Use the PA range to compute the memory map
hw/arm/virt: Disable highmem devices that don't fit in the PA range
hw/arm/virt-acpi-build.c | 12 +++----
hw/arm/virt.c | 67 ++++++++++++++++++++++++++++++++++------
include/hw/arm/virt.h | 4 ++-
3 files changed, 67 insertions(+), 16 deletions(-)
--
2.30.2
WARNING: multiple messages have this Message-ID (diff)
From: Marc Zyngier <maz@kernel.org>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>,
Andrew Jones <drjones@redhat.com>,
kvm@vger.kernel.org, Eric Auger <eric.auger@redhat.com>,
kernel-team@android.com, kvmarm@lists.cs.columbia.edu
Subject: [PATCH v3 0/5] target/arm: Reduced-IPA space and highmem=off fixes
Date: Mon, 27 Dec 2021 21:16:37 +0000 [thread overview]
Message-ID: <20211227211642.994461-1-maz@kernel.org> (raw)
Here's another stab at enabling QEMU on systems with pathologically
reduced IPA ranges such as the Apple M1 (previous version at [1]).
Eventually, we're able to run a KVM guest with more than just 3GB of
RAM on a system with a 36bit IPA space, and at most 123 vCPUs.
This series does a few things:
- decouple the enabling of the highmem PCIe region from the highmem
attribute
- introduce a new attribute to control the enabling of the highmem
GICv3 redistributors
- correctly cap the PA range with highmem is off
- generalise the highmem behaviour to any PA range
- disable both highmem PCIe and GICv3 RDs when they are outside of the
PA range
This has been tested on an M1-based Mac-mini running Linux v5.16-rc6
with both KVM and TCG.
* From v2:
- Fixed checking of the maximum memory against the IPA space
- Fixed TCG memory map creation
- Rebased on top of QEMU's 89f3bfa326
- Collected Andrew's RBs, with thanks
[1] https://lore.kernel.org/r/20211003164605.3116450-1-maz@kernel.org
Marc Zyngier (5):
hw/arm/virt: Key enablement of highmem PCIe on highmem_ecam
hw/arm/virt: Add a control for the the highmem redistributors
hw/arm/virt: Honor highmem setting when computing the memory map
hw/arm/virt: Use the PA range to compute the memory map
hw/arm/virt: Disable highmem devices that don't fit in the PA range
hw/arm/virt-acpi-build.c | 12 +++----
hw/arm/virt.c | 67 ++++++++++++++++++++++++++++++++++------
include/hw/arm/virt.h | 4 ++-
3 files changed, 67 insertions(+), 16 deletions(-)
--
2.30.2
next reply other threads:[~2021-12-27 21:17 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-12-27 21:16 Marc Zyngier [this message]
2021-12-27 21:16 ` [PATCH v3 0/5] target/arm: Reduced-IPA space and highmem=off fixes Marc Zyngier
2021-12-27 21:16 ` Marc Zyngier
2021-12-27 21:16 ` [PATCH v3 1/5] hw/arm/virt: Key enablement of highmem PCIe on highmem_ecam Marc Zyngier
2021-12-27 21:16 ` Marc Zyngier
2021-12-27 21:16 ` Marc Zyngier
2021-12-27 21:16 ` [PATCH v3 2/5] hw/arm/virt: Add a control for the the highmem redistributors Marc Zyngier
2021-12-27 21:16 ` Marc Zyngier
2021-12-27 21:16 ` Marc Zyngier
2021-12-27 21:16 ` [PATCH v3 3/5] hw/arm/virt: Honor highmem setting when computing the memory map Marc Zyngier
2021-12-27 21:16 ` Marc Zyngier
2021-12-27 21:16 ` Marc Zyngier
2022-01-05 9:22 ` Eric Auger
2022-01-05 9:22 ` Eric Auger
2022-01-05 9:22 ` Eric Auger
2022-01-05 9:36 ` Eric Auger
2022-01-05 9:36 ` Eric Auger
2022-01-05 9:36 ` Eric Auger
2022-01-06 21:26 ` Marc Zyngier
2022-01-06 21:26 ` Marc Zyngier
2022-01-06 21:26 ` Marc Zyngier
2022-01-07 17:15 ` Eric Auger
2022-01-07 17:15 ` Eric Auger
2022-01-07 17:15 ` Eric Auger
2022-01-07 18:18 ` Marc Zyngier
2022-01-07 18:18 ` Marc Zyngier
2022-01-07 18:18 ` Marc Zyngier
2022-01-07 18:48 ` Peter Maydell
2022-01-07 18:48 ` Peter Maydell
2022-01-07 18:48 ` Peter Maydell
2022-01-07 19:04 ` Marc Zyngier
2022-01-07 19:04 ` Marc Zyngier
2022-01-07 19:04 ` Marc Zyngier
2021-12-27 21:16 ` [PATCH v3 4/5] hw/arm/virt: Use the PA range to compute " Marc Zyngier
2021-12-27 21:16 ` Marc Zyngier
2021-12-27 21:16 ` Marc Zyngier
2021-12-27 21:16 ` [PATCH v3 5/5] hw/arm/virt: Disable highmem devices that don't fit in the PA range Marc Zyngier
2021-12-27 21:16 ` Marc Zyngier
2021-12-27 21:16 ` Marc Zyngier
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=20211227211642.994461-1-maz@kernel.org \
--to=maz@kernel.org \
--cc=kernel-team@android.com \
--cc=kvm@vger.kernel.org \
--cc=kvmarm@lists.cs.columbia.edu \
--cc=qemu-devel@nongnu.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.