linux-sh.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] KVM: ARM: enable Cortex A7 hosts
@ 2013-09-19 12:01 Ulrich Hecht
  2013-09-25  5:32 ` Simon Horman
  2013-09-26 11:50 ` Ulrich Hecht
  0 siblings, 2 replies; 4+ messages in thread
From: Ulrich Hecht @ 2013-09-19 12:01 UTC (permalink / raw)
  To: kvm; +Cc: linux-sh, magnus.damm, Ulrich Hecht

KVM runs fine on Cortex A7 cores, so they should be enabled. Tested on an
APE6EVM board (r8a73a4 SoC).

Signed-off-by: Ulrich Hecht <ulrich.hecht@gmail.com>
---
 arch/arm/kvm/guest.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/arm/kvm/guest.c b/arch/arm/kvm/guest.c
index 152d036..05c62d5 100644
--- a/arch/arm/kvm/guest.c
+++ b/arch/arm/kvm/guest.c
@@ -192,6 +192,8 @@ int __attribute_const__ kvm_target_cpu(void)
 	switch (part_number) {
 	case ARM_CPU_PART_CORTEX_A15:
 		return KVM_ARM_TARGET_CORTEX_A15;
+	case ARM_CPU_PART_CORTEX_A7:
+		return KVM_ARM_TARGET_CORTEX_A15;
 	default:
 		return -EINVAL;
 	}
-- 
1.8.3.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] KVM: ARM: enable Cortex A7 hosts
  2013-09-19 12:01 [PATCH] KVM: ARM: enable Cortex A7 hosts Ulrich Hecht
@ 2013-09-25  5:32 ` Simon Horman
  2013-09-25  6:06   ` Gleb Natapov
  2013-09-26 11:50 ` Ulrich Hecht
  1 sibling, 1 reply; 4+ messages in thread
From: Simon Horman @ 2013-09-25  5:32 UTC (permalink / raw)
  To: Ulrich Hecht; +Cc: kvm, linux-sh, magnus.damm

On Thu, Sep 19, 2013 at 02:01:48PM +0200, Ulrich Hecht wrote:
> KVM runs fine on Cortex A7 cores, so they should be enabled. Tested on an
> APE6EVM board (r8a73a4 SoC).
> 
> Signed-off-by: Ulrich Hecht <ulrich.hecht@gmail.com>

Hi Ulrich,

I'm not entirely sure but it seems to me that you should expand the
CC list of this patch someohow as it doesn't seem to have got any
attention in the week since you sent it.


# ./scripts/get_maintainer.pl -f arch/arm/kvm/guest.c
Christoffer Dall <christoffer.dall@linaro.org> (supporter:KERNEL VIRTUAL MA...)
Gleb Natapov <gleb@redhat.com> (supporter:KERNEL VIRTUAL MA...)
Paolo Bonzini <pbonzini@redhat.com> (supporter:KERNEL VIRTUAL MA...)
Russell King <linux@arm.linux.org.uk> (maintainer:ARM PORT)
kvmarm@lists.cs.columbia.edu (open list:KERNEL VIRTUAL MA...)
kvm@vger.kernel.org (open list:KERNEL VIRTUAL MA...)
linux-arm-kernel@lists.infradead.org (moderated list:ARM PORT)
linux-kernel@vger.kernel.org (open list)



> ---
>  arch/arm/kvm/guest.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/arch/arm/kvm/guest.c b/arch/arm/kvm/guest.c
> index 152d036..05c62d5 100644
> --- a/arch/arm/kvm/guest.c
> +++ b/arch/arm/kvm/guest.c
> @@ -192,6 +192,8 @@ int __attribute_const__ kvm_target_cpu(void)
>  	switch (part_number) {
>  	case ARM_CPU_PART_CORTEX_A15:
>  		return KVM_ARM_TARGET_CORTEX_A15;
> +	case ARM_CPU_PART_CORTEX_A7:
> +		return KVM_ARM_TARGET_CORTEX_A15;
>  	default:
>  		return -EINVAL;
>  	}
> -- 
> 1.8.3.1
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] KVM: ARM: enable Cortex A7 hosts
  2013-09-25  5:32 ` Simon Horman
