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 82304C41513 for ; Thu, 3 Aug 2023 16:07:12 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 90FCC86CCE; Thu, 3 Aug 2023 18:07:03 +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="kZBqAyx4"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id D81BF86CCE; Thu, 3 Aug 2023 18:07:02 +0200 (CEST) Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id D1F5686CBC for ; Thu, 3 Aug 2023 18:07:00 +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=rogerq@kernel.org Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 8D7CB61E21; Thu, 3 Aug 2023 16:06:59 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B5C29C433C7; Thu, 3 Aug 2023 16:06:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1691078819; bh=foHyimfT1vaE4zhhh+Po4FNV4lRI3R6o4SgRCmtACj8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=kZBqAyx4mPJ3RNQtDqfNtuCOjm7mEm4XyiFGJpuC0LA3MVy5Vn7BKiggtnZpTW4YP JvPTt0e0UVWBOVutnOmpxKJvLljzqJ5DZWTMN7NtPjc6XhBCc7xSIsh8Y21yxz3+ku IBw3AdbSPPEnmuUa3B2YKUr8qJ8xyjBTNWMgcrb880WmO2yZGC5xEgRv2gK8/9eO9n yptVHnv6msL4T0u0WPuWv8+14rfLxEg8HviW1+GbF1C/F+SxYM3ItHR6V0ORRlwZ7p l1YVSUWfQwuIliKTzHcdEY6GoQ9ldj9onyhOkz4norRK5Ht/6+z42mMYrfl4xTD633 ckwm57GIKuI9A== From: Roger Quadros To: trini@konsulko.com Cc: nm@ti.com, vigneshr@ti.com, srk@ti.com, r-gunasekaran@ti.com, s-vadapalli@ti.com, u-boot@lists.denx.de, Roger Quadros , Andrew Davis Subject: [PATCH v4 1/4] board: ti: am64x: Recognize AM64-HSEVM Date: Thu, 3 Aug 2023 19:06:47 +0300 Message-Id: <20230803160650.167279-2-rogerq@kernel.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230803160650.167279-1-rogerq@kernel.org> References: <20230803160650.167279-1-rogerq@kernel.org> MIME-Version: 1.0 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 AM64-HSEVM is AM64-GPEVM with High Security Device. Gets rid of "Unidentified board claims AM64-HSEVM in eeprom header". Signed-off-by: Roger Quadros Acked-by: Andrew Davis --- board/ti/am64x/evm.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/board/ti/am64x/evm.c b/board/ti/am64x/evm.c index 96f4e3013a..a080b2b0d2 100644 --- a/board/ti/am64x/evm.c +++ b/board/ti/am64x/evm.c @@ -18,7 +18,8 @@ #include "../common/board_detect.h" -#define board_is_am64x_gpevm() board_ti_k3_is("AM64-GPEVM") +#define board_is_am64x_gpevm() (board_ti_k3_is("AM64-GPEVM") || \ + board_ti_k3_is("AM64-HSEVM")) #define board_is_am64x_skevm() (board_ti_k3_is("AM64-SKEVM") || \ board_ti_k3_is("AM64B-SKEVM")) -- 2.34.1