From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43005) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ga9kx-0004tQ-0N for qemu-devel@nongnu.org; Thu, 20 Dec 2018 20:37:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ga9kt-0005Pf-2s for qemu-devel@nongnu.org; Thu, 20 Dec 2018 20:37:39 -0500 Received: from mail.cn.fujitsu.com ([183.91.158.132]:12779 helo=heian.cn.fujitsu.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ga9ks-0005ML-MX for qemu-devel@nongnu.org; Thu, 20 Dec 2018 20:37:35 -0500 References: <1544063533-10139-1-git-send-email-lizhijian@cn.fujitsu.com> From: Li Zhijian Message-ID: <694e0ef6-df34-4965-7cfe-223b8e5c3c32@cn.fujitsu.com> Date: Fri, 21 Dec 2018 09:37:28 +0800 MIME-Version: 1.0 In-Reply-To: <1544063533-10139-1-git-send-email-lizhijian@cn.fujitsu.com> Content-Language: en-US Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH for-4.0 v4 0/4] allow to load initrd below 4G for recent kernel List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, mst@redhat.com, peter.maydell@linaro.org Cc: philip.li@intel.com, zhijianx.li@intel.com, philmd@redhat.com ping On 12/6/18 10:32, Li Zhijian wrote: > Long long ago, linux kernel has supported up to 4G initrd, but it's header > still hard code to allow loading initrd below 2G only. > cutting from arch/x86/head.S: > # (Header version 0x0203 or later) the highest safe address for the contents > # of an initrd. The current kernel allows up to 4 GB, but leave it at 2 GB to > # avoid possible bootloader bugs. > > In order to support more than 2G initrd, qemu must allow loading initrd > above 2G address. Luckly, recent kernel introduced a new field to linux header > named xloadflags:XLF_CAN_BE_LOADED_ABOVE_4G which tells bootload an optional > and safe address to load initrd. > > Current QEMU/BIOS always loads initrd below below_4g_mem_size which always > less than 4G, so here limiting initrd_max to 4G - 1 simply is enough if > this bit is set. > > Default roms(Seabios + optionrom(linuxboot_dma)) works as expected with this > patchset. > > changes: > V4: > - add Reviwed-by tag to 1/4 and 2/4 > - use scripts/update-linux-headers.sh to import bootparam.h > - minor fix at commit log > V3: > - rebase code basing on http://patchwork.ozlabs.org/cover/1005990 and > https://patchew.org/QEMU/20181122133507.30950-1-peter.maydell@linaro.org > - add new patch 3/4 to import header bootparam.h (Michael S. Tsirkin) > > V2: add 2 patches(3/5, 4/5) to fix potential loading issue. > > Li Zhijian (4): > unify len and addr type for memory/address APIs > refactor load_image_size > i386: import & use bootparam.h > i386: allow to load initrd below 4G for recent linux > > exec.c | 47 ++++++++++++++-------------- > hw/core/loader.c | 11 +++---- > hw/i386/pc.c | 18 ++++++----- > include/exec/cpu-all.h | 2 +- > include/exec/cpu-common.h | 8 ++--- > include/exec/memory.h | 22 ++++++------- > include/standard-headers/asm-x86/bootparam.h | 34 ++++++++++++++++++++ > scripts/update-linux-headers.sh | 4 +++ > 8 files changed, 92 insertions(+), 54 deletions(-) > create mode 100644 include/standard-headers/asm-x86/bootparam.h >