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
|
|
|
|
2021-01-30 13:58:16 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2021-04-02 11:05:15 +00:00
|
|
|
@@ -20,7 +27,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;
|
|
|
|
+ int ret;
|
|
|
|
+
|
|
|
|
+ ret = !!button_get_by_label(CONFIG_RESET_BUTTON_LABEL, &dev);
|
|
|
|
+
|
2021-04-02 11:05:15 +00:00
|
|
|
+ if (!ret) {
|
|
|
|
+#ifdef CONFIG_RESET_BUTTON_SETTLE_DELAY
|
|
|
|
+ udelay(1000 * CONFIG_RESET_BUTTON_SETTLE_DELAY);
|
|
|
|
+#endif
|
2021-01-30 13:58:16 +00:00
|
|
|
+ ret = !button_get_state(dev);
|
2021-04-02 11:05:15 +00:00
|
|
|
+ }
|
2021-01-30 13:58:16 +00:00
|
|
|
+
|
|
|
|
+ gd->env_valid = ret; //to load environment variable from persistent store
|
|
|
|
env_relocate();
|
|
|
|
return 0;
|
|
|
|
}
|