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 Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 33348C76196 for ; Thu, 23 Mar 2023 20:00:31 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id E0DF8857F0; Thu, 23 Mar 2023 21:00:28 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="udqHSil4"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id EC69185867; Thu, 23 Mar 2023 21:00:26 +0100 (CET) Received: from sin.source.kernel.org (sin.source.kernel.org [IPv6:2604:1380:40e1:4800::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id BDFD585780 for ; Thu, 23 Mar 2023 21:00:24 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=pali@kernel.org Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by sin.source.kernel.org (Postfix) with ESMTPS id 07392CE1E6C; Thu, 23 Mar 2023 20:00:23 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3FF55C433D2; Thu, 23 Mar 2023 20:00:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1679601621; bh=FAbpHSN+5kOh4oj0NM9LS0i1bt2LQMqM/fxcPLwPGDk=; h=From:To:Cc:Subject:Date:From; b=udqHSil4ULtFO4KiuVKlHauMWm+wXpfYWHe9ewM4X59axDDZvyLHIWrWHe2pAgoRx 6UPRNSwOG87ybJkU97tjBfWjZUtOglRIOKIzrsHMRaOYJQUFyHFQ2KGthMAXfvAtxq 44Azx47Z9v3PhLBqSptjys+CSq5glN97fg0/rqXg+ch+HnAuGNKbCNZdvJYBnrmtS3 C18qIDPRFh2YycPtoBeAaJQgBQrjJgyEQguXg6YFL5tQ3ASea2PSydZ2ArUYYBJzeK pWPefdNEhcWBFhMs5k2VAdhux9eIkrTg2NqSE95NTRy1NAXusgwerSWo+W1KOA4jUo iVGo854RDCbgQ== Received: by pali.im (Postfix) id AA9E571B; Thu, 23 Mar 2023 21:00:18 +0100 (CET) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: Stefan Roese Cc: u-boot@lists.denx.de Subject: [PATCH u-boot-mvebu] tools: kwboot: Document information about NOR XIP Date: Thu, 23 Mar 2023 21:00:07 +0100 Message-Id: <20230323200007.5312-1-pali@kernel.org> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.8 at phobos.denx.de X-Virus-Status: Clean Signed-off-by: Pali Rohár --- tools/kwboot.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/kwboot.c b/tools/kwboot.c index 2b92966919da..db917708a8e8 100644 --- a/tools/kwboot.c +++ b/tools/kwboot.c @@ -61,7 +61,9 @@ * SPI-NOR or parallel-NOR. Despite the type name it really can be stored on * parallel-NOR and cannot be stored on other SPI devices, like SPI-NAND. * So it should have been named NOR image, not SPI image. This image type - * supports XIP - Execute In Place directly from NOR memory. + * supports XIP - Execute In Place directly from NOR memory. Destination + * address of the XIP image is set to 0xFFFFFFFF and execute address to the + * absolute offset in bytes from the beginning of NOR memory. * * - IBR_HDR_NAND_ID (0x8B): * NAND image can be stored either at any 2 MB aligned offset in the first -- 2.20.1