When MTE async mode is enabled TFSR_EL1 contains the accumulative
asynchronous tag check faults for EL1 and EL0.
During the suspend/resume operations the firmware might perform some
operations that could change the state of the register resulting in
a spurious tag check fault report.
Report asynchronous tag faults before suspend and clear the TFSR_EL1
register after resume to prevent this to happen.
Cc: Will Deacon <will@kernel.org>
Cc: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Reviewed-by: Catalin Marinas <catalin.marinas@arm.com>
Reviewed-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Acked-by: Andrey Konovalov <andreyknvl@google.com>
Tested-by: Andrey Konovalov <andreyknvl@google.com>
Signed-off-by: Vincenzo Frascino <vincenzo.frascino@arm.com>
Link: https://lore.kernel.org/r/20210315132019.33202-9-vincenzo.frascino@arm.com
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
 void mte_copy_page_tags(void *kto, const void *kfrom);
 void flush_mte_state(void);
 void mte_thread_switch(struct task_struct *next);
+void mte_suspend_enter(void);
 void mte_suspend_exit(void);
 long set_mte_ctrl(struct task_struct *task, unsigned long arg);
 long get_mte_ctrl(struct task_struct *task);
 static inline void mte_thread_switch(struct task_struct *next)
 {
 }
+static inline void mte_suspend_enter(void)
+{
+}
 static inline void mte_suspend_exit(void)
 {
 }
 
        mte_check_tfsr_el1();
 }
 
+void mte_suspend_enter(void)
+{
+       if (!system_supports_mte())
+               return;
+
+       /*
+        * The barriers are required to guarantee that the indirect writes
+        * to TFSR_EL1 are synchronized before we report the state.
+        */
+       dsb(nsh);
+       isb();
+
+       /* Report SYS_TFSR_EL1 before suspend entry */
+       mte_check_tfsr_el1();
+}
+
 void mte_suspend_exit(void)
 {
        if (!system_supports_mte())
 
        unsigned long flags;
        struct sleep_stack_data state;
 
+       /* Report any MTE async fault before going to suspend */
+       mte_suspend_enter();
+
        /*
         * From this point debug exceptions are disabled to prevent
         * updates to mdscr register (saved and restored along with