From patchwork Mon Jun 13 23:25:16 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andreas Dannenberg X-Patchwork-Id: 69970 Delivered-To: patch@linaro.org Received: by 10.140.106.246 with SMTP id e109csp1915869qgf; Tue, 14 Jun 2016 00:46:29 -0700 (PDT) X-Received: by 10.28.218.149 with SMTP id r143mr3412140wmg.102.1465890389168; Tue, 14 Jun 2016 00:46:29 -0700 (PDT) Return-Path: Received: from theia.denx.de (theia.denx.de. [85.214.87.163]) by mx.google.com with ESMTP id i192si2612107wmd.116.2016.06.14.00.46.28; Tue, 14 Jun 2016 00:46:29 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of u-boot-bounces@lists.denx.de designates 85.214.87.163 as permitted sender) client-ip=85.214.87.163; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of u-boot-bounces@lists.denx.de designates 85.214.87.163 as permitted sender) smtp.mailfrom=u-boot-bounces@lists.denx.de Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id C2337A77A6; Tue, 14 Jun 2016 09:46:26 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4-RkwMVCA7cd; Tue, 14 Jun 2016 09:46:26 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id EC514A7646; Tue, 14 Jun 2016 09:38:29 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 134D4A74FB for ; Tue, 14 Jun 2016 01:26:06 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id xBTU8Ef1hZ3K for ; Tue, 14 Jun 2016 01:25:47 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from bear.ext.ti.com (bear.ext.ti.com [198.47.19.11]) by theia.denx.de (Postfix) with ESMTPS id 9B67BA74F1 for ; Tue, 14 Jun 2016 01:25:24 +0200 (CEST) Received: from dlelxv90.itg.ti.com ([172.17.2.17]) by bear.ext.ti.com (8.13.7/8.13.7) with ESMTP id u5DNPKxA019536; Mon, 13 Jun 2016 18:25:20 -0500 Received: from DLEE71.ent.ti.com (dlee71.ent.ti.com [157.170.170.114]) by dlelxv90.itg.ti.com (8.14.3/8.13.8) with ESMTP id u5DNPKOc028908; Mon, 13 Jun 2016 18:25:20 -0500 Received: from dlep32.itg.ti.com (157.170.170.100) by DLEE71.ent.ti.com (157.170.170.114) with Microsoft SMTP Server id 14.3.294.0; Mon, 13 Jun 2016 18:25:20 -0500 Received: from borg.dal.design.ti.com (ileax41-snat.itg.ti.com [10.172.224.153]) by dlep32.itg.ti.com (8.14.3/8.13.8) with ESMTP id u5DNPJRO010718; Mon, 13 Jun 2016 18:25:20 -0500 From: Andreas Dannenberg To: Tom Rini , Date: Mon, 13 Jun 2016 18:25:16 -0500 Message-ID: <1465860316-6600-1-git-send-email-dannenberg@ti.com> X-Mailer: git-send-email 2.7.2 MIME-Version: 1.0 Cc: Sekhar Nori , Tero Kristo , Madan Srinivas , Daniel Allred Subject: [U-Boot] [PATCH] ARM: AM57xx: Enable FIT for HS Devices X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 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" Enable FIT support for AM57xx platforms using the high-security (HS) device variant. Signed-off-by: Andreas Dannenberg --- This patch is based on the the patch series [1] by Lokesh. Although there is currently only 1 device supported by this defconfig the SPL FIT support is needed in preparation for our upcoming secure boot related patch series (which is actually the same reasoning that applies to the AM437x HS-device related patch by Madan [2]). [1] https://www.mail-archive.com/u-boot@lists.denx.de/msg215702.html [2] https://patchwork.ozlabs.org/patch/633961/ configs/am57xx_hs_evm_defconfig | 4 ++++ 1 file changed, 4 insertions(+) -- 2.6.4 _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot diff --git a/configs/am57xx_hs_evm_defconfig b/configs/am57xx_hs_evm_defconfig index ce377cb..6fe97ec 100644 --- a/configs/am57xx_hs_evm_defconfig +++ b/configs/am57xx_hs_evm_defconfig @@ -37,3 +37,7 @@ CONFIG_SYS_NS16550=y CONFIG_USB=y CONFIG_USB_XHCI_HCD=y CONFIG_USB_XHCI_DWC3=y +CONFIG_FIT=y +CONFIG_SPL_OF_LIBFDT=y +CONFIG_SPL_LOAD_FIT=y +CONFIG_OF_LIST="am57xx-beagle-x15"