Received: by 2002:a05:6a10:9848:0:0:0:0 with SMTP id x8csp2515311pxf; Sun, 14 Mar 2021 01:15:10 -0800 (PST) X-Google-Smtp-Source: ABdhPJz7V3+LCvTMmUm8qJl7X4LAEV+L72kedPDYkmpjYxGnHsn2MnlHrpfPLeiKmunYEqOKRqZH X-Received: by 2002:a17:906:1d4e:: with SMTP id o14mr16890049ejh.549.1615713310613; Sun, 14 Mar 2021 01:15:10 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1615713310; cv=none; d=google.com; s=arc-20160816; b=A5CJwtiJj8OfPX3iQJi8HKa8+VZTKfGn0f9p/ZO9WL2nRo6ALMa8dRJfY5CJnKN3nG uMP5WoyBP38a3fJG+EmXLuY4oSy5Tkl3BATuVNrW1JL68AGawp6BaGA/x9L/pMIlPDLf JqnjQ0i5l7oxqBYtCv8ssxkL4Epi6uvJLsVT8kHNkj6Jppiyk1ZVOE9m9JCDtVaClWKF a5HrO6TqWslq3cf6brD9upT+b8AVGYyFJGduvIMhjvBGq23DYWhZNRTYpvShXXzJ4tX6 iuie602nfxJ57cRL1CU2uIoTU4smmfjBSJDHHVumfEoPlwt4xaS5FbG2AtvslmoT0tDR Y7Hw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=GOR5RsNWUiNiaJdJqWQ/aqWEVkCX/WJoZ8GEKxIYRyo=; b=ecGSeCwzz7Hd/0tnrzYURUyHkH3Xc2Y31qdY/ltZmeJxX29rbDXtGWzfks8AjGdzY8 qIMaB9E4LkXHMtVCLzA307UE2dUt+DkBUC729m53YB9YT8ALrk7hMZK8qmnAqT+H0ncN UiJJcoKHKu81ZiGNbrnAYQRdeJ+me38TErVAkB6rkGkS8mZCgjRMPks1yiiEi7DXVqeO Ob1yKK73sF965ezUYGU+/bNRiMq94cTQ81YmFl9vI6/MJlzL7m/csU+0dQqW24cCikJq UAq7UWEMN00aKgIC3/2tDIo5FIIj3KAUe6Sq8v4tNeBTuKaqW5Mtaw7OcOFuRiBVWkg1 oymg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id r14si8385818ejb.283.2021.03.14.01.14.48; Sun, 14 Mar 2021 01:15:10 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235043AbhCNJKn (ORCPT + 99 others); Sun, 14 Mar 2021 05:10:43 -0400 Received: from relay7-d.mail.gandi.net ([217.70.183.200]:34785 "EHLO relay7-d.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234489AbhCNJKg (ORCPT ); Sun, 14 Mar 2021 05:10:36 -0400 X-Originating-IP: 2.7.49.219 Received: from debian.home (lfbn-lyo-1-457-219.w2-7.abo.wanadoo.fr [2.7.49.219]) (Authenticated sender: alex@ghiti.fr) by relay7-d.mail.gandi.net (Postfix) with ESMTPSA id 7201E20002; Sun, 14 Mar 2021 09:10:29 +0000 (UTC) From: Alexandre Ghiti To: Jonathan Corbet , Paul Walmsley , Palmer Dabbelt , Albert Ou , Arnd Bergmann , Andrey Ryabinin , Alexander Potapenko , Dmitry Vyukov , linux-doc@vger.kernel.org, linux-riscv@lists.infradead.org, linux-kernel@vger.kernel.org, kasan-dev@googlegroups.com, linux-arch@vger.kernel.org, linux-mm@kvack.org Cc: Alexandre Ghiti Subject: [PATCH v3 0/3] Move kernel mapping outside the linear mapping Date: Sun, 14 Mar 2021 05:10:24 -0400 Message-Id: <20210314091027.21592-1-alex@ghiti.fr> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org I decided to split sv48 support in small series to ease the review. This patchset pushes the kernel mapping (modules and BPF too) to the last 4GB of the 64bit address space, this allows to: - implement relocatable kernel (that will come later in another patchset) that requires to move the kernel mapping out of the linear mapping to avoid to copy the kernel at a different physical address. - have a single kernel that is not relocatable (and then that avoids the performance penalty imposed by PIC kernel) for both sv39 and sv48. The first patch implements this behaviour, the second patch introduces a documentation that describes the virtual address space layout of the 64bit kernel and the last patch is taken from my sv48 series where I simply added the dump of the modules/kernel/BPF mapping. I removed the Reviewed-by on the first patch since it changed enough from last time and deserves a second look. Changes in v3: - Fix broken nommu build as reported by kernel test robot by protecting the kernel mapping only in 64BIT and MMU configs, by reverting the introduction of load_sz_pmd and by not exporting load_sz/load_pa anymore since they were not initialized in nommu config. Changes in v2: - Fix documentation about direct mapping size which is 124GB instead of 126GB. - Fix SPDX missing header in documentation. - Fix another checkpatch warning about EXPORT_SYMBOL which was not directly below variable declaration. Alexandre Ghiti (3): riscv: Move kernel mapping outside of linear mapping Documentation: riscv: Add documentation that describes the VM layout riscv: Prepare ptdump for vm layout dynamic addresses Documentation/riscv/index.rst | 1 + Documentation/riscv/vm-layout.rst | 63 +++++++++++++++++++++++ arch/riscv/boot/loader.lds.S | 3 +- arch/riscv/include/asm/page.h | 17 ++++++- arch/riscv/include/asm/pgtable.h | 37 ++++++++++---- arch/riscv/include/asm/set_memory.h | 1 + arch/riscv/kernel/head.S | 3 +- arch/riscv/kernel/module.c | 6 +-- arch/riscv/kernel/setup.c | 5 ++ arch/riscv/kernel/vmlinux.lds.S | 3 +- arch/riscv/mm/fault.c | 13 +++++ arch/riscv/mm/init.c | 78 ++++++++++++++++++++++------- arch/riscv/mm/kasan_init.c | 9 ++++ arch/riscv/mm/physaddr.c | 2 +- arch/riscv/mm/ptdump.c | 67 ++++++++++++++++++++----- 15 files changed, 258 insertions(+), 50 deletions(-) create mode 100644 Documentation/riscv/vm-layout.rst -- 2.20.1