]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - processor-sdk/pdk.git/commitdiff
osal: enable tirtos timer support for am64x
authorAravind Batni <aravindbr@ti.com>
Fri, 24 Apr 2020 22:10:26 +0000 (18:10 -0400)
committerSivaraj R <sivaraj@ti.com>
Sat, 25 Apr 2020 15:38:15 +0000 (10:38 -0500)
Signed-off-by: Aravind Batni <aravindbr@ti.com>
packages/ti/osal/src/src_common_tirtos.mk
packages/ti/osal/src/tirtos/TimerP_tirtos.c

index 07b13e41549c4847777fe2a9d2f4d5da6e84ee98..896511a9f38d249cbe714487f5e5e6e12faf89e8 100644 (file)
@@ -4,7 +4,7 @@ INCDIR = . src/tirtos
 
 SRCS_COMMON += Core_utils.c SemaphoreP_tirtos.c HwiP_tirtos.c SwiP_tirtos.c Utils_tirtos.c CacheP_tirtos.c RegisterIntr_tirtos.c EventCombinerP_tirtos.c Queue_tirtos.c EventP_tirtos.c TaskP_tirtos.c
 
-ifeq ($(SOC),$(filter $(SOC), am574x am572x am571x k2g k2l k2e k2h k2k c6678 c6657 am437x am335x omapl137 omapl138 c6747 am65xx j721e j7200))
+ifeq ($(SOC),$(filter $(SOC), am574x am572x am571x k2g k2l k2e k2h k2k c6678 c6657 am437x am335x omapl137 omapl138 c6747 am65xx j721e j7200 am64x))
 SRCS_COMMON += TimerP_tirtos.c
 endif
 
index d58c24592fdbcfd2480aa0a98f752411653b350b..610787e9835e733ec43317767f64f736e4de322f 100644 (file)
@@ -46,7 +46,7 @@
 #include <xdc/runtime/Types.h>
 #include <xdc/runtime/Timestamp.h>
 
-#if defined (SOC_AM437x) || defined (SOC_AM335x) || defined (SOC_AM574x) || defined (SOC_AM572x) || defined(SOC_AM571x) || defined(SOC_AM65XX) || defined(SOC_J721E) || defined(SOC_J7200)
+#if defined (SOC_AM437x) || defined (SOC_AM335x) || defined (SOC_AM574x) || defined (SOC_AM572x) || defined(SOC_AM571x) || defined(SOC_AM65XX) || defined(SOC_J721E) || defined(SOC_J7200) || defined (SOC_AM64X)
 #if defined(TIMER64_SUPPORT)
 #undef   TIMER64_SUPPORT
 #endif