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 B4881C001DB for ; Sat, 5 Aug 2023 08:15:05 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id AA8AC86768; Sat, 5 Aug 2023 10:14:55 +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="KWyS2kZR"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 0AF928666E; Sat, 5 Aug 2023 10:14:54 +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 EEE358666E for ; Sat, 5 Aug 2023 10:14:51 +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 446F660B8D; Sat, 5 Aug 2023 08:14:50 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 703C3C433C8; Sat, 5 Aug 2023 08:14:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1691223289; bh=nTSJlXeiNHqQ6pPt0+IiYqsBkLkJMzlhyC/rXlBNDkE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=KWyS2kZRA/jYaLdKu+C1CSUTz5n72YLka/jFlc1vn01hkL+elK164GxBLr73dCPKz 5tZ7oLDd34X5yxjP63/a0Oh5JFkjbtBVP8HXjFxKKqjEYmxC6vdPrIPZjcDvsFo5qC /yaNpWlxpQrc23Rs7QVtNH01BNO7LpzgIAkhUdUHgwt97W7pv7xTyM3crOvIyr5krs dC3iuxpLXIukqZ1Yf+1pgN7AEjsiLSx+i5RNpcFg4bRs+hhTjSHpja89lyztE1TYeS +cMbISC7JNaE1pNlR+joKc/BevN8Pz+UPFAKU6jD/GqwlKrcHcx8qfUZxHPy0cQrKQ xCdXG3Ft+m1fA== 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 v5 1/4] board: ti: am64x: Recognize AM64-HSEVM Date: Sat, 5 Aug 2023 11:14:37 +0300 Message-Id: <20230805081440.7045-2-rogerq@kernel.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230805081440.7045-1-rogerq@kernel.org> References: <20230805081440.7045-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 Reviewed-by: Nishanth Menon Tested-by: Nishanth Menon #SK-AM64B --- 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