]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - processor-sdk/pdk.git/commitdiff
PDK-6556 : When built for mcu11, adding a dummy app for mcu10
authorsujith <sujith.s@ti.com>
Thu, 28 May 2020 11:30:03 +0000 (17:00 +0530)
committerSivaraj R <sivaraj@ti.com>
Thu, 28 May 2020 11:47:19 +0000 (06:47 -0500)
This is required to ensure mcu11 is not in a higher
power states w.r.t to mcu10 when running in split mode

This same approach is used for mcu21, mcu31, etc...

Signed-off-by: sujith <sujith.s@ti.com>
packages/ti/build/makerules/common.mk

index 87cabc07c36efe1d0f5168ffb2eeb652e0ec7925..9a67c5d9407ca95a3ddd02f0d598ed4e29a66dc5 100644 (file)
@@ -485,9 +485,12 @@ SBL_APPIMAGE_PATH_SIGNED_HS=$(BINDIR)/$(SBL_IMAGE_NAME)_hs.appimage.signed
 SBL_APPIMAGE_PATH_SIGNED_BE=$(BINDIR)/$(SBL_IMAGE_NAME)_BE.appimage.signed
 
 #MCUx_1 cores requires a dummy application to run from MCUx_0 core
-#Not applicable for MCU1_1 as MCU1_0 is already running SBL
+#as MCUx_1 cores cannot be at a higher power state than MCUx_0 core
 MULTI_CORE_APP_PARAMS=
 ifeq ($(SOC),$(filter $(SOC), j721e j7200 am64x))
+  ifeq ($(CORE),$(filter $(CORE), mcu1_1))
+  MULTI_CORE_APP_PARAMS += $(SBL_CORE_ID_mcu1_0) $(PDK_INSTALL_PATH)/ti/build/$(SOC)/sbl_mcux_0_dummy_app.rprc
+  endif
   ifeq ($(CORE),$(filter $(CORE), mcu2_1))
   MULTI_CORE_APP_PARAMS += $(SBL_CORE_ID_mcu2_0) $(PDK_INSTALL_PATH)/ti/build/$(SOC)/sbl_mcux_0_dummy_app.rprc
   endif