From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew F. Davis Date: Mon, 10 Jul 2017 14:48:58 -0500 Subject: [U-Boot] [PATCH v2 0/6] AM43xx OP-TEE support In-Reply-To: <20170710194554.23430-1-afd@ti.com> References: <20170710194554.23430-1-afd@ti.com> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 07/10/2017 02:45 PM, Andrew F. Davis wrote: > Hello all, > > This series brings our firewall and OP-TEE support from DRA7xx/AM57xx > family devices to the AM43xx class devices. We do this by factoring > out code common code from omap5/ into common mach-omap2/ sources. Then > add the hooks for the AM43xx boards. > > Thanks, > Andrew > > Changes from v1: > - Stop format-patch from thinking the first patch is a rename > - Rebase on latest master > Looks like I forgot to add the Reviewed-bys.. All patches except #5 should have: Reviewed-by: Lokesh Vutla Reviewed-by: Tom Rini > Andrew F. Davis (6): > arm: mach-omap2: Move omap5/sec-fxns.c into sec-common.c > arm: mach-omap2: Factor out common FDT fixup suport > arm: mach-omap2: fdt-common: Add OP-TEE node when firmware node is > defined > arm: mach-omap2: am33xx: Add FDT fixup suport for AM33xx/AM43xx boards > board: ti: am43xx: Add TEE loading and firewall setup > board: ti: am43xx: Add FDT fixup for HS devices > > arch/arm/include/asm/omap_common.h | 5 + > arch/arm/include/asm/omap_sec_common.h | 6 + > arch/arm/mach-omap2/Kconfig | 26 ++++ > arch/arm/mach-omap2/Makefile | 2 + > arch/arm/mach-omap2/am33xx/Makefile | 1 + > arch/arm/mach-omap2/am33xx/fdt.c | 43 ++++++ > arch/arm/mach-omap2/fdt-common.c | 168 +++++++++++++++++++++++ > arch/arm/mach-omap2/omap5/Kconfig | 26 ---- > arch/arm/mach-omap2/omap5/Makefile | 1 - > arch/arm/mach-omap2/omap5/fdt.c | 119 ----------------- > arch/arm/mach-omap2/omap5/sec-fxns.c | 234 --------------------------------- > arch/arm/mach-omap2/sec-common.c | 226 ++++++++++++++++++++++++++++++- > board/ti/am43xx/board.c | 16 +++ > configs/am43xx_hs_evm_defconfig | 4 + > 14 files changed, 496 insertions(+), 381 deletions(-) > create mode 100644 arch/arm/mach-omap2/am33xx/fdt.c > create mode 100644 arch/arm/mach-omap2/fdt-common.c > delete mode 100644 arch/arm/mach-omap2/omap5/sec-fxns.c >