Message ID | 20230623134351.1898379-1-kernel@xen0n.name (mailing list archive) |
---|---|
Headers | show
Return-Path: <linux-kbuild-owner@vger.kernel.org> X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 59BD4EB64DD for <linux-kbuild@archiver.kernel.org>; Fri, 23 Jun 2023 13:44:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231129AbjFWNoL (ORCPT <rfc822;linux-kbuild@archiver.kernel.org>); Fri, 23 Jun 2023 09:44:11 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:58468 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229647AbjFWNoK (ORCPT <rfc822;linux-kbuild@vger.kernel.org>); Fri, 23 Jun 2023 09:44:10 -0400 Received: from mailbox.box.xen0n.name (mail.xen0n.name [115.28.160.31]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0962D2100; Fri, 23 Jun 2023 06:44:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=xen0n.name; s=mail; t=1687527844; bh=XjMJYVClVBZoq59JRA/g/JtKw+4iNV+idqP9kd8lKmU=; h=From:To:Cc:Subject:Date:From; b=a50DuS080AUdkqLrk8Gl9D/KDlR7Zjw9FOr0hJGpUO+wusB8EUalv4A0FebLE+24S BR6SBWemSRsIMUo5cFUBuHHbCzuaKCEJBsTNNTldJ30JrDNjoIi/Yqe8KOJIjbZpub AY+knOb8/4LlrKVU/+AGFL/ZEKFm7xMgLODHFmbY= Received: from ld50.lan (unknown [101.88.25.181]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mailbox.box.xen0n.name (Postfix) with ESMTPSA id C13C160106; Fri, 23 Jun 2023 21:44:02 +0800 (CST) From: WANG Xuerui <kernel@xen0n.name> To: Huacai Chen <chenhuacai@kernel.org> Cc: WANG Rui <wangrui@loongson.cn>, Xi Ruoyao <xry111@xry111.site>, loongarch@lists.linux.dev, linux-kbuild@vger.kernel.org, llvm@lists.linux.dev, linux-kernel@vger.kernel.org, WANG Xuerui <git@xen0n.name> Subject: [PATCH 0/9] LoongArch: Preliminary ClangBuiltLinux enablement Date: Fri, 23 Jun 2023 21:43:42 +0800 Message-Id: <20230623134351.1898379-1-kernel@xen0n.name> X-Mailer: git-send-email 2.40.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: <linux-kbuild.vger.kernel.org> X-Mailing-List: linux-kbuild@vger.kernel.org |
Series |
LoongArch: Preliminary ClangBuiltLinux enablement
|
expand
|
From: WANG Xuerui <git@xen0n.name> Hi, It's been a long time since the LoongArch port was upstreamed to LLVM, and there seems to be evidence that Linux was successfully built with Clang inside Loongson roughly around that time; however, a lot has changed since then, and the Linux/LoongArch codebase now makes use of more novel features that necessitate further work. (The enablement work is tracked at [1].) With this patch series and a patched LLVM/LLD ([2] for llvm-objcopy, and [3] for LLD), a working kernel can be built with `make LLVM=1`; although currently support for CONFIG_RELOCATABLE and CONFIG_MODULE is still TODO, we've decided to post the series early to hopefully reduce the rebase burden. The series contains several useful cleanups anyway. Regarding how to merge this: because only Patch 8 is outside arch/loongarch, I'd prefer the series to get merged through Huacai's tree. The series applies cleanly on top of next-20230622. Thanks go to the ClangBuiltLinux team, and LoongArch toolchain maintainers from Loongson and the community alike; without your help this would come much later, if at all (my free time has been steadily dwindling this year already). Your comments are welcome! [1]: https://github.com/ClangBuiltLinux/linux/issues/1787 [2]: https://reviews.llvm.org/D153609 [3]: https://reviews.llvm.org/D138135 WANG Rui (2): LoongArch: Calculate various sizes in the linker script LoongArch: extable: Also recognize ABI names of registers WANG Xuerui (7): LoongArch: Prepare for assemblers with proper FCSR bank support LoongArch: Make {read,write}_fcsr compatible with LLVM/Clang LoongArch: Make the CPUCFG and CSR ops simple aliases of compiler built-ins LoongArch: Simplify the invtlb wrappers LoongArch: Tweak CFLAGS for Clang compatibility Makefile: Add loongarch target flag for Clang compilation LoongArch: Mark Clang LTO as working arch/loongarch/Kconfig | 5 ++ arch/loongarch/Makefile | 14 ++++- arch/loongarch/include/asm/fpregdef.h | 7 +++ arch/loongarch/include/asm/gpr-num.h | 30 ++++++++++ arch/loongarch/include/asm/loongarch.h | 82 ++++++++------------------ arch/loongarch/include/asm/tlb.h | 45 +++++--------- arch/loongarch/kernel/efi-header.S | 6 +- arch/loongarch/kernel/head.S | 8 +-- arch/loongarch/kernel/traps.c | 2 +- arch/loongarch/kernel/vmlinux.lds.S | 7 +++ arch/loongarch/lib/dump_tlb.c | 6 +- arch/loongarch/mm/tlb.c | 10 ++-- arch/loongarch/vdso/Makefile | 6 +- scripts/Makefile.clang | 1 + 14 files changed, 122 insertions(+), 107 deletions(-)