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 A4BADC433F5 for ; Wed, 2 Mar 2022 10:54:49 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id B65E583CB4; Wed, 2 Mar 2022 11:53:56 +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="WAYQDplt"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 452B283C70; Wed, 2 Mar 2022 11:53:26 +0100 (CET) Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) (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 D0C5183CA3 for ; Wed, 2 Mar 2022 11:52:52 +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 ams.source.kernel.org (Postfix) with ESMTPS id 68147B81F74; Wed, 2 Mar 2022 10:52:52 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id E873CC340EF; Wed, 2 Mar 2022 10:52:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1646218371; bh=lGzUfKQyflWvGoo668hyH07uPeNBMXzFT0Q0sFuj4GY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=WAYQDplt4iRmfer9zC4FXfedUh0qM+dd1PGrXF36woZYlzAJyyI0w8FsZKo6D8Q95 NeCK4RygAlVhAupzSQxfBSjtFMCoutsLHgTYjWr3r4hCyLGsnaWLO1IFZJocaY8D+G /x4lP7eaxb14jQwJQ1Tlwktt/wfjCM/+CJ+5II7BW+VRPLjBA+5aRA+gvs5/WZDZ0z dvCuvUrxU0XhGHrDyfCfs2IPx8I4rBk1InnahJROiczD0ZOwsp38U+mEQw0/NMnI75 MLfJxh1uyFDuKURbUGl8zgNiBjcaphrPj6Z3HzYGPBxZa/X5qZXAyOz1+h/flFCwt4 PW7zu2DGt/Sjw== Received: by pali.im (Postfix) id 9EE46677; Wed, 2 Mar 2022 11:52:50 +0100 (CET) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: Stefan Roese , =?UTF-8?q?Marek=20Beh=C3=BAn?= , Tony Dinh Cc: u-boot@lists.denx.de Subject: [PATCH u-boot-marvell 09/10] tools: kwboot: Update doc about Avanta Date: Wed, 2 Mar 2022 11:49:26 +0100 Message-Id: <20220302104927.18607-10-pali@kernel.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20220302104927.18607-1-pali@kernel.org> References: <20220302104927.18607-1-pali@kernel.org> 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.5 at phobos.denx.de X-Virus-Status: Clean Testes proved that current kwboot version supports also Avanta SoCs. It looks like that Avanta SoCs are using same kwbimage format as Armada. Signed-off-by: Pali Rohár Tested-by: Tony Dinh --- doc/kwboot.1 | 2 +- tools/kwboot.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/kwboot.1 b/doc/kwboot.1 index bda049bde56f..f555ff26a259 100644 --- a/doc/kwboot.1 +++ b/doc/kwboot.1 @@ -11,7 +11,7 @@ kwboot \- Boot Marvell Kirkwood (and others 32-bit) SoCs over a serial link. .SH "DESCRIPTION" The \fBkwboot\fP program boots boards based on Marvell's 32-bit -platforms including Kirkwood, Dove, A370, AXP, A375, A38x +platforms including Kirkwood, Dove, Avanta, A370, AXP, A375, A38x and A39x over their integrated UART. Boot image files will typically contain a second stage boot loader, such as U-Boot. The image file must conform to Marvell's BootROM firmware image format diff --git a/tools/kwboot.c b/tools/kwboot.c index 11aca00bf1e6..cd1879246a85 100644 --- a/tools/kwboot.c +++ b/tools/kwboot.c @@ -1,7 +1,7 @@ /* * Boot a Marvell SoC, with Xmodem over UART0. - * supports Kirkwood, Dove, Armada 370, Armada XP, Armada 375, Armada 38x and - * Armada 39x + * supports Kirkwood, Dove, Avanta, Armada 370, Armada XP, Armada 375, + * Armada 38x and Armada 39x. * * (c) 2012 Daniel Stodden * (c) 2021 Pali Rohár @@ -1990,7 +1990,7 @@ kwboot_usage(FILE *stream, char *progname) progname); fprintf(stream, "\n"); fprintf(stream, - " -b : boot with preamble (Kirkwood, Armada 370/XP/375/38x/39x)\n"); + " -b : boot with preamble (Kirkwood, Avanta, Armada 370/XP/375/38x/39x)\n"); fprintf(stream, " -D : boot without preamble (Dove)\n"); fprintf(stream, " -b: enter xmodem boot mode\n"); -- 2.20.1