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 60FA2C433F5 for ; Mon, 9 May 2022 07:29:53 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 183C483EFA; Mon, 9 May 2022 09:29:50 +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="GJPpDI1W"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 98B6983DB0; Mon, 9 May 2022 09:29:48 +0200 (CEST) Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) (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 EAAF9839A8 for ; Mon, 9 May 2022 09:29:45 +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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 77FC1B80FBC; Mon, 9 May 2022 07:29:45 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6051EC385A8; Mon, 9 May 2022 07:29:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1652081384; bh=r3ZVb4D79T2E35IfCUPX4nO/kmqlE/h60T7wyafQFsM=; h=From:To:Cc:Subject:Date:From; b=GJPpDI1WEUrRYkuXOiPV3jnLLiVWXCablGtuXoT0dKOm8rNui1wd9EOHPx3ofBbUv 1sYPXwAJs2Ky6qZZbNRXngY8c+4N9NSVEjc5LO+vTY58/G+c5gKlbJ2rO3gDGCrtMB 1PSNv5AeH3H3KIKeRDWr4oe3EyvenQCUDc1HQGkmtIshkxrPePiXpOABAuKoqEKk1J zgpBBvlI1TLp3IgMQ+3JvYdFi3H16SXS6S9/VudNHr6jTP0XfTObzh7SwwPnAOF/N+ vJu4xsK3Bttl3bLjThiH8IX6v4QBlGGODKtatFXCeRZZRH9pkZJ7qcisiJxNKS0fFM 8q1vyc/FfJeug== From: Roger Quadros To: sjg@chromium.org, vigneshr@ti.com, nm@ti.com Cc: trini@konsulko.com, praneeth@ti.com, u-boot@lists.denx.de, Roger Quadros Subject: [u-boot PATCH 0/3] k3-am642-evm-u-boot: Use binman to generate u-boot.img and tispl.bin Date: Mon, 9 May 2022 10:29:33 +0300 Message-Id: <20220509072936.12899-1-rogerq@kernel.org> X-Mailer: git-send-email 2.17.1 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.5 at phobos.denx.de X-Virus-Status: Clean Hi, This series introduces ti-secure entry type for binman. It switches from using custom tool tools/k3_fit_atf.sh to binman for generating boot images for AM64 for both HS and non-HS devices. cheers, -roger Roger Quadros (3): tools: binman: add ti-secure entry type tools/fdtgrep: Include __symbols__ table k3-am642-evm-u-boot: Use binman to generate u-boot.img and tispl.bin Makefile | 1 + arch/arm/dts/k3-am642-evm-binman.dtsi | 230 ++++++++++++++++++++++++++ arch/arm/dts/k3-am642-evm-u-boot.dtsi | 3 + arch/arm/mach-k3/Kconfig | 1 + arch/arm/mach-k3/config.mk | 7 + tools/binman/entries.rst | 15 ++ tools/binman/etype/ti_secure.py | 59 +++++++ tools/binman/ftest.py | 7 + tools/binman/test/225_ti_secure.dts | 14 ++ tools/fdtgrep.c | 4 + 10 files changed, 341 insertions(+) create mode 100644 arch/arm/dts/k3-am642-evm-binman.dtsi create mode 100644 tools/binman/etype/ti_secure.py create mode 100644 tools/binman/test/225_ti_secure.dts -- 2.17.1