From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id BFF82C4332F for ; Tue, 19 Oct 2021 07:37:35 +0000 (UTC) Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 4902F6136F for ; Tue, 19 Oct 2021 07:37:35 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 4902F6136F Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=loongson.cn Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=nongnu.org Received: from localhost ([::1]:36288 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1mcjgk-00045D-Ae for qemu-devel@archiver.kernel.org; Tue, 19 Oct 2021 03:37:34 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:55854) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mcjex-0001GR-F7 for qemu-devel@nongnu.org; Tue, 19 Oct 2021 03:35:43 -0400 Received: from mail.loongson.cn ([114.242.206.163]:34640 helo=loongson.cn) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1mcjes-0004Lz-7Z for qemu-devel@nongnu.org; Tue, 19 Oct 2021 03:35:43 -0400 Received: from kvm-dev1.localdomain (unknown [10.2.5.134]) by mail.loongson.cn (Coremail) with SMTP id AQAAf9DxP2s1dW5h3HwcAA--.43474S2; Tue, 19 Oct 2021 15:35:18 +0800 (CST) From: Xiaojuan Yang To: qemu-devel@nongnu.org Subject: [PATCH 00/31] Add Loongarch softmmu support. Date: Tue, 19 Oct 2021 15:34:46 +0800 Message-Id: <1634628917-10031-1-git-send-email-yangxiaojuan@loongson.cn> X-Mailer: git-send-email 1.8.3.1 X-CM-TRANSID: AQAAf9DxP2s1dW5h3HwcAA--.43474S2 X-Coremail-Antispam: 1UD129KBjvJXoW3Gry5ury8Aw17Xr4rZw4rAFb_yoWxtw1kpF W7urn8Kr48GrZrJrZYqa45Xr95JF1xGr4293Waqry8CrWIvryUZr1vyasxXFy7Jay8Gry0 qF1Fkw1UWa17XaDanT9S1TB71UUUUU7qnTZGkaVYY2UrUUUUjbIjqfuFe4nvWSU5nxnvy2 9KBjDU0xBIdaVrnUUvcSsGvfC2KfnxnUUI43ZEXa7xR_UUUUUUUUU== X-CM-SenderInfo: p1dqw5xldry3tdq6z05rqj20fqof0/ Received-SPF: pass client-ip=114.242.206.163; envelope-from=yangxiaojuan@loongson.cn; helo=loongson.cn X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: peter.maydell@linaro.org, thuth@redhat.com, chenhuacai@loongson.cn, mst@redhat.com, philmd@redhat.com, richard.henderson@linaro.org, laurent@vivier.eu, peterx@redhat.com, f4bug@amsat.org, yangxiaojuan@loongson.cn, alistair.francis@wdc.com, maobibo@loongson.cn, gaosong@loongson.cn, pbonzini@redhat.com, mark.cave-ayland@ilande.co.uk, bmeng.cn@gmail.com, alex.bennee@linaro.org, david@gibson.dropbear.id.au Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: "Qemu-devel" This series patch add softmmu support for LoongArch. Base on the linux-user emulation support V7 patch. The latest kernel: * https://github.com/loongson/linux/tree/loongarch-next The manual: * https://github.com/loongson/LoongArch-Documentation/releases/tag/2021.10.11 Patch 1 Add a readme for code download and supply binary for test. Patch 2-3 define CSR registers and set the init/reset value. Patch 4-5 Add cpu related functions. Patch 6-12 Add Privileged instruction simulation used by LoongArch. Patch 13 Emulate a virt pci host based on the LoongArch 7A1000. Patch 14 Emulate a virt 3a5000 board different from host. Patch 15-20 Emulate the interrupt controller used by the virt board. Patch 21-22 Add devices used by the board. Patch 23-25 Add bios and smbios support needed for the start. Patch 26 Add a simple acpi model. Patch 27 Enable mttcg mode. Patch 28-29 Support for numa more than 4 cpus. Patch 30-31 Add some functions for debug. Xiaojuan Yang (31): target/loongarch: Upate the README for the softmmu. target/loongarch: Add CSR registers definition target/loongarch: Set default csr values. target/loongarch: Add basic vmstate description of CPU. target/loongarch: Implement qmp_query_cpu_definitions() target/loongarch: Add mmu support for Loongarch CPU. target/loongarch: Add loongarch csr/iocsr instruction support target/loongarch: Add tlb instruction support target/loongarch: Add other core instructions support target/loongarch: Add loongarch interrupt and exception handle target/loongarch: Add stabletimer support target/loongarch: Add timer related instructions support. hw/pci-host: Add ls7a1000 PCIe Host bridge support for Loongson Platform hw/loongarch: Add a virt loongarch 3A5000 board support hw/loongarch: Add loongarch cpu interrupt support(CPUINTC) hw/loongarch: Add loongarch ipi interrupt support(IPI) hw/intc: Add loongarch ls7a interrupt controller support(PCH-PIC) hw/intc: Add loongarch ls7a msi interrupt controller support(PCH-MSI) hw/intc: Add loongarch extioi interrupt controller(EIOINTC) hw/loongarch: Add irq hierarchy for the system hw/loongarch: Add some devices support for 3A5000. hw/loongarch: Add loongarch ls7a rtc device support hw/loongarch: Add default bios startup support. hw/loongarch: Add -kernel and -initrd options support hw/loongarch: Add loongarch smbios support hw/loongarch: Add loongarch acpi support hw/loongarch: Add mttcg mode support hw/loongarch: use machine->possible_cpus for storing possible topology info hw/loongarch: Add numa support. target/loongarch: Add gdb support. target/loongarch: Add privilege instructions diassembly .../devices/loongarch64-softmmu/default.mak | 3 + configs/targets/loongarch64-softmmu.mak | 4 + disas/loongarch.c | 173 ++++ gdb-xml/loongarch-base64.xml | 43 + gdb-xml/loongarch-fpu64.xml | 57 ++ hw/Kconfig | 1 + hw/acpi/Kconfig | 4 + hw/acpi/ls7a.c | 351 +++++++ hw/acpi/meson.build | 1 + hw/intc/Kconfig | 12 + hw/intc/loongarch_extioi.c | 589 +++++++++++ hw/intc/loongarch_pch_msi.c | 74 ++ hw/intc/loongarch_pch_pic.c | 284 ++++++ hw/intc/meson.build | 3 + hw/loongarch/Kconfig | 22 + hw/loongarch/acpi-build.c | 661 +++++++++++++ hw/loongarch/fw_cfg.c | 34 + hw/loongarch/fw_cfg.h | 16 + hw/loongarch/ipi.c | 147 +++ hw/loongarch/loongarch_int.c | 62 ++ hw/loongarch/ls3a5000_virt.c | 638 ++++++++++++ hw/loongarch/meson.build | 7 + hw/meson.build | 1 + hw/pci-host/Kconfig | 4 + hw/pci-host/ls7a.c | 224 +++++ hw/pci-host/meson.build | 1 + hw/rtc/Kconfig | 3 + hw/rtc/ls7a_rtc.c | 327 +++++++ hw/rtc/meson.build | 1 + include/exec/poison.h | 2 + include/hw/acpi/ls7a.h | 54 ++ include/hw/intc/loongarch_extioi.h | 102 ++ include/hw/intc/loongarch_pch_msi.h | 17 + include/hw/intc/loongarch_pch_pic.h | 50 + include/hw/loongarch/gipi.h | 38 + include/hw/loongarch/loongarch.h | 79 ++ include/hw/pci-host/ls7a.h | 67 ++ include/sysemu/arch_init.h | 1 + linux-user/loongarch64/cpu_loop.c | 3 +- pc-bios/loongarch_bios.bin | Bin 0 -> 4128768 bytes qapi/machine-target.json | 6 +- qapi/machine.json | 2 +- softmmu/qdev-monitor.c | 3 +- target/Kconfig | 1 + target/loongarch/Kconfig | 2 + target/loongarch/README | 134 +++ target/loongarch/cpu-csr.h | 493 ++++++++++ target/loongarch/cpu.c | 448 ++++++++- target/loongarch/cpu.h | 56 +- target/loongarch/csr_helper.c | 765 +++++++++++++++ target/loongarch/gdbstub.c | 95 ++ target/loongarch/helper.h | 24 + target/loongarch/insn_trans/trans_core.c | 302 ++++++ target/loongarch/insn_trans/trans_extra.c | 2 + target/loongarch/insns.decode | 45 + target/loongarch/internals.h | 93 ++ target/loongarch/machine.c | 253 +++++ target/loongarch/meson.build | 10 + target/loongarch/op_helper.c | 77 +- target/loongarch/ramdisk | Bin 0 -> 3077952 bytes target/loongarch/stabletimer.c | 71 ++ target/loongarch/tlb_helper.c | 918 ++++++++++++++++++ target/loongarch/translate.c | 8 +- target/loongarch/vmlinux | Bin 0 -> 24565536 bytes 64 files changed, 7955 insertions(+), 13 deletions(-) create mode 100644 configs/devices/loongarch64-softmmu/default.mak create mode 100644 configs/targets/loongarch64-softmmu.mak create mode 100644 gdb-xml/loongarch-base64.xml create mode 100644 gdb-xml/loongarch-fpu64.xml create mode 100644 hw/acpi/ls7a.c create mode 100644 hw/intc/loongarch_extioi.c create mode 100644 hw/intc/loongarch_pch_msi.c create mode 100644 hw/intc/loongarch_pch_pic.c create mode 100644 hw/loongarch/Kconfig create mode 100644 hw/loongarch/acpi-build.c create mode 100644 hw/loongarch/fw_cfg.c create mode 100644 hw/loongarch/fw_cfg.h create mode 100644 hw/loongarch/ipi.c create mode 100644 hw/loongarch/loongarch_int.c create mode 100644 hw/loongarch/ls3a5000_virt.c create mode 100644 hw/loongarch/meson.build create mode 100644 hw/pci-host/ls7a.c create mode 100644 hw/rtc/ls7a_rtc.c create mode 100644 include/hw/acpi/ls7a.h create mode 100644 include/hw/intc/loongarch_extioi.h create mode 100644 include/hw/intc/loongarch_pch_msi.h create mode 100644 include/hw/intc/loongarch_pch_pic.h create mode 100644 include/hw/loongarch/gipi.h create mode 100644 include/hw/loongarch/loongarch.h create mode 100644 include/hw/pci-host/ls7a.h create mode 100644 pc-bios/loongarch_bios.bin create mode 100644 target/loongarch/Kconfig create mode 100644 target/loongarch/cpu-csr.h create mode 100644 target/loongarch/csr_helper.c create mode 100644 target/loongarch/gdbstub.c create mode 100644 target/loongarch/insn_trans/trans_core.c create mode 100644 target/loongarch/machine.c create mode 100644 target/loongarch/ramdisk create mode 100644 target/loongarch/stabletimer.c create mode 100644 target/loongarch/tlb_helper.c create mode 100755 target/loongarch/vmlinux -- 2.27.0