From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-14.9 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1,USER_IN_DEF_DKIM_WL autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5DEFBC433E0 for ; Fri, 12 Feb 2021 18:28:57 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 1311164EA1 for ; Fri, 12 Feb 2021 18:28:57 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231290AbhBLS2k (ORCPT ); Fri, 12 Feb 2021 13:28:40 -0500 Received: from linux.microsoft.com ([13.77.154.182]:47086 "EHLO linux.microsoft.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229782AbhBLS2i (ORCPT ); Fri, 12 Feb 2021 13:28:38 -0500 Received: from [192.168.0.104] (c-73-42-176-67.hsd1.wa.comcast.net [73.42.176.67]) by linux.microsoft.com (Postfix) with ESMTPSA id CA96E20B6C40; Fri, 12 Feb 2021 10:27:56 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com CA96E20B6C40 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1613154477; bh=cflwvEQVmR2Liv6dfdrVeSAaocg0bLd1F49bz3eKPjU=; h=Subject:To:Cc:References:From:Date:In-Reply-To:From; b=clVeMuPjnkrNi1QWeejXFkDLfR59r4IhU4i4C1FxfsXzaIyYqoURk4pXCM1pEHuWh iO+L3UR8oGXcIZtNqVSL65uV8wh+RgArEbCqaAynyzLx/5Qh/rzaUmBxRGyogYQ9RP kkSU7JBuQzni0CLZHSBomQflDz5KmNF4TMYftQUo= Subject: Re: [PATCH v17 02/10] of: Add a common kexec FDT setup function To: Rob Herring Cc: Thiago Jung Bauermann , Mimi Zohar , "AKASHI, Takahiro" , Greg Kroah-Hartman , Will Deacon , Joe Perches , Catalin Marinas , Michael Ellerman , James Morse , Sasha Levin , Benjamin Herrenschmidt , Paul Mackerras , Frank Rowand , vincenzo.frascino@arm.com, Mark Rutland , dmitry.kasatkin@gmail.com, James Morris , "Serge E. Hallyn" , Pavel Tatashin , Allison Randal , Masahiro Yamada , Matthias Brugger , Hsin-Yi Wang , tao.li@vivo.com, Christophe Leroy , Prakhar Srivastava , balajib@linux.microsoft.com, linux-integrity@vger.kernel.org, "linux-kernel@vger.kernel.org" , linux-arm-kernel , devicetree@vger.kernel.org, linuxppc-dev References: <20210209182200.30606-1-nramas@linux.microsoft.com> <20210209182200.30606-3-nramas@linux.microsoft.com> <87k0reozwh.fsf@manicouagan.localdomain> <8a3aa3d2-2eba-549a-9970-a2b0fe3586c9@linux.microsoft.com> <55685b61-dac0-2f24-f74a-939acf74a4f2@linux.microsoft.com> From: Lakshmi Ramasubramanian Message-ID: <11aff288-feaa-8e43-fcda-12bc12fbf4cf@linux.microsoft.com> Date: Fri, 12 Feb 2021 10:27:56 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On 2/12/21 10:24 AM, Rob Herring wrote: > On Fri, Feb 12, 2021 at 11:19 AM Lakshmi Ramasubramanian > wrote: >> >> On 2/12/21 6:38 AM, Rob Herring wrote: >>> On Thu, Feb 11, 2021 at 7:17 PM Lakshmi Ramasubramanian >>> wrote: >>>> >>>> On 2/11/21 5:09 PM, Thiago Jung Bauermann wrote: >>>>> >>>>> There's actually a complication that I just noticed and needs to be >>>>> addressed. More below. >>>>> >>>> >>>> <...> >>>> >>>>>> + >>>>>> +/* >>>>>> + * of_kexec_alloc_and_setup_fdt - Alloc and setup a new Flattened Device Tree >>>>>> + * >>>>>> + * @image: kexec image being loaded. >>>>>> + * @initrd_load_addr: Address where the next initrd will be loaded. >>>>>> + * @initrd_len: Size of the next initrd, or 0 if there will be none. >>>>>> + * @cmdline: Command line for the next kernel, or NULL if there will >>>>>> + * be none. >>>>>> + * >>>>>> + * Return: fdt on success, or NULL errno on error. >>>>>> + */ >>>>>> +void *of_kexec_alloc_and_setup_fdt(const struct kimage *image, >>>>>> + unsigned long initrd_load_addr, >>>>>> + unsigned long initrd_len, >>>>>> + const char *cmdline) >>>>>> +{ >>>>>> + void *fdt; >>>>>> + int ret, chosen_node; >>>>>> + const void *prop; >>>>>> + unsigned long fdt_size; >>>>>> + >>>>>> + fdt_size = fdt_totalsize(initial_boot_params) + >>>>>> + (cmdline ? strlen(cmdline) : 0) + >>>>>> + FDT_EXTRA_SPACE; >>>>> >>>>> Just adding 4 KB to initial_boot_params won't be enough for crash >>>>> kernels on ppc64. The current powerpc code doubles the size of >>>>> initial_boot_params (which is normally larger than 4 KB) and even that >>>>> isn't enough. A patch was added to powerpc/next today which uses a more >>>>> precise (but arch-specific) formula: >>>>> >>>>> https://lore.kernel.org/linuxppc-dev/161243826811.119001.14083048209224609814.stgit@hbathini/ >>>>> >>>>> So I believe we need a hook here where architectures can provide their >>>>> own specific calculation for the size of the fdt. Perhaps a weakly >>>>> defined function providing a default implementation which an >>>>> arch-specific file can override (a la arch_kexec_kernel_image_load())? >>>>> >>>>> Then the powerpc specific hook would be the kexec_fdt_totalsize_ppc64() >>>>> function from the patch I linked above. >>>>> >>>> >>>> Do you think it'd better to add "fdt_size" parameter to >>>> of_kexec_alloc_and_setup_fdt() so that the caller can provide the >>>> desired FDT buffer size? >>> >>> Yes, I guess so. But please define the param as extra size, not total >>> size. The kernel command line size addition can be in the common code. >> >> Will do. Just to clarify - >> >> The common code will do: >> >> fdt_totalsize(initial_boot_params) + strlen(cmdline) + extra_fdt_size >> >> The caller will pass "extra_fdt_size" >> ARM64 => 4KB >> PPC64 => fdt_totalsize(initial_boot_params) - which will be updated when >> the patch Thiago had referred to is merged. > > Yes, I'd leave the 4KB in there by default and arm64 use 0. > Sounds good. common: fdt_totalsize(initial_boot_params) + strlen(cmdline) + 0x1000 + extra arm64 => 0 for extra ppc => fdt_totalsize(initial_boot_params) for extra. -lakshmi