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 55287C433EF for ; Sat, 9 Apr 2022 03:56:55 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 662A083DE1; Sat, 9 Apr 2022 05:56:53 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=fail (p=none dis=none) header.from=rock-chips.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Received: by phobos.denx.de (Postfix, from userid 109) id 1650F83DEA; Sat, 9 Apr 2022 05:56:51 +0200 (CEST) Received: from mail-m17664.qiye.163.com (mail-m17664.qiye.163.com [59.111.176.64]) (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 A367783DDD for ; Sat, 9 Apr 2022 05:56:48 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=rock-chips.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=kever.yang@rock-chips.com Received: from [192.168.0.115] (unknown [112.49.233.126]) by mail-m17664.qiye.163.com (Hmail) with ESMTPA id 49D5C140170; Sat, 9 Apr 2022 11:56:36 +0800 (CST) Message-ID: <60474c09-d64e-371a-99f2-9ab78a64af32@rock-chips.com> Date: Sat, 9 Apr 2022 11:56:35 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.7.0 Subject: Re: [PATCH v9 15/16] rockchip: tools: add rk3066 support to rkcommon.c Content-Language: en-US To: Johan Jonker Cc: sjg@chromium.org, philipp.tomsich@vrull.eu, lukma@denx.de, seanga2@gmail.com, u-boot@lists.denx.de References: <20220404141926.6085-1-jbx6244@gmail.com> <20220404141926.6085-16-jbx6244@gmail.com> From: Kever Yang In-Reply-To: <20220404141926.6085-16-jbx6244@gmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-HM-Spam-Status: e1kfGhgUHx5ZQUtXWQgPGg8OCBgUHx5ZQUlOS1dZCBgUCR5ZQVlLVUtZV1 kWDxoPAgseWUFZKDYvK1lXWShZQUhPN1dZLVlBSVdZDwkaFQgSH1lBWRodGk1WHkkZSEhDHUlJHk 4dVRMBExYaEhckFA4PWVdZFhoPEhUdFFlBWU9LSFVKSktISkxVS1kG X-HM-Sender-Digest: e1kMHhlZQR0aFwgeV1kSHx4VD1lBWUc6Phw6SCo6Mj5OK0wXSzZPNAwe NxgaChdVSlVKTU9CT0xNTkJNTEpOVTMWGhIXVRAeDR4JVQIaFRw7CRQYEFYYExILCFUYFBZFWVdZ EgtZQVlKSklVT0JVSUhIVUpJTVlXWQgBWUFJSUJCNwY+ X-HM-Tid: 0a800c777304da2fkuws49d5c140170 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 On 2022/4/4 22:19, Johan Jonker wrote: > Add rk3066 support to rkcommon.c > > Signed-off-by: Johan Jonker This patch should be before the patch add board and defconfig suuport. For the change: Reviewed-by: Kever Yang Thanks, - Kever > --- > tools/rkcommon.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/tools/rkcommon.c b/tools/rkcommon.c > index 29f2676c19..860785f839 100644 > --- a/tools/rkcommon.c > +++ b/tools/rkcommon.c > @@ -123,6 +123,7 @@ struct spl_info { > static struct spl_info spl_infos[] = { > { "px30", "RK33", 0x2800, false, RK_HEADER_V1 }, > { "rk3036", "RK30", 0x1000, false, RK_HEADER_V1 }, > + { "rk3066", "RK30", 0x8000 - 0x800, true, RK_HEADER_V1 }, > { "rk3128", "RK31", 0x1800, false, RK_HEADER_V1 }, > { "rk3188", "RK31", 0x8000 - 0x800, true, RK_HEADER_V1 }, > { "rk322x", "RK32", 0x8000 - 0x1000, false, RK_HEADER_V1 },