aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HOWTO.md2
-rw-r--r--README.md12
-rw-r--r--decoder/include/ocsd_if_types.h4
3 files changed, 13 insertions, 5 deletions
diff --git a/HOWTO.md b/HOWTO.md
index aee5ef8b8b6e..239a2cd194c3 100644
--- a/HOWTO.md
+++ b/HOWTO.md
@@ -7,7 +7,7 @@ This HOWTO explains how to use the perf cmd line tools and the openCSD
library to collect and extract program flow traces generated by the
CoreSight IP blocks on a Linux system. The examples have been generated using
an aarch64 Juno-r0 platform. All information is considered accurate and tested
-using library version v0.4.1 and the latest perf branch `perf-opencsd-4.8`
+using library version v0.4.2 and the latest perf branch `perf-opencsd-4.8`
on the [OpenCSD github repository][1].
diff --git a/README.md b/README.md
index ec5832b81289..5b2bc9db85d7 100644
--- a/README.md
+++ b/README.md
@@ -19,14 +19,14 @@ From version 0.4, library versioning will use a semantic versioning format
Internal library version calls, documentation and git repository will use this format moving forwards.
Where a patch version is not quoted, or quoted as .x then comments will apply to the entire release.
-Releases will be at M.m.0, with patch version incremented for bugfixes.
+Releases will be at M.m.0, with patch version incremented for bugfixes or documentation updates.
Releases will appear on the master branch in the git repository with an appropriate version tag.
CoreSight Trace Component Support.
----------------------------------
-_Current Version 0.4.1_
+_Current Version 0.4.2_
### Current support:
@@ -99,6 +99,7 @@ Version and Modification Information
- _Version 0.003_: Library development - added in ETMv3 instruction decoder support.
- _Version 0.4_ : Library development - updated decode tree and C-API for generic decoder handling. Switch to semantic versioning.
- _Version 0.4.1_: Minor Update & Bugfixes - fix to PTM decoder, ID checking on test program, adds NULL_TS support in STM packet processor.
+- _Version 0.4.2_: Minor Update - Update to documentation for perf usage in 4.8 kernel branch.
Licence Information
===================
@@ -106,3 +107,10 @@ Licence Information
This library is licensed under the [BSD three clause licence.](http://directory.fsf.org/wiki/License:BSD_3Clause)
A copy of this license is in the `LICENCE` file included with the source code.
+
+Contact
+=======
+
+Using the github site: https://github.com/Linaro/OpenCSD
+
+Mailing list: coresight@lists.linaro.org
diff --git a/decoder/include/ocsd_if_types.h b/decoder/include/ocsd_if_types.h
index 6ad3a32e51e2..0cf65f5ad398 100644
--- a/decoder/include/ocsd_if_types.h
+++ b/decoder/include/ocsd_if_types.h
@@ -59,7 +59,7 @@
@{*/
#define OCSD_VER_MAJOR 0x0 /**< 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,
@@ -68,7 +68,7 @@
*/
#define OCSD_VER_NUM (((uint32_t)OCSD_VER_MAJOR << 16) | ((uint32_t)OCSD_VER_MINOR << 8) | ((uint32_t)OCSD_VER_PATCH))
-#define OCSD_VER_STRING "0.4.1" /**< Library Version string */
+#define OCSD_VER_STRING "0.4.2" /**< Library Version string */
#define OCSD_LIB_NAME "OpenCSD Library" /**< Library name string */
#define OCSD_LIB_SHORT_NAME "OCSD" /**< Library Short name string */
/** @}*/