Cleanup: Timing adapter definitions

The NPU timing adapter base addresses had been defined in mutiple
places, making it difficult to determine which one is actually being
used. This patch cleans up unused definitions from memory-map header
files for different targets and the CMake template files.

The expectation is for component base addresses to be set by platform
specific CMake files that include/wrap the component directories.

Change-Id: Ic39794ffbdb872b4b0c900cbcec8e386bb32c4eb
Signed-off-by: Kshitij Sisodia <kshitij.sisodia@arm.com>
diff --git a/source/hal/source/components/npu_ta/ethosu_ta_init.c b/source/hal/source/components/npu_ta/ethosu_ta_init.c
index 66fa9e7..1ef4ff5 100644
--- a/source/hal/source/components/npu_ta/ethosu_ta_init.c
+++ b/source/hal/source/components/npu_ta/ethosu_ta_init.c
@@ -48,7 +48,7 @@
     }
 
     ta_set_all(&ta_0, &ta_0_settings);
-    info("TA0 values set\n");
+    info("Configured TA0@0x%" PRIx32 "\n", TA0_BASE);
 #endif /* defined (TA0_BASE) */
 
 #if defined(TA1_BASE)
@@ -76,7 +76,7 @@
     }
 
     ta_set_all(&ta_1, &ta_1_settings);
-    info("TA1 values set\n");
+    info("Configured TA1@0x%" PRIx32 "\n", TA1_BASE);
 #endif /* defined (TA1_BASE) */
 
     return 0;