Received: by 2002:a25:1506:0:0:0:0:0 with SMTP id 6csp175650ybv; Tue, 4 Feb 2020 18:58:13 -0800 (PST) X-Google-Smtp-Source: APXvYqxhdV+NnG3q0XOc/OqW5IP/iVx+9QZZl2MZjZPGk8mOUMQKFNbL4WLwx6oQ+g0BqEpCI9xp X-Received: by 2002:aca:3017:: with SMTP id w23mr1425947oiw.152.1580871493823; Tue, 04 Feb 2020 18:58:13 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1580871493; cv=none; d=google.com; s=arc-20160816; b=nxcHFF6+pL/XSI7xFhZfSM2UvTEl1by+44LwlzIuYvQz8AHG1BEQlG6FGM5mESHlX3 o/RfYcVJjlr3TvlVD6t9dlRtNqrhbIRaamDjyj3PGx2O8vdZ9UTBpk1LNUQ1asp+eVui ARoh3c/pE9F/qElWAfAqmwvdG+YTEACgkysk320VZ+SnmVatHWyYGk9CIW5PTuw4mH6D WSqnyiPZx3eSb2Ta9cASoQ0SggrrJZ/tPbh6F2+iEcKV8QZsIiqsTR68BNXOSElZ1a9b orCJ8BeXP0HdzGNHUd4LZ0/sAlF1P+KlgjYFgVgQtcnguGdFc2oGufNrl7+FcOOHEmTj VNIg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from; bh=y+m6JYWyOYW02JjCNvDsTgSrcKD1dWp04CkxOTMlzvQ=; b=MwSvo99jIr2tpai8Yac8obIgq/IFI/zGEJYgyws2zKXyUXwgeT3khMdspGP5ZtVE1Q VGdMtb41n+69eVeQ00LF7ON3HwG/hCvQSDfaf2mDFqBKE6TpK8hqiWgvqHzHWiASp4+X qNTlloimno/iZxSnfgNZ8Ku7blob9ETI9m/YoMB1yaMKd2hWnaRCISOoSaNM46nvc1oT tGDhI2z+LYYR07/6xYHH5LJJRCeDnlE+C2Of/sGgLcDr8Dd6wzL07spBFUIZaAdGKKny Ov0S+/Q11Pnd1gEKtoZA9UcBISUIg0SfuMTRF8JUeMzHy6lTRlGTBuW2RsbG84GHlysb PMxg== 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 5si11975994oiy.102.2020.02.04.18.58.01; Tue, 04 Feb 2020 18:58:13 -0800 (PST) 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 S1727941AbgBEC4s (ORCPT + 99 others); Tue, 4 Feb 2020 21:56:48 -0500 Received: from szxga05-in.huawei.com ([45.249.212.191]:9696 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1727850AbgBEC4l (ORCPT ); Tue, 4 Feb 2020 21:56:41 -0500 Received: from DGGEMS406-HUB.china.huawei.com (unknown [172.30.72.58]) by Forcepoint Email with ESMTP id 8B24BB11F14C5F84986E; Wed, 5 Feb 2020 10:56:36 +0800 (CST) Received: from huawei.com (10.175.124.28) by DGGEMS406-HUB.china.huawei.com (10.3.19.206) with Microsoft SMTP Server id 14.3.439.0; Wed, 5 Feb 2020 10:56:28 +0800 From: Jason Yan To: , , , , , , , , , CC: , , Jason Yan Subject: [PATCH v2 2/6] powerpc/fsl_booke/64: introduce reloc_kernel_entry() helper Date: Wed, 5 Feb 2020 10:55:23 +0800 Message-ID: <20200205025527.28640-3-yanaijie@huawei.com> X-Mailer: git-send-email 2.17.2 In-Reply-To: <20200205025527.28640-1-yanaijie@huawei.com> References: <20200205025527.28640-1-yanaijie@huawei.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.175.124.28] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Like the 32bit code, we introduce reloc_kernel_entry() helper to prepare for the KASLR 64bit version. And move the C declaration of this function out of CONFIG_PPC32 and use long instead of int for the parameter 'addr'. Signed-off-by: Jason Yan Cc: Scott Wood Cc: Diana Craciun Cc: Michael Ellerman Cc: Christophe Leroy Cc: Benjamin Herrenschmidt Cc: Paul Mackerras Cc: Nicholas Piggin Cc: Kees Cook --- arch/powerpc/kernel/exceptions-64e.S | 13 +++++++++++++ arch/powerpc/mm/mmu_decl.h | 3 ++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/arch/powerpc/kernel/exceptions-64e.S b/arch/powerpc/kernel/exceptions-64e.S index e4076e3c072d..1b9b174bee86 100644 --- a/arch/powerpc/kernel/exceptions-64e.S +++ b/arch/powerpc/kernel/exceptions-64e.S @@ -1679,3 +1679,16 @@ _GLOBAL(setup_ehv_ivors) _GLOBAL(setup_lrat_ivor) SET_IVOR(42, 0x340) /* LRAT Error */ blr + +/* + * Return to the start of the relocated kernel and run again + * r3 - virtual address of fdt + * r4 - entry of the kernel + */ +_GLOBAL(reloc_kernel_entry) + mfmsr r7 + rlwinm r7, r7, 0, ~(MSR_IS | MSR_DS) + + mtspr SPRN_SRR0,r4 + mtspr SPRN_SRR1,r7 + rfi diff --git a/arch/powerpc/mm/mmu_decl.h b/arch/powerpc/mm/mmu_decl.h index 8e99649c24fc..3e1c85c7d10b 100644 --- a/arch/powerpc/mm/mmu_decl.h +++ b/arch/powerpc/mm/mmu_decl.h @@ -140,9 +140,10 @@ extern void adjust_total_lowmem(void); extern int switch_to_as1(void); extern void restore_to_as0(int esel, int offset, void *dt_ptr, int bootcpu); void create_kaslr_tlb_entry(int entry, unsigned long virt, phys_addr_t phys); -void reloc_kernel_entry(void *fdt, int addr); extern int is_second_reloc; #endif + +void reloc_kernel_entry(void *fdt, long addr); extern void loadcam_entry(unsigned int index); extern void loadcam_multi(int first_idx, int num, int tmp_idx); -- 2.17.2