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 67D2DEB64D9 for ; Mon, 10 Jul 2023 14:56:29 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 6D496866F2; Mon, 10 Jul 2023 16:56:23 +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="rZ8JEwiE"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 95B3286700; Mon, 10 Jul 2023 16:56:21 +0200 (CEST) Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) (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 1B3CB8670B for ; Mon, 10 Jul 2023 16:56:19 +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 ED9D36102A; Mon, 10 Jul 2023 14:56:17 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id BD196C433CA; Mon, 10 Jul 2023 14:56:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1689000977; bh=51TEa0bEOxCAUwJ8+aiHF12SEzb7xKLVfDwfQptQ8YQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=rZ8JEwiENf0cabknmX7Plzwn3ukLGl/Ge8PDpelmTwHacSjf/4VLXhQkCi04YNUWj Xt2eheXGWdunlQSxPnNAwj/IdEUjNXqQeSb8u62etHi2xQx57oWrf0TSBboH4RMLcH AqEaDYmzmGO8dJ/+7bEvHCEUkkCadYxqEsqkKvP2b4kg5rlRRYImyU7ni3/A44pFCt IIpzyLA3loIxpQyLR9pcuk3oKF1qmGETVX/A2BhJM91/RZmPPxNP1ljtvFn7j4kC3E v6CHfvPO66vUkr5H84JNiP2LQLuuUuUqddRxoVTQHLe0seruJnK8scN56vTaKY/HZf O/ZxjsFT1xZZg== From: Roger Quadros To: nm@ti.com, vigneshr@ti.com, trini@konsulko.com Cc: srk@ti.com, u-boot@lists.denx.de, Roger Quadros Subject: [PATCH 2/2] board: ti: am64x: Recognize AM64-HSEVM Date: Mon, 10 Jul 2023 17:56:07 +0300 Message-Id: <20230710145607.128725-3-rogerq@kernel.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230710145607.128725-1-rogerq@kernel.org> References: <20230710145607.128725-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 --- 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