aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Leach <mike.leach@linaro.org>2023-11-20 21:39:55 +0000
committerMike Leach <mike.leach@linaro.org>2023-12-18 14:59:17 +0000
commit37ace5c3e1a9f87d0541b3d3cbbbf39267258dbc (patch)
tree07335ff74b4b511c2a2376b5148b12629c2de5a1
parentd7089c8e8fa21231eefb1b37a805b46cf661a631 (diff)
opencsd: Update version info and README for 1.4.2v1.4.2
Signed-off-by: Mike Leach <mike.leach@linaro.org>
-rw-r--r--README.md18
-rw-r--r--decoder/docs/doxygen_config.dox2
-rw-r--r--decoder/include/opencsd/ocsd_if_version.h4
3 files changed, 20 insertions, 4 deletions
diff --git a/README.md b/README.md
index ec880be50168..3a184b1c378f 100644
--- a/README.md
+++ b/README.md
@@ -27,7 +27,7 @@ Releases will appear on the master branch in the git repository with an appropri
CoreSight Trace Component Support.
----------------------------------
-_Current Version 1.4.1_
+_Current Version 1.4.2_
### Current support:
@@ -296,6 +296,22 @@ _Version 1.4.1_:
- __Bugfix__: ETM4x: ETE: Fix memory leak / use after free (github issues #53, #58 from yabinc)
- __Bugfix__: C-API: Fix memory leak with output sink object. (github issue #55)
+_Version 1.4.2_:
+ - __Update__: Decoder memory access - add debug features and cacheing to improve performance of decode.
+ Caching controllable by API or environment variables.
+ - __Update__: Decode debug options to control potential runaway debug when incorrect memory images input
+ to decoder.
+ a) aarch64 instruction check for invalid instruction opcode. (any opcode with 0x0000 as top
+ 16 bits).
+ b) optional instruction range maximum run limit. Set by environment variable.
+ - __Update__: Remove VS2015 support.
+ - __Bugfix__: Memory spaces: ensure that decoder memory requests are correctly labelled with Realm and
+ root characteristics when appropriate.
+ - __Bugfix__: M class tail chained interrupts now correctly handled.
+ - __Bugfix__: STM: - fix master and channel ID initialisation (github issue #61 from MommeSherif)
+ - __Bugfix__: Test: update README.md and perf-test-script.base for new paths (github issue #60 from yuxy-c)
+ - __Bugfix__: build: Fix GCC version dir handling for versions of GCC > 9.
+
Licence Information
===================
diff --git a/decoder/docs/doxygen_config.dox b/decoder/docs/doxygen_config.dox
index 06ad0748c3cf..e41c332ea590 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.4.1
+PROJECT_NUMBER = 1.4.2
# 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 cefbe6b1e842..cd182ecc40db 100644
--- a/decoder/include/opencsd/ocsd_if_version.h
+++ b/decoder/include/opencsd/ocsd_if_version.h
@@ -44,7 +44,7 @@
@{*/
#define OCSD_VER_MAJOR 0x1 /**< Library Major Version */
#define OCSD_VER_MINOR 0x4 /**< Library Minor Version */
-#define OCSD_VER_PATCH 0x1 /**< Library Patch Version */
+#define OCSD_VER_PATCH 0x2 /**< 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.4.1" /**< Library Version string */
+#define OCSD_VER_STRING "1.4.2" /**< Library Version string */
#define OCSD_LIB_NAME "OpenCSD Library" /**< Library name string */
#define OCSD_LIB_SHORT_NAME "OCSD" /**< Library Short name string */
/** @}*/