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 14EA1C433EF for ; Wed, 13 Jul 2022 16:13:00 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 6239B83FEE; Wed, 13 Jul 2022 18:12:57 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=quarantine dis=none) header.from=ti.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (1024-bit key; unprotected) header.d=ti.com header.i=@ti.com header.b="uXueR8GV"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 1F52C83FDE; Wed, 13 Jul 2022 18:12:55 +0200 (CEST) Received: from lelv0142.ext.ti.com (lelv0142.ext.ti.com [198.47.23.249]) (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 5071884031 for ; Wed, 13 Jul 2022 18:12:52 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=quarantine dis=none) header.from=ti.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=afd@ti.com Received: from lelv0266.itg.ti.com ([10.180.67.225]) by lelv0142.ext.ti.com (8.15.2/8.15.2) with ESMTP id 26DGCnnF002822; Wed, 13 Jul 2022 11:12:49 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1657728769; bh=mkrrZK+PLHM47UwEFBJ33mdRTNbgSWjdOi8bxMVh1z4=; h=From:To:CC:Subject:Date; b=uXueR8GViZev1QGTsi429VfIknJc1AxaO7+5saV95whc5VEnReihpw9/BZZmpkavi GGvihfAHkJIv3detsSWi6C+c4fqM7mLpeEcZBygyeB6BCUjTw1MbG/eLqEuugk7AVE nVdCk+iNHzrs98/VA9GP9uyX+WCL3eapf5t7AR78= Received: from DFLE113.ent.ti.com (dfle113.ent.ti.com [10.64.6.34]) by lelv0266.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 26DGCna6062374 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Wed, 13 Jul 2022 11:12:49 -0500 Received: from DFLE105.ent.ti.com (10.64.6.26) by DFLE113.ent.ti.com (10.64.6.34) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14; Wed, 13 Jul 2022 11:12:49 -0500 Received: from fllv0040.itg.ti.com (10.64.41.20) by DFLE105.ent.ti.com (10.64.6.26) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14 via Frontend Transport; Wed, 13 Jul 2022 11:12:49 -0500 Received: from ula0226330.dal.design.ti.com (ileax41-snat.itg.ti.com [10.172.224.153]) by fllv0040.itg.ti.com (8.15.2/8.15.2) with ESMTP id 26DGCn6N079443; Wed, 13 Jul 2022 11:12:49 -0500 From: Andrew Davis To: Simon Glass , Tom Rini , CC: Andrew Davis Subject: [PATCH] board: ti: am65x: Do not disable SA2UL in DT Date: Wed, 13 Jul 2022 11:12:48 -0500 Message-ID: <20220713161248.10197-1-afd@ti.com> X-Mailer: git-send-email 2.36.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 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 This is no longer needed as the SA2UL can now be shared with Linux. Leave the SA2UL DT node enabled. Signed-off-by: Andrew Davis --- board/ti/am65x/evm.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/board/ti/am65x/evm.c b/board/ti/am65x/evm.c index 7182a8cad1..8a0a506a3e 100644 --- a/board/ti/am65x/evm.c +++ b/board/ti/am65x/evm.c @@ -115,16 +115,6 @@ int ft_board_setup(void *blob, struct bd_info *bd) return ret; } -#if defined(CONFIG_TI_SECURE_DEVICE) - /* Make Crypto HW reserved for secure world use */ - ret = fdt_disable_node(blob, "/bus@100000/crypto@4e00000"); - if (ret < 0) - ret = fdt_disable_node(blob, - "/interconnect@100000/crypto@4E00000"); - if (ret) - printf("%s: disabling SA2UL failed %d\n", __func__, ret); -#endif - return 0; } #endif -- 2.36.1