aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Leach <mike.leach@linaro.org>2021-10-11 15:46:01 +0000
committerMike Leach <mike.leach@linaro.org>2022-03-10 15:02:02 +0000
commitfcc76f3925d98e49e77fdc86d75a7715e420d2b8 (patch)
tree019c734dcbae5089ce0729fbdb1969adc126a18b
parent5b323c2f8059794cf1d0a3db6fbc627854f6e6e9 (diff)
opencsd: Update README and version info for version 1.3.0v1.3.0
Signed-off-by: Mike Leach <mike.leach@linaro.org>
-rw-r--r--README.md9
-rw-r--r--decoder/docs/doxygen_config.dox2
-rw-r--r--decoder/include/opencsd/ocsd_if_version.h6
3 files changed, 11 insertions, 6 deletions
diff --git a/README.md b/README.md
index 8f147d220cb2..daf77a207a58 100644
--- a/README.md
+++ b/README.md
@@ -27,11 +27,11 @@ Releases will appear on the master branch in the git repository with an appropri
CoreSight Trace Component Support.
----------------------------------
-_Current Version 1.2.1_
+_Current Version 1.3.0_
### Current support:
-- ETE (v1.1) instruction trace - packet processing and packet decode.
+- ETE (v1.2) instruction trace - packet processing and packet decode.
- ETMv4 (v4.6 [A/R profile] v4.4 [M profile]) instruction trace - packet processing and packet decode.
- PTM (v1.1) instruction trace - packet processing and packet decode.
- ETMv3 (v3.5) instruction trace - packet processing and packet decode.
@@ -264,6 +264,11 @@ Version and Modification Information
memory decode access via the client callbacks.
Fixed to flush context elements immediately they are committed.
+- _Version 1.3.0_:
+ - __Admin__: Dev versions now have patch versions at least +100 from root public version
+ - __Update__: Add support for conditional branch (BC.cond) introduced for v8.8 / v9.3 architecture.
+ - __Update__: ETE: Add support for NSE bit - security state bit defining Root / Realm states in FEAT_RME.
+
Licence Information
===================
diff --git a/decoder/docs/doxygen_config.dox b/decoder/docs/doxygen_config.dox
index 6d2f02c05fb9..a1e780cec08a 100644
--- a/decoder/docs/doxygen_config.dox
+++ b/decoder/docs/doxygen_config.dox
@@ -38,7 +38,7 @@ PROJECT_NAME = "OpenCSD - CoreSight Trace Decode Library"
# could be handy for archiving the generated documentation or if some version
# control system is used.
-PROJECT_NUMBER = 1.2.0
+PROJECT_NUMBER = 1.3.0
# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
diff --git a/decoder/include/opencsd/ocsd_if_version.h b/decoder/include/opencsd/ocsd_if_version.h
index 4a5ee7cc72dd..3706ce91a70d 100644
--- a/decoder/include/opencsd/ocsd_if_version.h
+++ b/decoder/include/opencsd/ocsd_if_version.h
@@ -43,8 +43,8 @@
/** @name Library Versioning
@{*/
#define OCSD_VER_MAJOR 0x1 /**< Library Major Version */
-#define OCSD_VER_MINOR 0x2 /**< Library Minor Version */
-#define OCSD_VER_PATCH 0x1 /**< Library Patch Version */
+#define OCSD_VER_MINOR 0x3 /**< Library Minor Version */
+#define OCSD_VER_PATCH 0x0 /**< Library Patch Version */
/** Library version number - MMMMnnpp format.
MMMM = major version,
@@ -53,7 +53,7 @@
*/
#define OCSD_VER_NUM ((OCSD_VER_MAJOR << 16) | (OCSD_VER_MINOR << 8) | OCSD_VER_PATCH)
-#define OCSD_VER_STRING "1.2.1" /**< Library Version string */
+#define OCSD_VER_STRING "1.3.0" /**< Library Version string */
#define OCSD_LIB_NAME "OpenCSD Library" /**< Library name string */
#define OCSD_LIB_SHORT_NAME "OCSD" /**< Library Short name string */
/** @}*/