new file mode 100644
@@ -0,0 +1,21 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+/*
+ * Copyright (C) [2022-2025] Renesas Electronics Corporation and/or its affiliates.
+ */
+
+#ifndef RA6W_RECOVERY_H
+#define RA6W_RECOVERY_H
+
+struct ra6w_recovery {
+ struct workqueue_struct *wq;
+ struct work_struct work;
+ bool in_recovery;
+};
+
+int ra6w_recovery_init(struct ra6w_recovery *recovery);
+void ra6w_recovery_deinit(struct ra6w_recovery *recovery);
+void ra6w_recovery_event_post(struct ra6w_recovery *recovery);
+void ra6w_recovery_reprobe_set(bool set);
+bool ra6w_recovery_reprobe_get(void);
+
+#endif /* RA6W_RECOVERY_H */