From 42c70c08a8f3d143cec40d20730fbdbb45d29677 Mon Sep 17 00:00:00 2001 From: Manish V Badarkhe Date: Fri, 11 Nov 2022 09:36:29 +0000 Subject: [PATCH] build: deprecate Arm TC0 FVP platform Arm has decided to deprecate the TC0 platform. The development of software and fast models for TC0 platform has been discontinued. TC0 platform has been superseded by the TC1 and TC2 platforms, which are already supported in TF-A and CI repositories. Change-Id: I0269816a6ee733f732669027eae4e14cd60b6084 Signed-off-by: Manish V Badarkhe --- docs/plat/index.rst | 2 ++ plat/arm/board/tc/platform.mk | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/docs/plat/index.rst b/docs/plat/index.rst index f1b97f86a..3eac6f7a5 100644 --- a/docs/plat/index.rst +++ b/docs/plat/index.rst @@ -75,6 +75,8 @@ Deprecated platforms +----------------+----------------+--------------------+--------------------+ | rdn1edge | Arm | 2.8 | 3.0 | +----------------+----------------+--------------------+--------------------+ +| tc0 | Arm | 2.8 | 3.0 | ++----------------+----------------+--------------------+--------------------+ -------------- diff --git a/plat/arm/board/tc/platform.mk b/plat/arm/board/tc/platform.mk index 49554791f..37ba2295c 100644 --- a/plat/arm/board/tc/platform.mk +++ b/plat/arm/board/tc/platform.mk @@ -5,6 +5,11 @@ include common/fdt_wrappers.mk +ifeq ($(TARGET_PLATFORM), 0) +$(warning Platform ${PLAT}$(TARGET_PLATFORM) is deprecated. \ +Some of the features might not work as expected) +endif + ifeq ($(shell expr $(TARGET_PLATFORM) \<= 2), 0) $(error TARGET_PLATFORM must be less than or equal to 2) endif