linux-mips.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Huacai Chen <chenhuacai@gmail.com>
To: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
Cc: WANG Xuerui <kernel@xen0n.name>,
	Paolo Bonzini <pbonzini@redhat.com>,
	Thomas Bogendoerfer <tsbogend@alpha.franken.de>,
	kvm <kvm@vger.kernel.org>,
	"open list:MIPS" <linux-mips@vger.kernel.org>,
	Fuxin Zhang <zhangfx@lemote.com>,
	Jiaxun Yang <jiaxun.yang@flygoat.com>
Subject: Re: [PATCH V7 12/15] KVM: MIPS: Add CONFIG6 and DIAG registers emulation
Date: Sun, 24 May 2020 10:45:18 +0800	[thread overview]
Message-ID: <CAAhV-H400FyhpmWutr7=g0AF2BVn7kJ=b89KapYs-nU2fuwaZQ@mail.gmail.com> (raw)
In-Reply-To: <CAHiYmc6YDw7=mqXfMdgSfeR-HVd2Ec+sQVquM=Z6jLke2s-VEw@mail.gmail.com>

Hi, Aleksandar


On Sat, May 23, 2020 at 9:59 PM Aleksandar Markovic
<aleksandar.qemu.devel@gmail.com> wrote:
>
>  you sh
>
> суб, 23. мај 2020. у 15:27 WANG Xuerui <kernel@xen0n.name> је написао/ла:
> >
> > Hi Huacai,
> >
> > On 5/23/20 3:56 PM, Huacai Chen wrote:
> >
> > > Loongson-3 has CONFIG6 and DIAG registers which need to be emulated.
> > > CONFIG6 is mostly used to enable/disable FTLB and SFB, while DIAG is
> > > mostly used to flush BTB, ITLB, DTLB, VTLB and FTLB.
> > >
> > > Acked-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
> > > Reviewed-by: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
> > > Signed-off-by: Huacai Chen <chenhc@lemote.com>
> > > Co-developed-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
> > > ---
> > >   arch/mips/include/asm/kvm_host.h |  7 +++++
> > >   arch/mips/include/asm/mipsregs.h |  7 +++++
> > >   arch/mips/kvm/tlb.c              | 41 ++++++++++++++++++++++++++
> > >   arch/mips/kvm/vz.c               | 62 +++++++++++++++++++++++++++++++++++++++-
> > >   4 files changed, 116 insertions(+), 1 deletion(-)
> > >
> > > diff --git a/arch/mips/include/asm/kvm_host.h b/arch/mips/include/asm/kvm_host.h
> > > index 3fd2f1c..30b5e33 100644
> > > --- a/arch/mips/include/asm/kvm_host.h
> > > +++ b/arch/mips/include/asm/kvm_host.h
> > > @@ -68,9 +68,11 @@
> > >   #define KVM_REG_MIPS_CP0_CONFIG3    MIPS_CP0_32(16, 3)
> > >   #define KVM_REG_MIPS_CP0_CONFIG4    MIPS_CP0_32(16, 4)
> > >   #define KVM_REG_MIPS_CP0_CONFIG5    MIPS_CP0_32(16, 5)
> > > +#define KVM_REG_MIPS_CP0_CONFIG6     MIPS_CP0_32(16, 6)
> > >   #define KVM_REG_MIPS_CP0_CONFIG7    MIPS_CP0_32(16, 7)
> > >   #define KVM_REG_MIPS_CP0_MAARI              MIPS_CP0_64(17, 2)
> > >   #define KVM_REG_MIPS_CP0_XCONTEXT   MIPS_CP0_64(20, 0)
> > > +#define KVM_REG_MIPS_CP0_DIAG                MIPS_CP0_32(22, 0)
> > >   #define KVM_REG_MIPS_CP0_ERROREPC   MIPS_CP0_64(30, 0)
> > >   #define KVM_REG_MIPS_CP0_KSCRATCH1  MIPS_CP0_64(31, 2)
> > >   #define KVM_REG_MIPS_CP0_KSCRATCH2  MIPS_CP0_64(31, 3)
> > > @@ -256,6 +258,7 @@ struct mips_coproc {
> > >   #define MIPS_CP0_WATCH_LO   18
> > >   #define MIPS_CP0_WATCH_HI   19
> > >   #define MIPS_CP0_TLB_XCONTEXT       20
> > > +#define MIPS_CP0_DIAG                22
> > >   #define MIPS_CP0_ECC                26
> > >   #define MIPS_CP0_CACHE_ERR  27
> > >   #define MIPS_CP0_TAG_LO             28
> > > @@ -927,6 +930,10 @@ void kvm_vz_save_guesttlb(struct kvm_mips_tlb *buf, unsigned int index,
> > >                         unsigned int count);
> > >   void kvm_vz_load_guesttlb(const struct kvm_mips_tlb *buf, unsigned int index,
> > >                         unsigned int count);
> > > +#ifdef CONFIG_CPU_LOONGSON64
> > > +void kvm_loongson_clear_guest_vtlb(void);
> > > +void kvm_loongson_clear_guest_ftlb(void);
> > > +#endif
> > >   #endif
> > >
> > >   void kvm_mips_suspend_mm(int cpu);
> > > diff --git a/arch/mips/include/asm/mipsregs.h b/arch/mips/include/asm/mipsregs.h
> > > index 796fe47..ce40fbf 100644
> > > --- a/arch/mips/include/asm/mipsregs.h
> > > +++ b/arch/mips/include/asm/mipsregs.h
> > > @@ -993,6 +996,8 @@
> > >   /* Disable Branch Return Cache */
> > >   #define R10K_DIAG_D_BRC             (_ULCAST_(1) << 22)
> > >
> > > +/* Flush BTB */
> > > +#define LOONGSON_DIAG_BTB    (_ULCAST_(1) << 1)
> > >   /* Flush ITLB */
> > >   #define LOONGSON_DIAG_ITLB  (_ULCAST_(1) << 2)
> > >   /* Flush DTLB */
> > > @@ -2825,7 +2830,9 @@ __BUILD_SET_C0(status)
> > >   __BUILD_SET_C0(cause)
> > >   __BUILD_SET_C0(config)
> > >   __BUILD_SET_C0(config5)
> > > +__BUILD_SET_C0(config6)
> > >   __BUILD_SET_C0(config7)
> > > +__BUILD_SET_C0(diag)
> > >   __BUILD_SET_C0(intcontrol)
> > >   __BUILD_SET_C0(intctl)
> > >   __BUILD_SET_C0(srsmap)
> > > diff --git a/arch/mips/kvm/tlb.c b/arch/mips/kvm/tlb.c
> > > index 7cd9216..1418715 100644
> > > --- a/arch/mips/kvm/tlb.c
> > > +++ b/arch/mips/kvm/tlb.c
> > > @@ -20,6 +20,7 @@
> > >
> > >   #include <asm/cpu.h>
> > >   #include <asm/bootinfo.h>
> > > +#include <asm/mipsregs.h>
> > >   #include <asm/mmu_context.h>
> > >   #include <asm/pgtable.h>
> > >   #include <asm/cacheflush.h>
> > > @@ -622,6 +623,46 @@ void kvm_vz_load_guesttlb(const struct kvm_mips_tlb *buf, unsigned int index,
> > >   }
> > >   EXPORT_SYMBOL_GPL(kvm_vz_load_guesttlb);
> > >
> > > +#ifdef CONFIG_CPU_LOONGSON64
> > > +void kvm_loongson_clear_guest_vtlb(void)
> > > +{
> > > +     int idx = read_gc0_index();
> > > +
> > > +     /* Set root GuestID for root probe and write of guest TLB entry */
> > > +     set_root_gid_to_guest_gid();
> > > +
> > > +     write_gc0_index(0);
> > > +     guest_tlbinvf();
> > > +     write_gc0_index(idx);
> > > +
> > > +     clear_root_gid();
> > > +     set_c0_diag(LOONGSON_DIAG_ITLB | LOONGSON_DIAG_DTLB);
> > > +}
> > > +EXPORT_SYMBOL_GPL(kvm_loongson_clear_guest_vtlb);
> > > +
> > > +void kvm_loongson_clear_guest_ftlb(void)
> > > +{
> > > +     int i;
> > > +     int idx = read_gc0_index();
> > > +
> > > +     /* Set root GuestID for root probe and write of guest TLB entry */
> > > +     set_root_gid_to_guest_gid();
> > > +
> > > +     for (i = current_cpu_data.tlbsizevtlb;
> > > +          i < (current_cpu_data.tlbsizevtlb +
> > > +                  current_cpu_data.tlbsizeftlbsets);
> > > +          i++) {
> > > +             write_gc0_index(i);
> > > +             guest_tlbinvf();
> > > +     }
> > > +     write_gc0_index(idx);
> > > +
> > > +     clear_root_gid();
> > > +     set_c0_diag(LOONGSON_DIAG_ITLB | LOONGSON_DIAG_DTLB);
> > > +}
> > > +EXPORT_SYMBOL_GPL(kvm_loongson_clear_guest_ftlb);
> > > +#endif
> > > +
> > >   #endif
> > >
> > >   /**
> > > diff --git a/arch/mips/kvm/vz.c b/arch/mips/kvm/vz.c
> > > index 72a62f1..73701c3 100644
> > > --- a/arch/mips/kvm/vz.c
> > > +++ b/arch/mips/kvm/vz.c
> > > @@ -127,6 +127,11 @@ static inline unsigned int kvm_vz_config5_guest_wrmask(struct kvm_vcpu *vcpu)
> > >       return mask;
> > >   }
> > >
> > > +static inline unsigned int kvm_vz_config6_guest_wrmask(struct kvm_vcpu *vcpu)
> > > +{
> > > +     return MIPS_CONF6_LOONGSON_INTIMER | MIPS_CONF6_LOONGSON_EXTIMER;
> >
> > This depends on the "MIPS: Tidy up CP0.Config6 bits definition" patch
> > which is not yet upstream.
> >
> > I'd suggest backing this change out to prioritize upstreaming of v6.
> > Cleanups can always come later. It's not like this kind of minor
> > cleanups should block progress of greater things...
> >
>
> Hi, Huacai,
>
> I must agree with Wang, You started complicating thing, and exactly at the moment we reached consensus on v6. Either accept Wang;s advice, or make that "MIPS: Tidy up CP0.Config6 bits definition" patch part of your series and send v8.
>
> And your series should be made as if it should be applied to kernel upstream, not linux-mips. That will make Paolo's life easier. Please try to simplify things for other participants, not mix some minor thing from different trees etc., or now deal with your pgp keys, or other currently unimportant things, instead tryto  focus on the cleanness of the series. Paolo will submit pull request, and we should be thankful to him for doing this, trust me, submitting pull requests is not fun at all.
I will send a V8 series which can be applied on the linux-next branch
at https://git.kernel.org/pub/scm/virt/kvm/kvm.git/, I think this is
the best way for Paolo.

Huacai
>
> Yours,
> Aleksandar
>
>
> > > +}
> > > +
> > >   /*
> > >    * VZ optionally allows these additional Config bits to be written by root:
> > >    * Config:  M, [MT]
> > > @@ -181,6 +186,12 @@ static inline unsigned int kvm_vz_config5_user_wrmask(struct kvm_vcpu *vcpu)
> > >       return kvm_vz_config5_guest_wrmask(vcpu) | MIPS_CONF5_MRP;
> > >   }
> > >
> > > +static inline unsigned int kvm_vz_config6_user_wrmask(struct kvm_vcpu *vcpu)
> > > +{
> > > +     return kvm_vz_config6_guest_wrmask(vcpu) |
> > > +             MIPS_CONF6_LOONGSON_SFBEN | MIPS_CONF6_LOONGSON_FTLBDIS;
> > > +}
> > > +
> > >   static gpa_t kvm_vz_gva_to_gpa_cb(gva_t gva)
> > >   {
> > >       /* VZ guest has already converted gva to gpa */
> > > @@ -930,7 +941,8 @@ static enum emulation_result kvm_vz_gpsi_cop0(union mips_instruction inst,
> > >                                   (sel == 2 ||        /* SRSCtl */
> > >                                    sel == 3)) ||      /* SRSMap */
> > >                                  (rd == MIPS_CP0_CONFIG &&
> > > -                                 (sel == 7)) ||      /* Config7 */
> > > +                                 (sel == 6 ||        /* Config6 */
> > > +                                  sel == 7)) ||      /* Config7 */
> > >                                  (rd == MIPS_CP0_LLADDR &&
> > >                                   (sel == 2) &&       /* MAARI */
> > >                                   cpu_guest_has_maar &&
> > > @@ -938,6 +950,11 @@ static enum emulation_result kvm_vz_gpsi_cop0(union mips_instruction inst,
> > >                                  (rd == MIPS_CP0_ERRCTL &&
> > >                                   (sel == 0))) {      /* ErrCtl */
> > >                               val = cop0->reg[rd][sel];
> > > +#ifdef CONFIG_CPU_LOONGSON64
> > > +                     } else if (rd == MIPS_CP0_DIAG &&
> > > +                                (sel == 0)) {        /* Diag */
> > > +                             val = cop0->reg[rd][sel];
> > > +#endif
> > >                       } else {
> > >                               val = 0;
> > >                               er = EMULATE_FAIL;
> > > @@ -1000,9 +1017,40 @@ static enum emulation_result kvm_vz_gpsi_cop0(union mips_instruction inst,
> > >                                  cpu_guest_has_maar &&
> > >                                  !cpu_guest_has_dyn_maar) {
> > >                               kvm_write_maari(vcpu, val);
> > > +                     } else if (rd == MIPS_CP0_CONFIG &&
> > > +                                (sel == 6)) {
> > > +                             cop0->reg[rd][sel] = (int)val;
> > >                       } else if (rd == MIPS_CP0_ERRCTL &&
> > >                                  (sel == 0)) {        /* ErrCtl */
> > >                               /* ignore the written value */
> > > +#ifdef CONFIG_CPU_LOONGSON64
> > > +                     } else if (rd == MIPS_CP0_DIAG &&
> > > +                                (sel == 0)) {        /* Diag */
> > > +                             unsigned long flags;
> > > +
> > > +                             local_irq_save(flags);
> > > +                             if (val & LOONGSON_DIAG_BTB) {
> > > +                                     /* Flush BTB */
> > > +                                     set_c0_diag(LOONGSON_DIAG_BTB);
> > > +                             }
> > > +                             if (val & LOONGSON_DIAG_ITLB) {
> > > +                                     /* Flush ITLB */
> > > +                                     set_c0_diag(LOONGSON_DIAG_ITLB);
> > > +                             }
> > > +                             if (val & LOONGSON_DIAG_DTLB) {
> > > +                                     /* Flush DTLB */
> > > +                                     set_c0_diag(LOONGSON_DIAG_DTLB);
> > > +                             }
> > > +                             if (val & LOONGSON_DIAG_VTLB) {
> > > +                                     /* Flush VTLB */
> > > +                                     kvm_loongson_clear_guest_vtlb();
> > > +                             }
> > > +                             if (val & LOONGSON_DIAG_FTLB) {
> > > +                                     /* Flush FTLB */
> > > +                                     kvm_loongson_clear_guest_ftlb();
> > > +                             }
> > > +                             local_irq_restore(flags);
> > > +#endif
> > >                       } else {
> > >                               er = EMULATE_FAIL;
> > >                       }
> > > @@ -1692,6 +1740,7 @@ static u64 kvm_vz_get_one_regs[] = {
> > >       KVM_REG_MIPS_CP0_CONFIG3,
> > >       KVM_REG_MIPS_CP0_CONFIG4,
> > >       KVM_REG_MIPS_CP0_CONFIG5,
> > > +     KVM_REG_MIPS_CP0_CONFIG6,
> > >   #ifdef CONFIG_64BIT
> > >       KVM_REG_MIPS_CP0_XCONTEXT,
> > >   #endif
> > > @@ -2019,6 +2068,9 @@ static int kvm_vz_get_one_reg(struct kvm_vcpu *vcpu,
> > >                       return -EINVAL;
> > >               *v = read_gc0_config5();
> > >               break;
> > > +     case KVM_REG_MIPS_CP0_CONFIG6:
> > > +             *v = kvm_read_sw_gc0_config6(cop0);
> > > +             break;
> > >       case KVM_REG_MIPS_CP0_MAAR(0) ... KVM_REG_MIPS_CP0_MAAR(0x3f):
> > >               if (!cpu_guest_has_maar || cpu_guest_has_dyn_maar)
> > >                       return -EINVAL;
> > > @@ -2288,6 +2340,14 @@ static int kvm_vz_set_one_reg(struct kvm_vcpu *vcpu,
> > >                       write_gc0_config5(v);
> > >               }
> > >               break;
> > > +     case KVM_REG_MIPS_CP0_CONFIG6:
> > > +             cur = kvm_read_sw_gc0_config6(cop0);
> > > +             change = (cur ^ v) & kvm_vz_config6_user_wrmask(vcpu);
> > > +             if (change) {
> > > +                     v = cur ^ change;
> > > +                     kvm_write_sw_gc0_config6(cop0, (int)v);
> > > +             }
> > > +             break;
> > >       case KVM_REG_MIPS_CP0_MAAR(0) ... KVM_REG_MIPS_CP0_MAAR(0x3f):
> > >               if (!cpu_guest_has_maar || cpu_guest_has_dyn_maar)
> > >                       return -EINVAL;

  parent reply	other threads:[~2020-05-24  2:45 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-23  7:56 [PATCH V7 00/15] KVM: MIPS: Add Loongson-3 support (Host Side) Huacai Chen
2020-05-23  7:56 ` [PATCH V7 01/15] KVM: MIPS: Define KVM_ENTRYHI_ASID to cpu_asid_mask(&boot_cpu_data) Huacai Chen
2020-05-23  7:56 ` [PATCH V7 02/15] KVM: MIPS: Fix VPN2_MASK definition for variable cpu_vmbits Huacai Chen
2020-05-23  7:56 ` [PATCH V7 03/15] KVM: MIPS: Increase KVM_MAX_VCPUS and KVM_USER_MEM_SLOTS to 16 Huacai Chen
2020-05-23  7:56 ` [PATCH V7 04/15] KVM: MIPS: Add EVENTFD support which is needed by VHOST Huacai Chen
2020-05-23  7:56 ` [PATCH V7 05/15] KVM: MIPS: Use lddir/ldpte instructions to lookup gpa_mm.pgd Huacai Chen
2020-05-23  7:56 ` [PATCH V7 06/15] KVM: MIPS: Introduce and use cpu_guest_has_ldpte Huacai Chen
2020-05-23  7:56 ` [PATCH V7 07/15] KVM: MIPS: Use root tlb to control guest's CCA for Loongson-3 Huacai Chen
2020-05-23  7:56 ` [PATCH V7 08/15] KVM: MIPS: Let indexed cacheops cause guest exit on Loongson-3 Huacai Chen
2020-05-23  7:56 ` [PATCH V7 09/15] KVM: MIPS: Add more types of virtual interrupts Huacai Chen
2020-05-23  7:56 ` [PATCH V7 10/15] KVM: MIPS: Add Loongson-3 Virtual IPI interrupt support Huacai Chen
2020-05-23  7:56 ` [PATCH V7 11/15] KVM: MIPS: Add CPUCFG emulation for Loongson-3 Huacai Chen
2020-05-23  7:56 ` [PATCH V7 12/15] KVM: MIPS: Add CONFIG6 and DIAG registers emulation Huacai Chen
2020-05-23 13:27   ` WANG Xuerui
     [not found]     ` <CAHiYmc6YDw7=mqXfMdgSfeR-HVd2Ec+sQVquM=Z6jLke2s-VEw@mail.gmail.com>
2020-05-24  2:45       ` Huacai Chen [this message]
2020-05-23  7:56 ` [PATCH V7 13/15] KVM: MIPS: Add more MMIO load/store instructions emulation Huacai Chen
2020-05-23  7:56 ` [PATCH V7 14/15] KVM: MIPS: Enable KVM support for Loongson-3 Huacai Chen
2020-05-23  7:56 ` [PATCH V7 15/15] MAINTAINERS: Update KVM/MIPS maintainers Huacai Chen
2020-05-23  9:01 ` [PATCH V7 00/15] KVM: MIPS: Add Loongson-3 support (Host Side) Aleksandar Markovic
2020-06-04 17:57 ` Paolo Bonzini

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='CAAhV-H400FyhpmWutr7=g0AF2BVn7kJ=b89KapYs-nU2fuwaZQ@mail.gmail.com' \
    --to=chenhuacai@gmail.com \
    --cc=aleksandar.qemu.devel@gmail.com \
    --cc=jiaxun.yang@flygoat.com \
    --cc=kernel@xen0n.name \
    --cc=kvm@vger.kernel.org \
    --cc=linux-mips@vger.kernel.org \
    --cc=pbonzini@redhat.com \
    --cc=tsbogend@alpha.franken.de \
    --cc=zhangfx@lemote.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 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).