aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Leach <mike.leach@linaro.org>2023-01-19 17:03:16 +0000
committerMike Leach <mike.leach@linaro.org>2023-01-19 17:03:16 +0000
commit78ce8ef47c55a489b0ca575b981cd4856d03f44b (patch)
treee33db33fda049b2be506d0349d47e83528d23247
parent3625951cb2992827b4b57ce54dc9b97ce1cf9ede (diff)
opencsd: Update version info and README for 1.4.0v1.4.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 85fa4d4e46bf..450c8e3e53b8 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.3.3_
+_Current Version 1.4.0_
### Current support:
-- ETE (v1.2) instruction trace - packet processing and packet decode.
+- ETE (v1.3) 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.
@@ -286,6 +286,11 @@ Version and Modification Information
and allowing fun with mis-aligned input data.
- __Bugfix__: Fix silent failure if incorrect config flags set when setting up frame demux modes.
+- _Version 1.4.0_:
+ - __Update__: ETE: Add support for Arch v9.4 FEAT_ITE. ETE v1p3, sw trace instrumentation.
+ Adds in new generic output packet type: OCSD_GEN_TRC_ELEM_INSTRUMENTATION.
+ - __Bugfix__: Fix memory leak in mispredict handling (github issue #52 from yabinc)
+
Licence Information
===================
diff --git a/decoder/docs/doxygen_config.dox b/decoder/docs/doxygen_config.dox
index d8e80cd6c49f..7590e47a7561 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.3.3
+PROJECT_NUMBER = 1.4.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 355204c8bfe5..41033f0675ed 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 0x3 /**< Library Minor Version */
-#define OCSD_VER_PATCH 0x3 /**< Library Patch Version */
+#define OCSD_VER_MINOR 0x4 /**< 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.3.3" /**< Library Version string */
+#define OCSD_VER_STRING "1.4.0" /**< Library Version string */
#define OCSD_LIB_NAME "OpenCSD Library" /**< Library name string */
#define OCSD_LIB_SHORT_NAME "OCSD" /**< Library Short name string */
/** @}*/