#ifdef CONFIG_KASAN_HW_TAGS
 #define arch_enable_tagging_sync()             mte_enable_kernel_sync()
 #define arch_enable_tagging_async()            mte_enable_kernel_async()
+#define arch_enable_tagging_asymm()            mte_enable_kernel_asymm()
 #define arch_force_async_tag_fault()           mte_check_tfsr_exit()
 #define arch_get_random_tag()                  mte_get_random_tag()
 #define arch_get_mem_tag(addr)                 mte_get_mem_tag(addr)
 
 
 #ifdef CONFIG_KASAN_HW_TAGS
 /* Whether the MTE asynchronous mode is enabled. */
-DECLARE_STATIC_KEY_FALSE(mte_async_mode);
+DECLARE_STATIC_KEY_FALSE(mte_async_or_asymm_mode);
 
-static inline bool system_uses_mte_async_mode(void)
+static inline bool system_uses_mte_async_or_asymm_mode(void)
 {
-       return static_branch_unlikely(&mte_async_mode);
+       return static_branch_unlikely(&mte_async_or_asymm_mode);
 }
 
 void mte_check_tfsr_el1(void);
        mte_check_tfsr_el1();
 }
 #else
-static inline bool system_uses_mte_async_mode(void)
+static inline bool system_uses_mte_async_or_asymm_mode(void)
 {
        return false;
 }
 
 static DEFINE_PER_CPU_READ_MOSTLY(u64, mte_tcf_preferred);
 
 #ifdef CONFIG_KASAN_HW_TAGS
-/* Whether the MTE asynchronous mode is enabled. */
-DEFINE_STATIC_KEY_FALSE(mte_async_mode);
-EXPORT_SYMBOL_GPL(mte_async_mode);
+/*
+ * The asynchronous and asymmetric MTE modes have the same behavior for
+ * store operations. This flag is set when either of these modes is enabled.
+ */
+DEFINE_STATIC_KEY_FALSE(mte_async_or_asymm_mode);
+EXPORT_SYMBOL_GPL(mte_async_or_asymm_mode);
 #endif
 
 static void mte_sync_page_tags(struct page *page, pte_t old_pte,
         * Make sure we enter this function when no PE has set
         * async mode previously.
         */
-       WARN_ONCE(system_uses_mte_async_mode(),
+       WARN_ONCE(system_uses_mte_async_or_asymm_mode(),
                        "MTE async mode enabled system wide!");
 
        __mte_enable_kernel("synchronous", SCTLR_ELx_TCF_SYNC);
         * mode in between sync and async, this strategy needs
         * to be reviewed.
         */
-       if (!system_uses_mte_async_mode())
-               static_branch_enable(&mte_async_mode);
+       if (!system_uses_mte_async_or_asymm_mode())
+               static_branch_enable(&mte_async_or_asymm_mode);
+}
+
+void mte_enable_kernel_asymm(void)
+{
+       if (cpus_have_cap(ARM64_MTE_ASYMM)) {
+               __mte_enable_kernel("asymmetric", SCTLR_ELx_TCF_ASYMM);
+
+               /*
+                * MTE asymm mode behaves as async mode for store
+                * operations. The mode is set system wide by the
+                * first PE that executes this function.
+                *
+                * Note: If in future KASAN acquires a runtime switching
+                * mode in between sync and async, this strategy needs
+                * to be reviewed.
+                */
+               if (!system_uses_mte_async_or_asymm_mode())
+                       static_branch_enable(&mte_async_or_asymm_mode);
+       } else {
+               /*
+                * If the CPU does not support MTE asymmetric mode the
+                * kernel falls back on synchronous mode which is the
+                * default for kasan=on.
+                */
+               mte_enable_kernel_sync();
+       }
 }
 #endif