2021-01-30 13:58:16 +00:00
|
|
|
--- a/board/mediatek/mt7622/mt7622_rfb.c
|
|
|
|
+++ b/board/mediatek/mt7622/mt7622_rfb.c
|
2021-04-02 11:05:15 +00:00
|
|
|
@@ -6,9 +6,16 @@
|
2021-01-30 13:58:16 +00:00
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <config.h>
|
|
|
|
+#include <dm.h>
|
|
|
|
+#include <button.h>
|
|
|
|
#include <env.h>
|
|
|
|
#include <init.h>
|
2021-02-20 13:04:38 +00:00
|
|
|
#include <asm/global_data.h>
|
2021-04-02 11:05:15 +00:00
|
|
|
+#include <linux/delay.h>
|
|
|
|
+
|
2021-01-30 13:58:16 +00:00
|
|
|
+#ifndef CONFIG_RESET_BUTTON_LABEL
|
|
|
|
+#define CONFIG_RESET_BUTTON_LABEL "reset"
|
|
|
|
+#endif
|
2021-04-02 11:05:15 +00:00
|
|
|
|
2022-08-07 10:06:56 +00:00
|
|
|
#include <mtd.h>
|
|
|
|
#include <linux/mtd/mtd.h>
|
|
|
|
@@ -25,7 +32,19 @@ int board_init(void)
|
2021-01-30 13:58:16 +00:00
|
|
|
|
|
|
|
int board_late_init(void)
|
|
|
|
{
|
|
|
|
- gd->env_valid = 1; //to load environment variable from persistent store
|
|
|
|
+ struct udevice *dev;
|
|
|
|
+
|
2021-04-29 01:06:09 +00:00
|
|
|
+ if (!button_get_by_label(CONFIG_RESET_BUTTON_LABEL, &dev)) {
|
|
|
|
+ puts("reset button found\n");
|
2021-04-02 11:05:15 +00:00
|
|
|
+#ifdef CONFIG_RESET_BUTTON_SETTLE_DELAY
|
2021-04-29 01:06:09 +00:00
|
|
|
+ mdelay(CONFIG_RESET_BUTTON_SETTLE_DELAY);
|
2021-04-02 11:05:15 +00:00
|
|
|
+#endif
|
2021-04-29 01:06:09 +00:00
|
|
|
+ if (button_get_state(dev) == BUTTON_ON) {
|
|
|
|
+ puts("button pushed, resetting environment\n");
|
|
|
|
+ gd->env_valid = ENV_INVALID;
|
|
|
|
+ }
|
2021-04-02 11:05:15 +00:00
|
|
|
+ }
|
2021-01-30 13:58:16 +00:00
|
|
|
+
|
|
|
|
env_relocate();
|
|
|
|
return 0;
|
|
|
|
}
|
2022-01-11 21:26:43 +00:00
|
|
|
--- a/arch/arm/mach-mediatek/Kconfig
|
|
|
|
+++ b/arch/arm/mach-mediatek/Kconfig
|
2022-08-07 10:06:56 +00:00
|
|
|
@@ -138,4 +138,8 @@ config MTK_BROM_HEADER_INFO
|
|
|
|
|
|
|
|
source "board/mediatek/mt7629/Kconfig"
|
2021-07-12 15:52:21 +00:00
|
|
|
|
|
|
|
+config RESET_BUTTON_LABEL
|
|
|
|
+ string "Button to trigger factory reset"
|
|
|
|
+ default "reset"
|
|
|
|
+
|
|
|
|
endif
|