diff --git a/QDMA/linux-kernel/RELEASE b/QDMA/linux-kernel/RELEASE
index 85b1b242b11af43e167b77725733d372a2d5a674..8733947c26f7063640def7eef5a704a6b9b1aa2f 100755
--- a/QDMA/linux-kernel/RELEASE
+++ b/QDMA/linux-kernel/RELEASE
@@ -1,4 +1,4 @@
-RELEASE: 2023.2.0
+RELEASE: 2023.2.1
 =================
 
 This release is validated
@@ -149,6 +149,9 @@ CPM5
 ----------------
 - Added driver support for CPM4 design.
 
+2023.2.1 Updates
+----------------
+- Added driver support to enable 10 bit tag for CPM5 design.
 
 KNOWN ISSUES:
 =============
diff --git a/QDMA/linux-kernel/docs/dma-ctl.8.gz b/QDMA/linux-kernel/docs/dma-ctl.8.gz
index 726d0d7f20e7f65d272d2041d24f8f122ab31776..afbdec93ccc2ecc2688830be6dd5b0a5b9bf2f60 100755
Binary files a/QDMA/linux-kernel/docs/dma-ctl.8.gz and b/QDMA/linux-kernel/docs/dma-ctl.8.gz differ
diff --git a/QDMA/linux-kernel/driver/Makefile b/QDMA/linux-kernel/driver/Makefile
index 49f3189b97d19440ff56bbd9f3f4b7afc2668c3c..7d1377a5e2ce690837a9eefe073e89074b0d1227 100755
--- a/QDMA/linux-kernel/driver/Makefile
+++ b/QDMA/linux-kernel/driver/Makefile
@@ -125,6 +125,11 @@ ifeq ($(EQDMA_CPM5_VF_GT_256Q_SUPPORTED),1)
   export EXTRA_FLAGS
 endif
 
+ifeq ($(EQDMA_CPM5_10BIT_TAG_ENABLE),1)
+  EXTRA_FLAGS += -DEQDMA_CPM5_10BIT_TAG_ENABLE
+  export EXTRA_FLAGS
+endif
+
 # Don't allow ARCH to overwrite the modified variable when passed to
 # the sub-makes.
 MAKEOVERRIDES := $(filter-out ARCH=%,$(MAKEOVERRIDES))
diff --git a/QDMA/linux-kernel/driver/libqdma/qdma_access/qdma_access_version.h b/QDMA/linux-kernel/driver/libqdma/qdma_access/qdma_access_version.h
index 5bc29ab91577bba8d403bfa52691d1229c78f295..f65591813cd0e0e44885a19923221eb082632cb7 100755
--- a/QDMA/linux-kernel/driver/libqdma/qdma_access/qdma_access_version.h
+++ b/QDMA/linux-kernel/driver/libqdma/qdma_access/qdma_access_version.h
@@ -21,7 +21,7 @@
 
 #define QDMA_VERSION_MAJOR	2023
 #define QDMA_VERSION_MINOR	2
-#define QDMA_VERSION_PATCH	0
+#define QDMA_VERSION_PATCH	1
 
 #define QDMA_VERSION_STR	\
 	__stringify(QDMA_VERSION_MAJOR) "." \