From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751971AbcEYTaV (ORCPT ); Wed, 25 May 2016 15:30:21 -0400 Received: from mail-wm0-f51.google.com ([74.125.82.51]:34125 "EHLO mail-wm0-f51.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751424AbcEYTaR (ORCPT ); Wed, 25 May 2016 15:30:17 -0400 Date: Wed, 25 May 2016 20:30:11 +0100 From: Matt Fleming To: Tom Lendacky Cc: Borislav Petkov , Leif Lindholm , Mark Salter , Daniel Kiper , linux-arch@vger.kernel.org, linux-efi@vger.kernel.org, kvm@vger.kernel.org, linux-doc@vger.kernel.org, x86@kernel.org, linux-kernel@vger.kernel.org, kasan-dev@googlegroups.com, linux-mm@kvack.org, iommu@lists.linux-foundation.org, Radim =?utf-8?B?S3LEjW3DocWZ?= , Arnd Bergmann , Jonathan Corbet , Joerg Roedel , Konrad Rzeszutek Wilk , Paolo Bonzini , Ingo Molnar , "H. Peter Anvin" , Andrey Ryabinin , Alexander Potapenko , Thomas Gleixner , Dmitry Vyukov , Ard Biesheuvel Subject: Re: [RFC PATCH v1 10/18] x86/efi: Access EFI related tables in the clear Message-ID: <20160525193011.GC2984@codeblueprint.co.uk> References: <20160426225553.13567.19459.stgit@tlendack-t1.amdoffice.net> <20160426225740.13567.85438.stgit@tlendack-t1.amdoffice.net> <20160510134358.GR2839@codeblueprint.co.uk> <20160510135758.GA16783@pd.tnic> <5734C97D.8060803@amd.com> <57446B27.20406@amd.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <57446B27.20406@amd.com> User-Agent: Mutt/1.5.24+41 (02bc14ed1569) (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 24 May, at 09:54:31AM, Tom Lendacky wrote: > > I looked into this and this would be a large change also to parse tables > and build lists. It occurred to me that this could all be taken care of > if the early_memremap calls were changed to early_ioremap calls. Looking > in the git log I see that they were originally early_ioremap calls but > were changed to early_memremap calls with this commit: > > commit abc93f8eb6e4 ("efi: Use early_mem*() instead of early_io*()") > > Looking at the early_memremap code and the early_ioremap code they both > call __early_ioremap so I don't see how this change makes any > difference (especially since FIXMAP_PAGE_NORMAL and FIXMAP_PAGE_IO are > identical in this case). > > Is it safe to change these back to early_ioremap calls (at least on > x86)? I really don't want to begin mixing early_ioremap() calls and early_memremap() calls for any of the EFI code if it can be avoided. There is slow but steady progress to move more and more of the architecture specific EFI code out into generic code. Swapping early_memremap() for early_ioremap() would be a step backwards, because FIXMAP_PAGE_NORMAL and FIXMAP_PAGE_IO are not identical on ARM/arm64. Could you point me at the patch that in this series that fixes up early_ioremap() to work with mem encrypt/decrypt? I took another (quick) look through but couldn't find it.