refactor(build): rename build option RMM_CCA_DA to RMM_V1_1

The build option RMM_CCA_DA was introduced to enable Device Assignment
feature. While updating RMI, RSI commands aligning with RMM v1.1
specification we had to add data types and commands related to other
v1.1 features. So the RMM_CCA_DA build option is renamed to RMM_V1_1.

RMM v1.1 features like Device Assignment, Planes and MEC related
feature development can use this build option to enable or disable the
support for a feature.

Signed-off-by: Arunachalam Ganapathy <arunachalam.ganapathy@arm.com>
Change-Id: Iccdd5624b25405c2af25ad924757d0940b239dcf
diff --git a/cmake/CommonConfigs.cmake b/cmake/CommonConfigs.cmake
index 569f8d3..d34f2b9 100644
--- a/cmake/CommonConfigs.cmake
+++ b/cmake/CommonConfigs.cmake
@@ -60,8 +60,8 @@
     DEFAULT 1)
 
 arm_config_option(
-    NAME RMM_CCA_DA
-    HELP "Enable Device Assignment support in RMM (experimental)"
+    NAME RMM_V1_1
+    HELP "Enable v1.1 features in RMM (experimental)"
     TYPE BOOL
     DEFAULT OFF)
 
@@ -139,10 +139,10 @@
 target_compile_definitions(rmm-common
     INTERFACE "COMMIT_INFO=\"${COMMIT_INFO}\"")
 
-if(RMM_CCA_DA)
-    message(WARNING "DA is an experimental feature")
+if(RMM_V1_1)
+    message(WARNING "RMM v1.1 features are experimental")
     target_compile_definitions(rmm-common
-        INTERFACE "RMM_CCA_DA=1")
+        INTERFACE "RMM_V1_1=1")
 endif()
 
 link_libraries(rmm-common)