@ 2013-09-25  6:06   ` Gleb Natapov
  0 siblings, 0 replies; 4+ messages in thread
From: Gleb Natapov @ 2013-09-25  6:06 UTC (permalink / raw)
  To: Simon Horman; +Cc: Ulrich Hecht, kvm, linux-sh, magnus.damm

On Wed, Sep 25, 2013 at 02:32:31PM +0900, Simon Horman wrote:
> On Thu, Sep 19, 2013 at 02:01:48PM +0200, Ulrich Hecht wrote:
> > KVM runs fine on Cortex A7 cores, so they should be enabled. Tested on an
> > APE6EVM board (r8a73a4 SoC).
> > 
> > Signed-off-by: Ulrich Hecht <ulrich.hecht@gmail.com>
> 
> Hi Ulrich,
> 
> I'm not entirely sure but it seems to me that you should expand the
> CC list of this patch someohow as it doesn't seem to have got any
> attention in the week since you sent it.
> 
Adding kvmarm@lists.cs.columbia.edu will be a good start.

> 
> # ./scripts/get_maintainer.pl -f arch/arm/kvm/guest.c
> Christoffer Dall <christoffer.dall@linaro.org> (supporter:KERNEL VIRTUAL MA...)
> Gleb Natapov <gleb@redhat.com> (supporter:KERNEL VIRTUAL MA...)
> Paolo Bonzini <pbonzini@redhat.com> (supporter:KERNEL VIRTUAL MA...)
> Russell King <linux@arm.linux.org.uk> (maintainer:ARM PORT)
> kvmarm@lists.cs.columbia.edu (open list:KERNEL VIRTUAL MA...)
> kvm@vger.kernel.org (open list:KERNEL VIRTUAL MA...)
> linux-arm-kernel@lists.infradead.org (moderated list:ARM PORT)
> linux-kernel@vger.kernel.org (open list)
> 
> 
> 
> > ---
> >  arch/arm/kvm/guest.c | 2 ++
> >  1 file changed, 2 insertions(+)
> > 
> > diff --git a/arch/arm/kvm/guest.c b/arch/arm/kvm/guest.c
> > index 152d036..05c62d5 100644
> > --- a/arch/arm/kvm/guest.c
> > +++ b/arch/arm/kvm/guest.c
> > @@ -192,6 +192,8 @@ int __attribute_const__ kvm_target_cpu(void)
> >  	switch (part_number) {
> >  	case ARM_CPU_PART_CORTEX_A15:
> >  		return KVM_ARM_TARGET_CORTEX_A15;
> > +	case ARM_CPU_PART_CORTEX_A7:
> > +		return KVM_ARM_TARGET_CORTEX_A15;
> >  	default:
> >  		return -EINVAL;
> >  	}
> > -- 
> > 1.8.3.1
> > 
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> > 
> --
> To unsubscribe from this list: send the line "unsubscribe kvm" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

--
			Gleb.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] KVM: ARM: enable Cortex A7 hosts
  2013-09-19 12:01 [PATCH] KVM: ARM: enable Cortex A7 hosts Ulrich Hecht
  2013-09-25  5:32 ` Simon Horman
@ 2013-09-26 11:50 ` Ulrich Hecht
  1 sibling, 0 replies; 4+ messages in thread
From: Ulrich Hecht @ 2013-09-26 11:50 UTC (permalink / raw)
  To: linux-sh

On Wed, Sep 25, 2013 at 8:06 AM, Gleb Natapov <gleb@redhat.com> wrote:
> On Wed, Sep 25, 2013 at 02:32:31PM +0900, Simon Horman wrote:
>> I'm not entirely sure but it seems to me that you should expand the
>> CC list of this patch someohow as it doesn't seem to have got any
>> attention in the week since you sent it.
>>
> Adding kvmarm@lists.cs.columbia.edu will be a good start.

Thanks for the tip, I have re-sent the patch.

CU
Uli

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-09-26 11:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-19 12:01 [PATCH] KVM: ARM: enable Cortex A7 hosts Ulrich Hecht
2013-09-25  5:32 ` Simon Horman
2013-09-25  6:06   ` Gleb Natapov
2013-09-26 11:50 ` Ulrich Hecht

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).