[PATCH v2 0/3] target/riscv/kvm: update to Linux 6.14-rc3

Daniel Henrique Barboza posted 3 patches 11 months, 3 weeks ago
Failed in applying to current master (apply log)
There is a newer version of this series
include/standard-headers/linux/ethtool.h      |  4 +
include/standard-headers/linux/fuse.h         | 76 ++++++++++++++++++-
.../linux/input-event-codes.h                 |  1 +
include/standard-headers/linux/pci_regs.h     | 16 ++--
include/standard-headers/linux/virtio_pci.h   | 14 ++++
linux-headers/asm-arm64/kvm.h                 |  3 -
linux-headers/asm-loongarch/kvm_para.h        |  1 +
linux-headers/asm-riscv/kvm.h                 |  7 +-
linux-headers/asm-x86/kvm.h                   |  1 +
linux-headers/linux/iommufd.h                 | 35 ++++++---
linux-headers/linux/kvm.h                     |  8 +-
linux-headers/linux/stddef.h                  | 13 +++-
linux-headers/linux/vduse.h                   |  2 +-
target/riscv/cpu.c                            |  3 +-
target/riscv/cpu_cfg.h                        |  3 +
target/riscv/kvm/kvm-cpu.c                    |  3 +
target/riscv/tcg/tcg-cpu.c                    |  2 +
17 files changed, 156 insertions(+), 36 deletions(-)
[PATCH v2 0/3] target/riscv/kvm: update to Linux 6.14-rc3
Posted by Daniel Henrique Barboza 11 months, 3 weeks ago
Hi,

In this version all changes were made in patch 2. In the first posting I
forgot to update how riscv,isa was going to be calculated when
ext_ziccrse is set by KVM.

A change was made in isa_edata_arr[] to use ext_ziccrse, instead of
'has_priv_1_11', and TCG code were changed to set ext_ziccrse
accordingly. 

No other changes made. Patches based on alistair/riscv-to-apply.next.

Changes from v1:
- patch 2:
  - use 'ext_ziccrse' instead of 'has_priv_1_11' in isa_edata_arr[]
- v1 link: https://lore.kernel.org/qemu-riscv/20250218163854.425607-1-dbarboza@ventanamicro.com/

Daniel Henrique Barboza (3):
  linux-headers: Update to Linux v6.14-rc3
  target/riscv/cpu.c: create flag for ziccrse
  target/riscv/kvm: add extensions after 6.14-rc3 update

 include/standard-headers/linux/ethtool.h      |  4 +
 include/standard-headers/linux/fuse.h         | 76 ++++++++++++++++++-
 .../linux/input-event-codes.h                 |  1 +
 include/standard-headers/linux/pci_regs.h     | 16 ++--
 include/standard-headers/linux/virtio_pci.h   | 14 ++++
 linux-headers/asm-arm64/kvm.h                 |  3 -
 linux-headers/asm-loongarch/kvm_para.h        |  1 +
 linux-headers/asm-riscv/kvm.h                 |  7 +-
 linux-headers/asm-x86/kvm.h                   |  1 +
 linux-headers/linux/iommufd.h                 | 35 ++++++---
 linux-headers/linux/kvm.h                     |  8 +-
 linux-headers/linux/stddef.h                  | 13 +++-
 linux-headers/linux/vduse.h                   |  2 +-
 target/riscv/cpu.c                            |  3 +-
 target/riscv/cpu_cfg.h                        |  3 +
 target/riscv/kvm/kvm-cpu.c                    |  3 +
 target/riscv/tcg/tcg-cpu.c                    |  2 +
 17 files changed, 156 insertions(+), 36 deletions(-)

-- 
2.48.1
Re: [PATCH v2 0/3] target/riscv/kvm: update to Linux 6.14-rc3
Posted by Alistair Francis 11 months, 2 weeks ago
On Sat, Feb 22, 2025 at 12:19 AM Daniel Henrique Barboza
<dbarboza@ventanamicro.com> wrote:
>
> Hi,
>
> In this version all changes were made in patch 2. In the first posting I
> forgot to update how riscv,isa was going to be calculated when
> ext_ziccrse is set by KVM.
>
> A change was made in isa_edata_arr[] to use ext_ziccrse, instead of
> 'has_priv_1_11', and TCG code were changed to set ext_ziccrse
> accordingly.
>
> No other changes made. Patches based on alistair/riscv-to-apply.next.
>
> Changes from v1:
> - patch 2:
>   - use 'ext_ziccrse' instead of 'has_priv_1_11' in isa_edata_arr[]
> - v1 link: https://lore.kernel.org/qemu-riscv/20250218163854.425607-1-dbarboza@ventanamicro.com/
>
> Daniel Henrique Barboza (3):
>   linux-headers: Update to Linux v6.14-rc3
>   target/riscv/cpu.c: create flag for ziccrse
>   target/riscv/kvm: add extensions after 6.14-rc3 update

Thanks!

Applied to riscv-to-apply.next

Alistair

>
>  include/standard-headers/linux/ethtool.h      |  4 +
>  include/standard-headers/linux/fuse.h         | 76 ++++++++++++++++++-
>  .../linux/input-event-codes.h                 |  1 +
>  include/standard-headers/linux/pci_regs.h     | 16 ++--
>  include/standard-headers/linux/virtio_pci.h   | 14 ++++
>  linux-headers/asm-arm64/kvm.h                 |  3 -
>  linux-headers/asm-loongarch/kvm_para.h        |  1 +
>  linux-headers/asm-riscv/kvm.h                 |  7 +-
>  linux-headers/asm-x86/kvm.h                   |  1 +
>  linux-headers/linux/iommufd.h                 | 35 ++++++---
>  linux-headers/linux/kvm.h                     |  8 +-
>  linux-headers/linux/stddef.h                  | 13 +++-
>  linux-headers/linux/vduse.h                   |  2 +-
>  target/riscv/cpu.c                            |  3 +-
>  target/riscv/cpu_cfg.h                        |  3 +
>  target/riscv/kvm/kvm-cpu.c                    |  3 +
>  target/riscv/tcg/tcg-cpu.c                    |  2 +
>  17 files changed, 156 insertions(+), 36 deletions(-)
>
> --
> 2.48.1
>
>