All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alexander Graf <agraf@suse.de>
To: Bharat Bhushan <Bharat.Bhushan@freescale.com>, kvm-ppc@vger.kernel.org
Cc: kvm@vger.kernel.org, scottwood@freescale.com, stuart.yoder@freescale.com
Subject: Re: [PATCH 6/7 v3] KVM: PPC: BOOKE: Add one reg interface for DBSR
Date: Tue, 12 Aug 2014 10:24:18 +0000	[thread overview]
Message-ID: <53E9EB52.2020008@suse.de> (raw)
In-Reply-To: <1407307137-5083-7-git-send-email-Bharat.Bhushan@freescale.com>


On 06.08.14 08:38, Bharat Bhushan wrote:
> Signed-off-by: Bharat Bhushan <Bharat.Bhushan@freescale.com>
> ---
> v2->v3
>   - New patch
>
>   arch/powerpc/include/uapi/asm/kvm.h | 1 +
>   arch/powerpc/kvm/booke.c            | 6 ++++++
>   2 files changed, 7 insertions(+)
>
> diff --git a/arch/powerpc/include/uapi/asm/kvm.h b/arch/powerpc/include/uapi/asm/kvm.h
> index e0e49db..3ca357a 100644
> --- a/arch/powerpc/include/uapi/asm/kvm.h
> +++ b/arch/powerpc/include/uapi/asm/kvm.h
> @@ -557,6 +557,7 @@ struct kvm_get_htab_header {
>   #define KVM_REG_PPC_DABRX	(KVM_REG_PPC | KVM_REG_SIZE_U32 | 0xb8)
>   #define KVM_REG_PPC_WORT	(KVM_REG_PPC | KVM_REG_SIZE_U64 | 0xb9)
>   #define KVM_REG_PPC_SPRG9	(KVM_REG_PPC | KVM_REG_SIZE_U64 | 0xba)
> +#define KVM_REG_PPC_DBSR	(KVM_REG_PPC | KVM_REG_SIZE_U32 | 0xbb)

Please write up a follow-up patch that adds SPRG9 and DBSR to 
Documentation/virtual/kvm/api.txt.


Alex


WARNING: multiple messages have this Message-ID (diff)
From: Alexander Graf <agraf@suse.de>
To: Bharat Bhushan <Bharat.Bhushan@freescale.com>, kvm-ppc@vger.kernel.org
Cc: kvm@vger.kernel.org, scottwood@freescale.com, stuart.yoder@freescale.com
Subject: Re: [PATCH 6/7 v3] KVM: PPC: BOOKE: Add one reg interface for DBSR
Date: Tue, 12 Aug 2014 12:24:18 +0200	[thread overview]
Message-ID: <53E9EB52.2020008@suse.de> (raw)
In-Reply-To: <1407307137-5083-7-git-send-email-Bharat.Bhushan@freescale.com>


On 06.08.14 08:38, Bharat Bhushan wrote:
> Signed-off-by: Bharat Bhushan <Bharat.Bhushan@freescale.com>
> ---
> v2->v3
>   - New patch
>
>   arch/powerpc/include/uapi/asm/kvm.h | 1 +
>   arch/powerpc/kvm/booke.c            | 6 ++++++
>   2 files changed, 7 insertions(+)
>
> diff --git a/arch/powerpc/include/uapi/asm/kvm.h b/arch/powerpc/include/uapi/asm/kvm.h
> index e0e49db..3ca357a 100644
> --- a/arch/powerpc/include/uapi/asm/kvm.h
> +++ b/arch/powerpc/include/uapi/asm/kvm.h
> @@ -557,6 +557,7 @@ struct kvm_get_htab_header {
>   #define KVM_REG_PPC_DABRX	(KVM_REG_PPC | KVM_REG_SIZE_U32 | 0xb8)
>   #define KVM_REG_PPC_WORT	(KVM_REG_PPC | KVM_REG_SIZE_U64 | 0xb9)
>   #define KVM_REG_PPC_SPRG9	(KVM_REG_PPC | KVM_REG_SIZE_U64 | 0xba)
> +#define KVM_REG_PPC_DBSR	(KVM_REG_PPC | KVM_REG_SIZE_U32 | 0xbb)

Please write up a follow-up patch that adds SPRG9 and DBSR to 
Documentation/virtual/kvm/api.txt.


Alex

  reply	other threads:[~2014-08-12 10:24 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-06  6:38 [PATCH 0/7 v3] Guest debug emulation Bharat Bhushan
2014-08-06  6:50 ` Bharat Bhushan
2014-08-06  6:38 ` [PATCH 1/7 v3] KVM: PPC: BOOKE: allow debug interrupt at "debug level" Bharat Bhushan
2014-08-06  6:50   ` Bharat Bhushan
2014-08-06  6:38 ` [PATCH 2/7 v3] KVM: PPC: BOOKE : Emulate rfdi instruction Bharat Bhushan
2014-08-06  6:50   ` Bharat Bhushan
2014-08-06  6:38 ` [PATCH 3/7 v3] KVM: PPC: BOOKE: Allow guest to change MSR_DE Bharat Bhushan
2014-08-06  6:50   ` Bharat Bhushan
2014-08-06  6:38 ` [PATCH 4/7 v3] KVM: PPC: BOOKE: Clear guest dbsr in userspace exit KVM_EXIT_DEBUG Bharat Bhushan
2014-08-06  6:50   ` Bharat Bhushan
2014-08-06  6:38 ` [PATCH 5/7 v3] KVM: PPC: BOOKE: Guest and hardware visible debug registers are same Bharat Bhushan
2014-08-06  6:50   ` Bharat Bhushan
2014-08-06  6:38 ` [PATCH 6/7 v3] KVM: PPC: BOOKE: Add one reg interface for DBSR Bharat Bhushan
2014-08-06  6:50   ` Bharat Bhushan
2014-08-12 10:24   ` Alexander Graf [this message]
2014-08-12 10:24     ` Alexander Graf
2014-08-06  6:38 ` [PATCH 7/7 v3] KVM: PPC: BOOKE: Emulate debug registers and exception Bharat Bhushan
2014-08-06  6:50   ` Bharat Bhushan
2014-08-12  0:00   ` Scott Wood
2014-08-12  0:00     ` Scott Wood
2014-08-12  7:36     ` Bharat.Bhushan
2014-08-12  7:36       ` Bharat.Bhushan
2014-08-12 19:46       ` Scott Wood
2014-08-12 19:46         ` Scott Wood
2014-08-12 10:25 ` [PATCH 0/7 v3] Guest debug emulation Alexander Graf
2014-08-12 10:25   ` Alexander Graf
2014-08-12 10:27   ` Bharat.Bhushan

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=53E9EB52.2020008@suse.de \
    --to=agraf@suse.de \
    --cc=Bharat.Bhushan@freescale.com \
    --cc=kvm-ppc@vger.kernel.org \
    --cc=kvm@vger.kernel.org \
    --cc=scottwood@freescale.com \
    --cc=stuart.yoder@freescale.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.