Received: by 2002:a25:8b12:0:0:0:0:0 with SMTP id i18csp340768ybl; Fri, 30 Aug 2019 00:11:42 -0700 (PDT) X-Google-Smtp-Source: APXvYqxKaSmwmmf8MIVljsMWVFWg7Wg/Ynek4lAEzSpkGbyHH4sGJJy21ShiQPGljQjGeuVKC5na X-Received: by 2002:a63:e907:: with SMTP id i7mr11631984pgh.84.1567149102491; Fri, 30 Aug 2019 00:11:42 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1567149102; cv=none; d=google.com; s=arc-20160816; b=n/keQ3e0bbNArwzlYRzXoxYu9j9GlQ+cuHTHx9tY4uUbmzq7gmkhaUT+TfTBRYxtbF jXKiLfJdVsXyoEekQ19CdOtr2vr8wuXnAHUjQPVqfPyg8kmSRSpIK2BkWwE2IYO9a0Ww cfKGvZfkTAinnxGWMB6rgPPLFz09WONNMI8flWpf5ADDHoSTlz7ByT7SXJa4276dWTUf 5JG7XkIvW8fnawmkLRbaHUZ7AgH3rP6sQnwSeAaHijZFCf9CwwVoHs2pZfjt+yw3e2ca SRxLHY4AoDR134sB+onwZJjhq4kj+Q8vGFIurHdpW7Yl0iqQOAz3HCKonm2OjndVE+Y6 OlRw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=/BPCQIIyHqO7Aa6AlUFwlHomq+lYRmQB+GOx0Y/YlIo=; b=cGOwaEGwUTj+hhrwlzmBxlvBYqiWywO3MdvCVsyiqsCl5dwaqijxzYslZx0VeXSQAO evzOIMJ8HkxLd5FF2ejUBAo/vwY5rbllxvr0W09HRVU9BcLUpdd2tQ9TKnkoyRSNmIrV mU+RPymb1y4VJfaaEFNJXBFGhSTGfj/R8/AJdcvxKWwjOZBzENNku7viLzr+wtDmnO/I U7G9Kq76rzDgWSoDfNtmpBPXkU8EfyljyOzWaHNf5vMxEhhUz1zZj+ahI/Dr3qm6t4h7 Gvgtl4iurLXGj+RmTnHuLRH7+26gehFm8fmZhGgYy1lsCET15SH5mo3qGTK52UM5fpAE ILEQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id g17si3796087pgd.357.2019.08.30.00.11.27; Fri, 30 Aug 2019 00:11:42 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728129AbfH3HJD (ORCPT + 99 others); Fri, 30 Aug 2019 03:09:03 -0400 Received: from szxga07-in.huawei.com ([45.249.212.35]:39958 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1727963AbfH3HJC (ORCPT ); Fri, 30 Aug 2019 03:09:02 -0400 Received: from DGGEMS401-HUB.china.huawei.com (unknown [172.30.72.58]) by Forcepoint Email with ESMTP id 2998F6AC2362E99A6B72; Fri, 30 Aug 2019 15:09:01 +0800 (CST) Received: from localhost.localdomain.localdomain (10.175.113.25) by DGGEMS401-HUB.china.huawei.com (10.3.19.201) with Microsoft SMTP Server id 14.3.439.0; Fri, 30 Aug 2019 15:08:51 +0800 From: Chen Zhou To: , , , , , , CC: , , , , , Chen Zhou Subject: [PATCH v6 2/4] arm64: kdump: reserve crashkenel above 4G for crash dump kernel Date: Fri, 30 Aug 2019 15:11:58 +0800 Message-ID: <20190830071200.56169-3-chenzhou10@huawei.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20190830071200.56169-1-chenzhou10@huawei.com> References: <20190830071200.56169-1-chenzhou10@huawei.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7BIT Content-Type: text/plain; charset=US-ASCII X-Originating-IP: [10.175.113.25] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Crashkernel=X tries to reserve memory for the crash dump kernel under 4G. If crashkernel=X,low is specified simultaneously, reserve spcified size low memory for crash kdump kernel devices firstly and then reserve memory above 4G. Signed-off-by: Chen Zhou --- arch/arm64/include/asm/kexec.h | 3 +++ arch/arm64/kernel/setup.c | 8 +++++++- arch/arm64/mm/init.c | 31 +++++++++++++++++++++++++++++-- 3 files changed, 39 insertions(+), 3 deletions(-) diff --git a/arch/arm64/include/asm/kexec.h b/arch/arm64/include/asm/kexec.h index 12a561a..88279a9 100644 --- a/arch/arm64/include/asm/kexec.h +++ b/arch/arm64/include/asm/kexec.h @@ -25,6 +25,9 @@ #define KEXEC_ARCH KEXEC_ARCH_AARCH64 +/* 2M alignment for crash kernel regions */ +#define CRASH_ALIGN SZ_2M + #ifndef __ASSEMBLY__ /** diff --git a/arch/arm64/kernel/setup.c b/arch/arm64/kernel/setup.c index 9c4bad7..2ead608 100644 --- a/arch/arm64/kernel/setup.c +++ b/arch/arm64/kernel/setup.c @@ -231,7 +231,13 @@ static void __init request_standard_resources(void) kernel_data.end <= res->end) request_resource(res, &kernel_data); #ifdef CONFIG_KEXEC_CORE - /* Userspace will find "Crash kernel" region in /proc/iomem. */ + /* + * Userspace will find "Crash kernel" region in /proc/iomem. + * Note: the low region is renamed as Crash kernel (low). + */ + if (crashk_low_res.end && crashk_low_res.start >= res->start && + crashk_low_res.end <= res->end) + request_resource(res, &crashk_low_res); if (crashk_res.end && crashk_res.start >= res->start && crashk_res.end <= res->end) request_resource(res, &crashk_res); diff --git a/arch/arm64/mm/init.c b/arch/arm64/mm/init.c index f3c7952..c99f845 100644 --- a/arch/arm64/mm/init.c +++ b/arch/arm64/mm/init.c @@ -64,6 +64,7 @@ static void __init reserve_crashkernel(void) { unsigned long long crash_base, crash_size; int ret; + phys_addr_t crash_max = ARCH_LOW_ADDRESS_LIMIT; ret = parse_crashkernel(boot_command_line, memblock_phys_mem_size(), &crash_size, &crash_base); @@ -71,12 +72,38 @@ static void __init reserve_crashkernel(void) if (ret || !crash_size) return; + ret = reserve_crashkernel_low(); + if (!ret && crashk_low_res.end) { + /* + * If crashkernel=X,low specified, there may be two regions, + * we need to make some changes as follows: + * + * 1. rename the low region as "Crash kernel (low)" + * In order to distinct from the high region and make no effect + * to the use of existing kexec-tools, rename the low region as + * "Crash kernel (low)". + * + * 2. change the upper bound for crash memory + * Set MEMBLOCK_ALLOC_ACCESSIBLE upper bound for crash memory. + * + * 3. mark the low region as "nomap" + * The low region is intended to be used for crash dump kernel + * devices, just mark the low region as "nomap" simply. + */ + const char *rename = "Crash kernel (low)"; + + crashk_low_res.name = rename; + crash_max = MEMBLOCK_ALLOC_ACCESSIBLE; + memblock_mark_nomap(crashk_low_res.start, + resource_size(&crashk_low_res)); + } + crash_size = PAGE_ALIGN(crash_size); if (crash_base == 0) { /* Current arm64 boot protocol requires 2MB alignment */ - crash_base = memblock_find_in_range(0, ARCH_LOW_ADDRESS_LIMIT, - crash_size, SZ_2M); + crash_base = memblock_find_in_range(0, crash_max, crash_size, + SZ_2M); if (crash_base == 0) { pr_warn("cannot allocate crashkernel (size:0x%llx)\n", crash_size); -- 2.7.4