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 2A304ECAAD8 for ; Sun, 18 Sep 2022 23:03:10 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 28CA284AAC; Mon, 19 Sep 2022 01:03:08 +0200 (CEST) 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="eRIItIKJ"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 7B899849AA; Mon, 19 Sep 2022 01:03:07 +0200 (CEST) Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::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 3DE1784AAC for ; Mon, 19 Sep 2022 01:03:05 +0200 (CEST) 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 dfw.source.kernel.org (Postfix) with ESMTPS id 6F721614E7; Sun, 18 Sep 2022 23:03:03 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id A19A3C433C1; Sun, 18 Sep 2022 23:03:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1663542182; bh=GwXIb0P+MZvojJr6DcFINxTew8cG6dXy3PW0qXbB2X4=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=eRIItIKJPNjTvo3fw8j5EK1wcjY43DxdkDSTeVkPl6FXJPmEI3f9J8vKurAHtZLP3 ydABU6oOWYI/LaWKv1lWlpGVUiH3LQ77WtcvzRSsKL34IyRjpXc87OLCB1vxBHrhaO ZOpXhZIWspdpP+i1UUa6YLT3/zTBlNkP9R0Gu7E4pGApKLYkthlQC9cjbW5meMBsv/ X+0XtwyndaHkPxaJm0ZjUES21ow+rVd7jVJvFx5bmaqfHzcDWMPxAkXsXSsgSp9le4 hBRQkaN1gW7WPpIHoH2V8G/yeeJFoN9aEWI5Lxcel3h4miuoLjxkx6NAjEDTfC66Ai mfxLPIpkjPvBQ== Received: by pali.im (Postfix) id C054DCD5; Mon, 19 Sep 2022 01:02:59 +0200 (CEST) Date: Mon, 19 Sep 2022 01:02:59 +0200 From: Pali =?utf-8?B?Um9ow6Fy?= To: Chris Packham Cc: Stefan Roese , Elad Nachman , Vadym Kochan , Marek =?utf-8?B?QmVow7pu?= , u-boot Subject: Re: [PATCH 7/7] tools: kwboot: Add knowledge of Marvell's TIM Message-ID: <20220918230259.d4od2bc7572uzrys@pali> References: <20220916045423.3635985-1-judge.packham@gmail.com> <20220916045423.3635985-8-judge.packham@gmail.com> <20220916081158.esdez6vjyil24sml@pali> <20220916123655.elzq6f6wsvhv4v4g@pali> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: NeoMutt/20180716 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.6 at phobos.denx.de X-Virus-Status: Clean On Monday 19 September 2022 10:57:10 Chris Packham wrote: > Having looked more into mox-imager (and WtpDownloader) I've realised > that the AlleyCat5 uses something called "TIM" but it's different to > the format used by Armada-3700. I suspect what I'm actually dealing > with is a TIMv0 that pre-dates the version used by Armada-3700. All > the more reason to do something new instead of trying to shoe-horn it > into one of the existing places. I'll probably end up making a fork of > your mvebu64boot and adapting it (mox-imager just does too much). Hello! If that AC5 TIM format is different than A3720 TIM then it really makes sense to create a new tool. Forking mvebu64boot into completely new project seems like the easiest way how to achieve working tool without being afraid to break existing support. Anyway, is not there any Marvell tool for this AC5 TIM format? Like A3720 TBB or WtpDownloader?