|
|
Log in / Subscribe / Register

Added Interrupt controller emulation for loongarch kvm

From:  Xianglai Li <lixianglai-AT-loongson.cn>
To:  linux-kernel-AT-vger.kernel.org
Subject:  [PATCH 00/11] Added Interrupt controller emulation for loongarch kvm
Date:  Fri, 05 Jul 2024 10:38:43 +0800
Message-ID:  <20240705023854.1005258-1-lixianglai@loongson.cn>
Cc:  Bibo Mao <maobibo-AT-loongson.cn>, Huacai Chen <chenhuacai-AT-kernel.org>, kvm-AT-vger.kernel.org, loongarch-AT-lists.linux.dev, Min Zhou <zhoumin-AT-loongson.cn>, Paolo Bonzini <pbonzini-AT-redhat.com>, Tianrui Zhao <zhaotianrui-AT-loongson.cn>, WANG Xuerui <kernel-AT-xen0n.name>, Xianglai li <lixianglai-AT-loongson.cn>
Archive-link:  Article

Before this, the interrupt controller simulation has been completed
in the user mode program. In order to reduce the loss caused by frequent
switching of the virtual machine monitor from kernel mode to user mode
when the guest accesses the interrupt controller, we add the interrupt
controller simulation in kvm.


The following is a virtual machine simulation diagram of interrupted
connections:
  +-----+    +---------+     +-------+
  | IPI |--> | CPUINTC | <-- | Timer |
  +-----+    +---------+     +-------+
                 ^
                 |
           +---------+
           | EIOINTC |
           +---------+
            ^       ^
            |       |
     +---------+ +---------+
     | PCH-PIC | | PCH-MSI |
     +---------+ +---------+
       ^      ^          ^
       |      |          |
+--------+ +---------+ +---------+
| UARTs  | | Devices | | Devices |
+--------+ +---------+ +---------+

In this series of patches, we mainly realized the simulation of
IPI EXTIOI PCH-PIC interrupt controller.

The simulation of IPI EXTIOI PCH-PIC interrupt controller mainly
completes the creation simulation of the interrupt controller,
the register address space read and write simulation,
and the interface with user mode to obtain and set the interrupt
controller state for the preservation,
recovery and migration of virtual machines.

IPI simulation implementation reference:
https://github.com/loongson/LoongArch-Documentation/tree/...

EXTIOI simulation implementation reference:
https://github.com/loongson/LoongArch-Documentation/tree/...

PCH-PIC simulation implementation reference:
https://github.com/loongson/LoongArch-Documentation/blob/...

For PCH-MSI, we used irqfd mechanism to send the interrupt signal
generated by user state to kernel state and then to EXTIOI without
maintaining PCH-MSI state in kernel state.

Cc: Bibo Mao <maobibo@loongson.cn> 
Cc: Huacai Chen <chenhuacai@kernel.org> 
Cc: kvm@vger.kernel.org 
Cc: loongarch@lists.linux.dev 
Cc: Min Zhou <zhoumin@loongson.cn> 
Cc: Paolo Bonzini <pbonzini@redhat.com> 
Cc: Tianrui Zhao <zhaotianrui@loongson.cn> 
Cc: WANG Xuerui <kernel@xen0n.name> 
Cc: Xianglai li <lixianglai@loongson.cn> 

Xianglai Li (11):
  LoongArch: KVM: Add iocsr and mmio bus simulation in kernel
  LoongArch: KVM: Add IPI device support
  LoongArch: KVM: Add IPI read and write function
  LoongArch: KVM: Add IPI user mode read and write function
  LoongArch: KVM: Add EXTIOI device support
  LoongArch: KVM: Add EXTIOI read and write functions
  LoongArch: KVM: Add EXTIOI user mode read and write functions
  LoongArch: KVM: Add PCHPIC device support
  LoongArch: KVM: Add PCHPIC read and write functions
  LoongArch: KVM: Add PCHPIC user mode read and write functions
  LoongArch: KVM: Add irqfd support

 arch/loongarch/include/asm/kvm_extioi.h  |  95 +++
 arch/loongarch/include/asm/kvm_host.h    |  30 +
 arch/loongarch/include/asm/kvm_ipi.h     |  52 ++
 arch/loongarch/include/asm/kvm_pch_pic.h |  61 ++
 arch/loongarch/include/uapi/asm/kvm.h    |   9 +
 arch/loongarch/kvm/Kconfig               |   3 +
 arch/loongarch/kvm/Makefile              |   4 +
 arch/loongarch/kvm/exit.c                |  69 +-
 arch/loongarch/kvm/intc/extioi.c         | 783 +++++++++++++++++++++++
 arch/loongarch/kvm/intc/ipi.c            | 539 ++++++++++++++++
 arch/loongarch/kvm/intc/pch_pic.c        | 538 ++++++++++++++++
 arch/loongarch/kvm/irqfd.c               |  87 +++
 arch/loongarch/kvm/main.c                |  19 +-
 arch/loongarch/kvm/vcpu.c                |   3 +
 arch/loongarch/kvm/vm.c                  |  53 +-
 include/linux/kvm_host.h                 |   1 +
 include/uapi/linux/kvm.h                 |   8 +
 17 files changed, 2332 insertions(+), 22 deletions(-)
 create mode 100644 arch/loongarch/include/asm/kvm_extioi.h
 create mode 100644 arch/loongarch/include/asm/kvm_ipi.h
 create mode 100644 arch/loongarch/include/asm/kvm_pch_pic.h
 create mode 100644 arch/loongarch/kvm/intc/extioi.c
 create mode 100644 arch/loongarch/kvm/intc/ipi.c
 create mode 100644 arch/loongarch/kvm/intc/pch_pic.c
 create mode 100644 arch/loongarch/kvm/irqfd.c


base-commit: afcd48134c58d6af45fb3fdb648f1260b20f2326
-- 
2.39.1




Copyright © 2024, Eklektix, Inc.
Comments and public postings are copyrighted by their creators.
Linux is a registered trademark of Linus Torvalds