All of lore.kernel.org
 help / color / mirror / Atom feed
From: Igor Mammedov <imammedo@redhat.com>
To: Eric Auger <eric.auger@redhat.com>
Cc: peter.maydell@linaro.org, drjones@redhat.com, david@redhat.com,
	qemu-devel@nongnu.org, shameerali.kolothum.thodi@huawei.com,
	dgilbert@redhat.com, qemu-arm@nongnu.org, pbonzini@redhat.com,
	david@gibson.dropbear.id.au, eric.auger.pro@gmail.com
Subject: Re: [Qemu-arm] [PATCH v10 05/10] kvm: add kvm_arm_get_max_vm_ipa_size
Date: Thu, 28 Feb 2019 17:02:22 +0100	[thread overview]
Message-ID: <20190228170222.018c917f@redhat.com> (raw)
In-Reply-To: <20190228150324.25973-6-eric.auger@redhat.com>

On Thu, 28 Feb 2019 16:03:19 +0100
Eric Auger <eric.auger@redhat.com> wrote:

> Add the kvm_arm_get_max_vm_ipa_size() helper that returns the
> number of bits in the IPA address space supported by KVM.
> 
> This capability needs to be known to create the VM with a
> specific IPA max size (kvm_type passed along KVM_CREATE_VM ioctl.
> 
> Signed-off-by: Eric Auger <eric.auger@redhat.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>

> 
> ---
> v6 -> v7:
> - s/kvm_arm_get_max_vm_phys_shift/kvm_arm_get_max_vm_ipa_size
> - reword the comment
> 
> v4 -> v5:
> - return 40 if the host does not support the capability
> 
> v3 -> v4:
> - s/s/ms in kvm_arm_get_max_vm_phys_shift function comment
> - check KVM_CAP_ARM_VM_IPA_SIZE extension
> 
> v1 -> v2:
> - put this in ARM specific code
> ---
>  target/arm/kvm.c     | 10 ++++++++++
>  target/arm/kvm_arm.h | 13 +++++++++++++
>  2 files changed, 23 insertions(+)
> 
> diff --git a/target/arm/kvm.c b/target/arm/kvm.c
> index e00ccf9c98..79a79f0190 100644
> --- a/target/arm/kvm.c
> +++ b/target/arm/kvm.c
> @@ -18,6 +18,7 @@
>  #include "qemu/error-report.h"
>  #include "sysemu/sysemu.h"
>  #include "sysemu/kvm.h"
> +#include "sysemu/kvm_int.h"
>  #include "kvm_arm.h"
>  #include "cpu.h"
>  #include "trace.h"
> @@ -162,6 +163,15 @@ void kvm_arm_set_cpu_features_from_host(ARMCPU *cpu)
>      env->features = arm_host_cpu_features.features;
>  }
>  
> +int kvm_arm_get_max_vm_ipa_size(MachineState *ms)
> +{
> +    KVMState *s = KVM_STATE(ms->accelerator);
> +    int ret;
> +
> +    ret = kvm_check_extension(s, KVM_CAP_ARM_VM_IPA_SIZE);
> +    return ret > 0 ? ret : 40;
> +}
> +
>  int kvm_arch_init(MachineState *ms, KVMState *s)
>  {
>      /* For ARM interrupt delivery is always asynchronous,
> diff --git a/target/arm/kvm_arm.h b/target/arm/kvm_arm.h
> index 6393455b1d..2a07333c61 100644
> --- a/target/arm/kvm_arm.h
> +++ b/target/arm/kvm_arm.h
> @@ -207,6 +207,14 @@ bool kvm_arm_get_host_cpu_features(ARMHostCPUFeatures *ahcf);
>   */
>  void kvm_arm_set_cpu_features_from_host(ARMCPU *cpu);
>  
> +/**
> + * kvm_arm_get_max_vm_ipa_size - Returns the number of bits in the
> + * IPA address space supported by KVM
> + *
> + * @ms: Machine state handle
> + */
> +int kvm_arm_get_max_vm_ipa_size(MachineState *ms);
> +
>  /**
>   * kvm_arm_sync_mpstate_to_kvm
>   * @cpu: ARMCPU
> @@ -239,6 +247,11 @@ static inline void kvm_arm_set_cpu_features_from_host(ARMCPU *cpu)
>      cpu->host_cpu_probe_failed = true;
>  }
>  
> +static inline int kvm_arm_get_max_vm_ipa_size(MachineState *ms)
> +{
> +    return -ENOENT;
> +}
> +
>  static inline int kvm_arm_vgic_probe(void)
>  {
>      return 0;


WARNING: multiple messages have this Message-ID (diff)
From: Igor Mammedov <imammedo@redhat.com>
To: Eric Auger <eric.auger@redhat.com>
Cc: eric.auger.pro@gmail.com, qemu-devel@nongnu.org,
	qemu-arm@nongnu.org, peter.maydell@linaro.org,
	shameerali.kolothum.thodi@huawei.com, david@redhat.com,
	dgilbert@redhat.com, david@gibson.dropbear.id.au,
	drjones@redhat.com, pbonzini@redhat.com
Subject: Re: [Qemu-devel] [PATCH v10 05/10] kvm: add kvm_arm_get_max_vm_ipa_size
Date: Thu, 28 Feb 2019 17:02:22 +0100	[thread overview]
Message-ID: <20190228170222.018c917f@redhat.com> (raw)
In-Reply-To: <20190228150324.25973-6-eric.auger@redhat.com>

On Thu, 28 Feb 2019 16:03:19 +0100
Eric Auger <eric.auger@redhat.com> wrote:

> Add the kvm_arm_get_max_vm_ipa_size() helper that returns the
> number of bits in the IPA address space supported by KVM.
> 
> This capability needs to be known to create the VM with a
> specific IPA max size (kvm_type passed along KVM_CREATE_VM ioctl.
> 
> Signed-off-by: Eric Auger <eric.auger@redhat.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>

> 
> ---
> v6 -> v7:
> - s/kvm_arm_get_max_vm_phys_shift/kvm_arm_get_max_vm_ipa_size
> - reword the comment
> 
> v4 -> v5:
> - return 40 if the host does not support the capability
> 
> v3 -> v4:
> - s/s/ms in kvm_arm_get_max_vm_phys_shift function comment
> - check KVM_CAP_ARM_VM_IPA_SIZE extension
> 
> v1 -> v2:
> - put this in ARM specific code
> ---
>  target/arm/kvm.c     | 10 ++++++++++
>  target/arm/kvm_arm.h | 13 +++++++++++++
>  2 files changed, 23 insertions(+)
> 
> diff --git a/target/arm/kvm.c b/target/arm/kvm.c
> index e00ccf9c98..79a79f0190 100644
> --- a/target/arm/kvm.c
> +++ b/target/arm/kvm.c
> @@ -18,6 +18,7 @@
>  #include "qemu/error-report.h"
>  #include "sysemu/sysemu.h"
>  #include "sysemu/kvm.h"
> +#include "sysemu/kvm_int.h"
>  #include "kvm_arm.h"
>  #include "cpu.h"
>  #include "trace.h"
> @@ -162,6 +163,15 @@ void kvm_arm_set_cpu_features_from_host(ARMCPU *cpu)
>      env->features = arm_host_cpu_features.features;
>  }
>  
> +int kvm_arm_get_max_vm_ipa_size(MachineState *ms)
> +{
> +    KVMState *s = KVM_STATE(ms->accelerator);
> +    int ret;
> +
> +    ret = kvm_check_extension(s, KVM_CAP_ARM_VM_IPA_SIZE);
> +    return ret > 0 ? ret : 40;
> +}
> +
>  int kvm_arch_init(MachineState *ms, KVMState *s)
>  {
>      /* For ARM interrupt delivery is always asynchronous,
> diff --git a/target/arm/kvm_arm.h b/target/arm/kvm_arm.h
> index 6393455b1d..2a07333c61 100644
> --- a/target/arm/kvm_arm.h
> +++ b/target/arm/kvm_arm.h
> @@ -207,6 +207,14 @@ bool kvm_arm_get_host_cpu_features(ARMHostCPUFeatures *ahcf);
>   */
>  void kvm_arm_set_cpu_features_from_host(ARMCPU *cpu);
>  
> +/**
> + * kvm_arm_get_max_vm_ipa_size - Returns the number of bits in the
> + * IPA address space supported by KVM
> + *
> + * @ms: Machine state handle
> + */
> +int kvm_arm_get_max_vm_ipa_size(MachineState *ms);
> +
>  /**
>   * kvm_arm_sync_mpstate_to_kvm
>   * @cpu: ARMCPU
> @@ -239,6 +247,11 @@ static inline void kvm_arm_set_cpu_features_from_host(ARMCPU *cpu)
>      cpu->host_cpu_probe_failed = true;
>  }
>  
> +static inline int kvm_arm_get_max_vm_ipa_size(MachineState *ms)
> +{
> +    return -ENOENT;
> +}
> +
>  static inline int kvm_arm_vgic_probe(void)
>  {
>      return 0;

  reply	other threads:[~2019-02-28 16:03 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-02-28 15:03 [Qemu-arm] [PATCH v10 00/10] ARM virt: Initial RAM expansion and extended memory map Eric Auger
2019-02-28 15:03 ` [Qemu-devel] " Eric Auger
2019-02-28 15:03 ` [Qemu-arm] [PATCH v10 01/10] hw/arm/boot: introduce fdt_add_memory_node helper Eric Auger
2019-02-28 15:03   ` [Qemu-devel] " Eric Auger
2019-02-28 15:03 ` [Qemu-arm] [PATCH v10 02/10] hw/arm/virt: Rename highmem IO regions Eric Auger
2019-02-28 15:03   ` [Qemu-devel] " Eric Auger
2019-02-28 15:03 ` [Qemu-arm] [PATCH v10 03/10] hw/arm/virt: Split the memory map description Eric Auger
2019-02-28 15:03   ` [Qemu-devel] " Eric Auger
2019-02-28 15:51   ` [Qemu-arm] " Igor Mammedov
2019-02-28 15:51     ` [Qemu-devel] " Igor Mammedov
2019-02-28 15:03 ` [Qemu-devel] [PATCH v10 04/10] hw/boards: Add a MachineState parameter to kvm_type callback Eric Auger
2019-02-28 15:03   ` Eric Auger
2019-02-28 15:03 ` [Qemu-arm] [PATCH v10 05/10] kvm: add kvm_arm_get_max_vm_ipa_size Eric Auger
2019-02-28 15:03   ` [Qemu-devel] " Eric Auger
2019-02-28 16:02   ` Igor Mammedov [this message]
2019-02-28 16:02     ` Igor Mammedov
2019-02-28 15:03 ` [Qemu-arm] [PATCH v10 06/10] vl: Set machine ram_size, maxram_size and ram_slots earlier Eric Auger
2019-02-28 15:03   ` [Qemu-devel] " Eric Auger
2019-02-28 15:03 ` [Qemu-devel] [PATCH v10 07/10] hw/arm/virt: Dynamic memory map depending on RAM requirements Eric Auger
2019-02-28 15:03   ` Eric Auger
2019-02-28 16:01   ` [Qemu-arm] " Igor Mammedov
2019-02-28 16:01     ` [Qemu-devel] " Igor Mammedov
2019-02-28 15:03 ` [Qemu-arm] [PATCH v10 08/10] hw/arm/virt: Implement kvm_type function for 4.0 machine Eric Auger
2019-02-28 15:03   ` [Qemu-devel] " Eric Auger
2019-02-28 16:19   ` [Qemu-arm] " Igor Mammedov
2019-02-28 16:19     ` [Qemu-devel] " Igor Mammedov
2019-03-01  9:45     ` Auger Eric
2019-03-01  9:45       ` Auger Eric
2019-02-28 15:03 ` [Qemu-devel] [PATCH v10 09/10] hw/arm/virt: Check the VCPU PA range in TCG mode Eric Auger
2019-02-28 15:03   ` Eric Auger
2019-02-28 15:03 ` [Qemu-arm] [PATCH v10 10/10] hw/arm/virt: Bump the 255GB initial RAM limit Eric Auger
2019-02-28 15:03   ` [Qemu-devel] " Eric Auger
2019-02-28 16:29   ` [Qemu-arm] " Igor Mammedov
2019-02-28 16:29     ` [Qemu-devel] " Igor Mammedov
2019-03-01 10:08     ` [Qemu-arm] " Auger Eric
2019-03-01 10:08       ` [Qemu-devel] " Auger Eric
2019-03-01 10:29       ` [Qemu-arm] " Igor Mammedov
2019-03-01 10:29         ` [Qemu-devel] " Igor Mammedov

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=20190228170222.018c917f@redhat.com \
    --to=imammedo@redhat.com \
    --cc=david@gibson.dropbear.id.au \
    --cc=david@redhat.com \
    --cc=dgilbert@redhat.com \
    --cc=drjones@redhat.com \
    --cc=eric.auger.pro@gmail.com \
    --cc=eric.auger@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-arm@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=shameerali.kolothum.thodi@huawei.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 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.