From: Anup Patel <apatel@ventanamicro.com>
To: kvm-riscv@lists.infradead.org
Subject: [PATCH 0/3] Svinval support for KVM RISC-V
Date: Fri, 2 Sep 2022 22:31:28 +0530 [thread overview]
Message-ID: <20220902170131.32334-1-apatel@ventanamicro.com> (raw)
This series adds Svinval extension support for both Host hypervisor
and Guest.
These patches can also be found in riscv_kvm_svinval_v1 branch at:
https://github.com/avpatel/linux.git
The corresponding KVMTOOL patches are available in riscv_svinval_v1
branch at: https://github.com/avpatel/kvmtool.git
Anup Patel (2):
RISC-V: KVM: Use Svinval for local TLB maintenance when available
RISC-V: KVM: Allow Guest use Svinval extension
Mayuresh Chitale (1):
RISC-V: Probe Svinval extension form ISA string
arch/riscv/include/asm/hwcap.h | 4 +++
arch/riscv/include/asm/insn-def.h | 20 +++++++++++
arch/riscv/include/uapi/asm/kvm.h | 1 +
arch/riscv/kernel/cpu.c | 1 +
arch/riscv/kernel/cpufeature.c | 1 +
arch/riscv/kvm/tlb.c | 60 ++++++++++++++++++++++++-------
arch/riscv/kvm/vcpu.c | 2 ++
7 files changed, 77 insertions(+), 12 deletions(-)
--
2.34.1
WARNING: multiple messages have this Message-ID (diff)
From: Anup Patel <apatel@ventanamicro.com>
To: Paolo Bonzini <pbonzini@redhat.com>, Atish Patra <atishp@atishpatra.org>
Cc: Palmer Dabbelt <palmer@dabbelt.com>,
Paul Walmsley <paul.walmsley@sifive.com>,
Anup Patel <anup@brainfault.org>,
kvm@vger.kernel.org, kvm-riscv@lists.infradead.org,
linux-riscv@lists.infradead.org, linux-kernel@vger.kernel.org,
Anup Patel <apatel@ventanamicro.com>
Subject: [PATCH 0/3] Svinval support for KVM RISC-V
Date: Fri, 2 Sep 2022 22:31:28 +0530 [thread overview]
Message-ID: <20220902170131.32334-1-apatel@ventanamicro.com> (raw)
This series adds Svinval extension support for both Host hypervisor
and Guest.
These patches can also be found in riscv_kvm_svinval_v1 branch at:
https://github.com/avpatel/linux.git
The corresponding KVMTOOL patches are available in riscv_svinval_v1
branch at: https://github.com/avpatel/kvmtool.git
Anup Patel (2):
RISC-V: KVM: Use Svinval for local TLB maintenance when available
RISC-V: KVM: Allow Guest use Svinval extension
Mayuresh Chitale (1):
RISC-V: Probe Svinval extension form ISA string
arch/riscv/include/asm/hwcap.h | 4 +++
arch/riscv/include/asm/insn-def.h | 20 +++++++++++
arch/riscv/include/uapi/asm/kvm.h | 1 +
arch/riscv/kernel/cpu.c | 1 +
arch/riscv/kernel/cpufeature.c | 1 +
arch/riscv/kvm/tlb.c | 60 ++++++++++++++++++++++++-------
arch/riscv/kvm/vcpu.c | 2 ++
7 files changed, 77 insertions(+), 12 deletions(-)
--
2.34.1
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
WARNING: multiple messages have this Message-ID (diff)
From: Anup Patel <apatel@ventanamicro.com>
To: Paolo Bonzini <pbonzini@redhat.com>, Atish Patra <atishp@atishpatra.org>
Cc: Palmer Dabbelt <palmer@dabbelt.com>,
Paul Walmsley <paul.walmsley@sifive.com>,
Anup Patel <anup@brainfault.org>,
kvm@vger.kernel.org, kvm-riscv@lists.infradead.org,
linux-riscv@lists.infradead.org, linux-kernel@vger.kernel.org,
Anup Patel <apatel@ventanamicro.com>
Subject: [PATCH 0/3] Svinval support for KVM RISC-V
Date: Fri, 2 Sep 2022 22:31:28 +0530 [thread overview]
Message-ID: <20220902170131.32334-1-apatel@ventanamicro.com> (raw)
This series adds Svinval extension support for both Host hypervisor
and Guest.
These patches can also be found in riscv_kvm_svinval_v1 branch at:
https://github.com/avpatel/linux.git
The corresponding KVMTOOL patches are available in riscv_svinval_v1
branch at: https://github.com/avpatel/kvmtool.git
Anup Patel (2):
RISC-V: KVM: Use Svinval for local TLB maintenance when available
RISC-V: KVM: Allow Guest use Svinval extension
Mayuresh Chitale (1):
RISC-V: Probe Svinval extension form ISA string
arch/riscv/include/asm/hwcap.h | 4 +++
arch/riscv/include/asm/insn-def.h | 20 +++++++++++
arch/riscv/include/uapi/asm/kvm.h | 1 +
arch/riscv/kernel/cpu.c | 1 +
arch/riscv/kernel/cpufeature.c | 1 +
arch/riscv/kvm/tlb.c | 60 ++++++++++++++++++++++++-------
arch/riscv/kvm/vcpu.c | 2 ++
7 files changed, 77 insertions(+), 12 deletions(-)
--
2.34.1
next reply other threads:[~2022-09-02 17:01 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-02 17:01 Anup Patel [this message]
2022-09-02 17:01 ` [PATCH 0/3] Svinval support for KVM RISC-V Anup Patel
2022-09-02 17:01 ` Anup Patel
2022-09-02 17:01 ` [PATCH 1/3] RISC-V: Probe Svinval extension form ISA string Anup Patel
2022-09-02 17:01 ` Anup Patel
2022-09-02 17:01 ` Anup Patel
2022-09-02 17:01 ` [PATCH 2/3] RISC-V: KVM: Use Svinval for local TLB maintenance when available Anup Patel
2022-09-02 17:01 ` Anup Patel
2022-09-02 17:01 ` Anup Patel
2022-09-02 17:01 ` [PATCH 3/3] RISC-V: KVM: Allow Guest use Svinval extension Anup Patel
2022-09-02 17:01 ` Anup Patel
2022-09-02 17:01 ` Anup Patel
2022-09-05 14:05 ` [PATCH 0/3] Svinval support for KVM RISC-V Andrew Jones
2022-09-05 14:05 ` Andrew Jones
2022-09-05 14:05 ` Andrew Jones
2022-09-16 4:58 ` Anup Patel
2022-09-16 4:58 ` Anup Patel
2022-09-16 4:58 ` Anup Patel
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=20220902170131.32334-1-apatel@ventanamicro.com \
--to=apatel@ventanamicro.com \
--cc=kvm-riscv@lists.infradead.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.